From 4d535028ed52dff811f56c7212db3adc2ca99e25 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 8 Sep 2026 00:57:55 -0400 Subject: [PATCH] b4 static findings: 22 formula corrections, 3 verified signatures, contract -> 324 entries --- campaign/board.md | 2 +- findings/subsystems/formula-gaps.md | 135 +++ .../subsystems/strategic-turn-internals.md | 28 + ghidra/addresses.json | 938 +++++++++++++++++- verify/results/compare/b2-techfx-compare.json | 74 ++ verify/results/compare/b2-techfx-golden.json | 85 ++ verify/traces/b2-techfx-compare.jsonl | 4 + verify/traces/b2-techfx-golden.jsonl | 21 + 8 files changed, 1269 insertions(+), 18 deletions(-) create mode 100644 verify/results/compare/b2-techfx-compare.json create mode 100644 verify/results/compare/b2-techfx-golden.json create mode 100644 verify/traces/b2-techfx-compare.jsonl create mode 100644 verify/traces/b2-techfx-golden.jsonl diff --git a/campaign/board.md b/campaign/board.md index ced1fab..da89657 100644 --- a/campaign/board.md +++ b/campaign/board.md @@ -63,5 +63,5 @@ Status flow: `backlog → in-progress → mapped → verified` (or `blocked`). | 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 | | 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 | in-progress | — | 0% | 2026-09-08 | offline lane + Ghidra: verify ServerSystem::ProcessTurn / MoveFleet signatures (unverified), then hook vs game/sim colony+movement; RNG-snapshot design (colony consumes RNG for plague/rebellion) | +| P2-B4 colony + movement (behavioral) | phase2 | code-complete | high | 80% | 2026-09-08 | offline+Ghidra done: all 3 prototypes VERIFIED from the instruction stream (ProcessTurn takes NO args - the decompile's 2nd param is a Ghidra fiction) and written back to the project; 22 formula corrections (growth curve has no pop/cap term; range grace is +0.05 not -0.05; jump SCATTERS not stops; ntdev not rbtn; ties-to-even rounding; stutter overlap is not a midpoint); ONLY ProcessRebellion draws RNG in a colony turn, so the generator region has teeth. 3 hooks + 2 host-tested adapters staged in /srv/re-lab/shim/dist-b4 (b4-646e4e8-dirty-20260908T0447Z), ctest 30/30. REMAINING: VM140 window - scout/trace/compare per docs/B4.md. No replace mode (input boundary) | | harness gap: undeclared side-effect lists | verify | backlog | — | 0% | 2026-09-08 | B3's replace-oracle failed on one unposted event while compare passed, because the player's EVENT list was never a declared region. Every hook that can post events or append to a list must declare that list, else compare gives false confidence. Audit B1/B2/M2 descriptors for the same blind spot | diff --git a/findings/subsystems/formula-gaps.md b/findings/subsystems/formula-gaps.md index 8bc5d74..0485c0b 100644 --- a/findings/subsystems/formula-gaps.md +++ b/findings/subsystems/formula-gaps.md @@ -195,3 +195,138 @@ From the `ProcessResearch` trace/compare/replace runs (engine repo `docs/B3.md`; `EvNxID`. A replace-mode run that sets only the flag differs from the oracle by exactly this one event and nothing else in 40,300 save items. * Tech-tree size in this game: **293 nodes** per player tree. + +--- + +## B4 (2026-09-08) — colony turn + fleet movement re-read instruction by instruction + +Prompted by the old-vs-new milestone for `ServerSystem::ProcessTurn` and +`MoveFleet`/`ProcessFleetMovement` (engine repo `docs/B4.md`). Evidence: own `objdump -d` pass +over `Sword of the Stars.exe`. Every entry below is now in `ghidra/addresses.json` (status +`verified`, 113 new entries) and the three target prototypes plus six helpers were written back +into the Ghidra project. + +### Prototypes (all three were `unverified`; all three are now pinned) + +* **`ServerSystem::ProcessTurn` 0x007598e0 takes NO arguments.** Plain `ret`, nothing reads + `[ebp+8]`. `turn-decompiles/*/007598e0.c` shows a second parameter `void* stream`; that is a + Ghidra guess and it is wrong. Hooking it as a one-argument function corrupts the stack. +* **`MoveFleet` 0x007d9ee0 is `bool __thiscall (StrategyServer*, StarFleet*, float dt)`, + `ret 8`.** `dt` is a 4-byte float (`fld DWORD`), pushed at every call site with + `push ecx; fstp DWORD PTR [esp]`. Returns AL, and the caller tests it. +* **`ProcessFleetMovement` 0x007da9a0 is `void __thiscall (StrategyServer*)`**, plain `ret`. + +### Movement — where §4 was wrong + +* **Q7 revisited.** `BuildStutterSegments` does **not** merge overlaps at the midpoint. When + `seg[i].end > seg[i+1].start` it sets *both* boundaries to + `float32(end_i + 0.5 x (end_i − start_{i+1}))` — the mirror of the midpoint about `end_i`, + pushed forward past both chords. Nothing is dropped and nothing is clipped back, so a chord + swallowed by its predecessor comes out inverted (`start > end`). The chord parameters are also + clamped to `[0, length]` before the drop test (the note omitted this; without it the + ray/sphere routine's `±FLT_MAX` sentinels poison the list), the drop threshold is + `fabs(start−end) <= 0.01f` (float32, inclusive), and the sort is a real `std::sort` on `start` + alone. There is genuinely no clamp on `dist/RADIUS`, as the note said — but after the merge + `dist <= RADIUS` is no longer guaranteed, so the ramp can exceed MAX. +* **`STUTTER_MIN_SPEED == STUTTER_MAX_SPEED == 0.33` in the shipped data** (radius 2), so the + ramp collapses to a constant 0.33x inside any sphere and 1.0x outside. The image bytes for all + three constants are zero (they live past `.data`'s file image), so a run that skips the config + load divides by zero. +* **`range = MinRange(fleet) + 0.05f`, not `− 0.05`.** 0x00a1d2c0 is `0x3d4ccccd` (sign bit + clear) and `MinRange` *adds* its argument. The out-of-range case zeroes the **range**, not the + step — `step` remains the divisor of the pass fraction. `move = min(min(range, step), distance)` + with **no floor at 0**. `MinRange` seeds with `FLT_MAX` (an empty fleet is unconstrained) and + skips no ship, so a range-exempt tanker still clamps the fleet. +* **The probabilistic jump (type 5) scatters, it does not stop part-way.** `v = float32(roll x + CstE)`; it arrives iff `!(v > CstT)` (equality arrives); on a miss the fleet is placed at + `dest + randomUnitVector x v`, which costs a **second** raw draw. 1 word on success, 2 on a + miss. `CstE` is `player+0x154`, `CstT` `player+0x158`. No fuel and no clamp on this path, and + the pass fraction is 1.0 either way. +* **`IsNodeWaypoint` (0x0056e720) is true for type 3 only**; the node-*line* case of the switch + is type 2. `IsGateTransitWaypoint` (0x0056e6e0) is true for 4 and 5. Only a type-3 waypoint + reports a partial pass fraction (`clamp01(distance/step)`); a blocked move reports + `clamp01(move/step)`; everything else reports 1.0. +* **The recursion threshold at 0x00a261f0 is an 8-byte double whose value is exactly + `(double)0.9999f`** = 0.9998999834060669, and the test is strict, so `fraction == threshold` + does not recurse. `dt' = float32((1 − fraction) x dt)`. +* **§4.2's bucketing is wrong.** The schedule is a **pursuit model**: classify every fleet whose + current waypoint targets another *fleet* by the owner-to-owner relation (0 = pursuer, else + follower); prey move 0.5, pursuers move 0.5 and a pursuer that arrives retires itself and its + prey, surviving prey take a second 0.5, everything unscheduled takes 1.0 (an uncaught pursuer + takes another 0.5), followers take 1.0. One of the six local containers is never inserted into + and its two guards are vacuous — it can be deleted from any reimplementation. +* **`FPogn2` at `fleet+0xec` is really `FPdpos`** (FlightPlan+0x28); `FPogn2` is at `+0xe0`. + The pass writes the current waypoint target's position there, with no waypoint-type and no + entity-kind check, and clears flag `0x2` on every fleet in the same loop. Flag `0x100` is + cleared for every fleet in a final loop. +* **Gate traffic** sums a **signed int16** at `fleet+0xc0` over fleets whose *front* waypoint is + a gate transit, into a fixed 32-int accumulator indexed by `player+0x28`, then **assigns** it + to `player+0x14c` indexed by the player's *position* in the server's vector — the two agree + only while `players[j]->index == j`. `ProcessFleetMovement` makes no RNG draw of its own. + +### Colony — where §3 was wrong + +* **The population growth curve has no `pop/cap` term.** §3.2's + `g = clamp01((1 − clamp01(pop/cap))^EXP)` is wrong: the capacity never enters the chain + (0x00748100 → 0x00537140 → 0x00536fb0). The base is a suitability term, + `1 − clamp01(min(|ideal − clamp(suit, 0, 20)|, SuitTol) / SuitTol)`, the exponent is clamped + into `[0.01f, 1000]` before a real `__CIpow`, and every modifier after it is gated on a strict + `> 0` and stored back to float32. `delta = trunc(pop x g)`, forced to 1 only when that + truncates to 0 with `g > 0`. A zero `SuitTol` makes the quotient 0/0 and the NaN wipes the + colony — a real hazard. +* **The 50,000,000 cap and the 100 floor live in the apply (0x0074b230), not in the growth.** + The over-cap shrink runs only when the colony was *already* over the cap and is computed from + the **old** population; a colony that merely grows past the cap lands exactly on it. +* **`AccrueSystemBonus`'s second gate is `ntdev` (+0x2c4), not `rbtn`** — §3.2 said `rbtn`; Q4 + said `ntdev` and Q4 was right. Both bonus-apply helpers (0x00746780, 0x0074b510) **reset + `ntdev` to 0** on a colony that is not the owner's home system (`player+0x2c`), which is a real + feedback loop: a colony still absorbing a bonus never reaches the gate. `ApplyInfraBonus` snaps + `Infra` to **exactly 1.0f** when the pool covers the remainder; `ApplyPopBonus` drops the whole + pool on an unowned system; `pbon` (+0x194) is an **int32**. +* **The unowned infra decay constant at 0x009e9170 is `(double)0.02f`** = 0.019999999552965164, + not the decimal, and the floor is `Infra <= 0 → 0` (inclusive; NaN also collapses to 0). +* **§3.1's `0x007514f0` row is wrong.** The globals are not `DAT_00aeca78`/`7c`; the only global + read is **0x00aeca80, a hard-coded `float 0.05f`** with no GlobalConst key. The helper takes + four arguments — `(0, 1, indi->indsp, 0.05f)` then `(1, 0, indi->indsp, 0.05f)`. +* **§3.1's addiction row is misleading.** Player flag bit 5 (temperance) does not skip the block: + it takes the other branch and still raises morale event `0x1b` (−1). Bit 5 *clear* runs the + phase path: `0x1c` (+1) at onset, **nothing at all** in phase 2, `0x1d` (−2) at terminal. Both + phase comparisons are strict `>`. `0x00752a10` is the MoraleEvent **constructor**; the apply is + **0x00839d60**, and the delta travels in `ev->deltas[species]` (int[7] at ev+0x18), not as an + argument. +* **§3.1's call table omits `TRes = 0` (+0x74) and the `haltv[0..2] = false` clear (+0x78).** +* **RNG, and this is the load-bearing one for any oracle:** `ProcessTurn` itself, `ProcessPlague`, + `GrowCivilianPops` and `ProcessSlaves` are **all draw-free** (swept to call depth one). + **`ProcessRebellion` is the sole consumer in a colony turn**, and its count is data-dependent: + one `RandChance` per iteration of a 64-bit rebel counter (0x0074fbe0), a short-circuiting + per-species roll loop (0x00753c60), and one outcome roll (0x00756350), plus one 0.2f + continuation roll. `RNG::Chance` (0x008e6dd0) makes **no** draw for `p <= 0` or `p >= 1`. + The generator is reached as `*(RNG**)((char*)sys->owner + 0x168)` — Ghidra's + "StrategyServer+0x16c" is relative to the −4-adjusted base. +* **`ServerSystem::MaxPop` 0x0074ab20 is `(ServerPlayer* p, int flag)`, not `(species, group)`.** + Species comes from `p->Species` and the group type is hard-coded 0, which makes the + cross-species and INDSYS branches dead in that specialisation. The result is clamped to + `[0, INT32_MAX]`. **Every capacity is rounded down to a multiple of 10** by the shared helper + 0x00535eb0, and `Size x 1e8` is an exact 64-bit *integer* product (the 1e8 is the immediate + 0x05f5e100). The arcology bonus is 0 for slaves. +* **`ComputeOutputFromRates` corrections.** `NormaliseOutputRates` (0x00747390) is `__cdecl` with + a third *pinned channel* argument that every call site leaves null, selecting trade: only trade + is clamped to `[0,1]`, the other three are summed in float32 (trade excluded) and rescaled to + `1 − trade`, and the all-zero fallback is an equal split over **three** channels. The engine's + "round" (0x008e5660) is `fistp`/`fild` — **ties to even** — while `out[0]`, `out[3]` and the + construction points use the truncating `_ftol2`. `out[1]` is `min(out[2], stripMineDemand)`, + not a shortfall; `out[9]` is the amount **spent** on repairs. **Unspent terraforming points + cascade into the money channel** (an edge the notes missed entirely). The terraforming modifier + is inside the *point count* (0x00746890), the sign is `-1` only for `suit > ideal` strictly, and + the infra chain is `spend/500 x 0.01 x 1.65` in three 80-bit steps — not one `x3.3e-5`. + **The function repairs damaged ships in orbit** (0x00751590 with its estimate flag clear), so it + is not side-effect free and cannot be compared on a scratch system. +* **`BuildQueue::ProcessTurn` 0x00890d50** takes `points` by value and **returns the leftover**. + A money refusal **skips** that order and continues rather than stopping the pass; removal is a + separate sweep afterwards that unlinks every order with `conleft <= 0`. +* **Slaves.** The term order is `((|Δsuit| x BYHAZARD + DEATH_RATE) + SRs x BYOUTPUT) x mod`, every + step narrowed to float32; an unowned system returns **1.0**, not 0; the worst plague at the + system contributes an **additive** rate term; and `SLAVES_MIN/MAX_DEATHS` are each disabled by + **any** negative value, with the result clamped into `[0, adjustedSlaveCount]`. +* **`HazardMod`'s 0.1 (0x00a1a438) is a true double**, not `(double)0.1f`, and a zero band at the + ideal returns NaN (which the capacity's `max(v,0)` then turns into 0). diff --git a/findings/subsystems/strategic-turn-internals.md b/findings/subsystems/strategic-turn-internals.md index 7e851e2..037e401 100644 --- a/findings/subsystems/strategic-turn-internals.md +++ b/findings/subsystems/strategic-turn-internals.md @@ -283,6 +283,20 @@ tree roll from 0x005822d0). MEDIUM: cost-multiplier trio identity, accident odds ## 3. Colonies (`Game::ServerSystem::ProcessTurn` 0x007598e0) +> **B4 CORRECTIONS (2026-09-08).** This section was re-read instruction by instruction for the +> old-vs-new milestone; the full list is in `formula-gaps.md` ("B4"). The load-bearing ones: +> `ProcessTurn` takes **no arguments** (the decompile's `void* stream` is a Ghidra guess); the +> growth curve in §3.2 has **no `pop/cap` term** (the base is a suitability ratio); the second +> `SYSTEMBONUS_MINTURNS` gate is **`ntdev`, not `rbtn`**, and both bonus-apply helpers reset +> `ntdev` on a non-home colony; the `0x007514f0` row's globals are wrong (it reads a hard-coded +> `float 0.05f` at 0x00aeca80 and takes four arguments); the addiction row is misleading +> (temperance still raises event 0x1b, and phase 2 raises nothing); the unowned decay constant is +> `(double)0.02f`; every capacity is quantised down to a multiple of 10; and **the only RNG +> consumer in a colony turn is `ProcessRebellion`** — `ProcessTurn`, `ProcessPlague`, +> `GrowCivilianPops` and `ProcessSlaves` are all draw-free. §3.1's call table also omits +> `TRes = 0` (+0x74) and the `haltv[0..2] = false` clear (+0x78). + + ### 3.1 Function map (in call order) | addr | name / *proposed* | what | |---|---|---| @@ -397,6 +411,20 @@ per the enum in §0 (resolved). ## 4. Movement +> **B4 CORRECTIONS (movement) (2026-09-08).** Re-read instruction by instruction; full list in +> `formula-gaps.md` ("B4"). §4.2's bucketing is wrong — the schedule is a **pursuit model** +> (prey 0.5, pursuers 0.5 with an arrival retiring the pair, surviving prey 0.5, everything else +> 1.0 with an uncaught pursuer taking another 0.5, followers 1.0). `range = MinRange + 0.05f` +> (**added**, not subtracted), and the out-of-range case zeroes the **range**, not the step. +> `move` has **no floor at 0**. The type-5 jump **scatters the fleet around the destination** by +> `float32(roll x CstE)` on a miss, at the cost of a second draw — it does not stop part-way +> along the vector — and it arrives on equality. `IsNodeWaypoint` is true for type **3 only**. +> The recursion threshold is `(double)0.9999f` and the test is strict. `fleet+0xec` is `FPdpos`, +> not `FPogn2`. Gate traffic is a **signed int16** per fleet. The stutter overlap rule is +> **not** a midpoint (see Q7 in `formula-gaps.md`), and `STUTTER_MIN_SPEED == STUTTER_MAX_SPEED` +> in the shipped data, so the ramp is a constant 0.33x. + + ### 4.1 Function map | addr | name | role | |---|---|---| diff --git a/ghidra/addresses.json b/ghidra/addresses.json index 29d0a19..48ce08f 100644 --- a/ghidra/addresses.json +++ b/ghidra/addresses.json @@ -1154,22 +1154,6 @@ "status": "verified", "source": "handoff/formula-gaps.md#q4" }, - { - "name": "NodeLine_Step", - "addr": "0x00705510", - "convention": "cdecl", - "prototype": "void (Vector3* posOut, bool* arrivedOut, float nodespeed, float dt, void* lines, Vector3* from, Vector3* to)", - "status": "unverified", - "source": "handoff/formula-gaps.md#q7" - }, - { - "name": "NodeLine_BuildStutterSegments", - "addr": "0x00705280", - "convention": "cdecl", - "prototype": "void (vector* segsOut, vector* systems, Vector3* from, Vector3* to)", - "status": "unverified", - "source": "handoff/formula-gaps.md#q7" - }, { "name": "g_TechIdNames", "addr": "0x009ff9e4", @@ -1689,6 +1673,926 @@ "prototype": "int -- number of rows in g_AITechValueTable (6)", "status": "verified", "source": "B2 own disassembly pass 2026-09-08 (ReVa read-memory + objdump -b binary -m i386): ServerPlayer::OnTechResearched 0x00891790, RebuildSpeciesTechFlags 0x0082bf10, ApplyAITechBonus 0x0080e330, SetAIBenefit 0x008186b0, UpdateNodeBoreParams 0x008182c0, SelectNodeBoreParams 0x006e18e0, GetPlagueCureMask 0x00537240" + }, + { + "name": "ServerPlayer_off_ServerLink", + "offset": "0x8", + "convention": "offset", + "prototype": "void* -- the StrategyServer subobject pointer; StrategyServer = *(void**)(player+8) - 4. Its +0x16c is the Mars::RNG* the strategic sim draws from, and its +8 the event manager", + "status": "verified", + "source": "B2 own disassembly pass 2026-09-08 (ReVa read-memory + objdump -b binary -m i386): ServerPlayer::RollResearchEvent 0x0088df20, ResearchEventOdds 0x00820380, ServerPlayer::OnTechResearched 0x00891790" + }, + { + "name": "StrategyServer_off_RNG", + "offset": "0x16c", + "convention": "offset", + "prototype": "Mars::RNG* -- the strategic generator (same object TechTree::ProcessResearch is handed)", + "status": "verified", + "source": "B2 own disassembly pass 2026-09-08 (ReVa read-memory + objdump -b binary -m i386): ServerPlayer::RollResearchEvent 0x0088df20, ResearchEventOdds 0x00820380, ServerPlayer::OnTechResearched 0x00891790" + }, + { + "name": "ServerPlayer_RollResearchEvent", + "addr": "0x0088df20", + "convention": "fastcall", + "prototype": "void (ServerPlayer* this) -- odds = ResearchEventOdds(this, this->ResT); draws EXACTLY ONE NextFloat from StrategyServer's generator, unconditionally, then fires 0x00889d60 when odds > roll. Called from OnTechResearched when the completing def is the current research target and the pending-roll byte at +0x3b4 is set. This is the extra RNG draw B3 observed on a completion", + "status": "verified", + "source": "B2 own disassembly pass 2026-09-08 (ReVa read-memory + objdump -b binary -m i386): ServerPlayer::RollResearchEvent 0x0088df20, ResearchEventOdds 0x00820380, ServerPlayer::OnTechResearched 0x00891790" + }, + { + "name": "ServerPlayer_ResearchEventOdds", + "addr": "0x00820380", + "convention": "thiscall", + "prototype": "float (ServerPlayer* this, TechDef* def) -- 0 when def is null; a plague-family path via 0x00535480, else the AI-rebellion path via AITechRow (odds column) gated on !NPC. Read-only, makes no draw", + "status": "verified", + "source": "B2 own disassembly pass 2026-09-08 (ReVa read-memory + objdump -b binary -m i386): ServerPlayer::RollResearchEvent 0x0088df20, ResearchEventOdds 0x00820380, ServerPlayer::OnTechResearched 0x00891790" + }, + { + "name": "ServerSystem_ProcessTurn", + "addr": "0x007598e0", + "convention": "thiscall", + "prototype": "void (ServerSystem* this) /* NO stack arguments -- plain RET, nothing reads [ebp+8]; Ghidra's decompile shows a spurious second parameter. Body order: unowned Infra decay -> ApplyInfraBonus -> ApplyPopBonus -> independent pop drift -> IsStable/ntdev -> AccrueSystemBonus -> ProcessPlague -> ProcessBuildQueue -> imperial growth -> civilian growth -> AdjustResources(-out[2]) -> TRes=0 -> RefuelInOrbit(1) -> Bats2 tick -> rcex tick -> haltv[0..2]=false -> ProcessSlaves -> ProcessRebellion -> addiction sweep. Consumes no RNG itself; ProcessPlague / civilian growth / ProcessSlaves are draw-free to depth 1, and ProcessRebellion is the only consumer */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StrategyServer_MoveFleet", + "addr": "0x007d9ee0", + "convention": "thiscall", + "prototype": "bool (StrategyServer* this, StarFleet* fleet, float dt) /* RET 8; dt is a 4-byte float pushed with fstp DWORD [esp]; returns AL, true only when the fleet ends exactly on a waypoint destination at the deepest recursion level. range = MinRange(fleet, +0.05f) -- ADDED, not subtracted; out of range with MinRange(0)==0 zeroes the RANGE, not the step; move = min(min(range, step), distance) with no floor at 0; recursion iff fraction < (double)0.9999f with dt' = float32((1-fraction)*dt) */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StrategyServer_ProcessFleetMovement", + "addr": "0x007da9a0", + "convention": "thiscall", + "prototype": "void (StrategyServer* this) /* no stack args, plain RET. Pursuit schedule, not a departing/in-transit split: classify every fleet whose current waypoint targets a fleet by owner relation (0 = pursuer, else follower); pass1 prey dt 0.5, pass2 pursuers dt 0.5 (an arrival retires the pair), pass3 remaining prey dt 0.5, pass4 everything unscheduled dt 1.0 (an uncaught pursuer gets 0.5), pass5 followers dt 1.0. Then FPdpos, gate traffic, OnFleetArrived, and clears flag 0x100 on every fleet. Makes no RNG draw of its own */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_MinRange", + "addr": "0x006ff6a0", + "convention": "thiscall", + "prototype": "float (StarFleet* this, float bias) /* RET 4; min over ships of ship->Range seeded with FLT_MAX (an empty fleet is unconstrained), then + bias, narrowed to float32. No ship is skipped -- range-exempt tankers still clamp the fleet */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_HasAllFlags", + "addr": "0x006fe1d0", + "convention": "thiscall", + "prototype": "bool (StarFleet* this, uint32 mask) /* (flags & mask) == mask, flags at fleet+0x10c */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_SetFlag", + "addr": "0x006fe1a0", + "convention": "thiscall", + "prototype": "void (StarFleet* this, uint32 mask, bool on) /* the only two writers of fleet+0x10c in the image */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_ResolveWaypoint", + "addr": "0x00701390", + "convention": "thiscall", + "prototype": "void* (StarFleet* this) /* no args; NULL when the waypoint vector is empty or the front waypoint's target id does not resolve in the entity hash at fleet->galaxy(+0x10)+0x80 */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "IsGateTransitWaypoint", + "addr": "0x0056e6e0", + "convention": "cdecl", + "prototype": "bool (int waypointType) /* 7-entry jump table: true only for 4 and 5; false default */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "IsNodeWaypoint", + "addr": "0x0056e720", + "convention": "cdecl", + "prototype": "bool (int waypointType) /* 7-entry jump table: true only for 3. NOTE the node-LINE case of the movement switch is type 2, which this does NOT accept */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ProbabilisticJump", + "addr": "0x007b6700", + "convention": "thiscall", + "prototype": "void (StrategyServer* this, StarFleet* fleet, void* dest) /* waypoint type 5. v = float32(NextFloat() * player->CstE); arrives iff !(v > player->CstT) (equality arrives); on a miss the fleet is placed at dest + randomUnitVector * v -- scattered AROUND the destination by v, not advanced a fraction along the vector -- which costs a second raw draw. 1 draw on success, 2 on a miss */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "NodeLine_Step", + "addr": "0x00705510", + "convention": "cdecl", + "prototype": "void (Vector3* posOut, bool* arrivedOut, float nodespeed, float dt, vector* systems, const Vector3* from, const Vector3* to) /* builds the stutter segments, reverses them and pops from the back (so ascending by start); plain nodespeed between spheres, a constant per-segment speed inside one; arrived = (time < dt) || |along - length| < FLT_EPSILON, and on arrival the destination is copied verbatim */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "NodeLine_BuildStutterSegments", + "addr": "0x00705280", + "convention": "cdecl", + "prototype": "void (vector* out, vector* systems, const Vector3* from, const Vector3* to) /* chord parameters scaled to world distance and clamped to [0, length]; a chord with |start-end| <= 0.01f is dropped; std::sort ascending by start; then ONE forward pass over adjacent pairs sets BOTH boundaries of an overlap to end_i + 0.5*(end_i - start_{i+1}) -- the mirror of the midpoint, pushed forward past both chords. Nothing is dropped or clipped back, so a swallowed chord comes out inverted */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "SegmentSphereIntersect", + "addr": "0x008a64f0", + "convention": "cdecl", + "prototype": "bool (float* tNear, float* tFar, const Sphere4* s, const Vector3* from, const Vector3* to) /* wraps the quadratic solver 0x008a62c0; rejects a sphere the segment does not reach and reports an open end as -FLT_MAX / +FLT_MAX */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "DistPointToSegment", + "addr": "0x008e8eb0", + "convention": "cdecl", + "prototype": "float (const Vector3* p, const Vector3* a, const Vector3* b) /* projection parameter clamped to [0,1]. NOTE 0x008c8eb0 is a varargs formatter, not this */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_MaxPop", + "addr": "0x0074ab20", + "convention": "thiscall", + "prototype": "int (ServerSystem* this, ServerPlayer* p, int flag) /* RET 8 -- (player, flag), NOT (species, groupType). Species is derived from p->Species and the group type is hard-coded to 0, which makes the cross-species and INDSYS branches dead in this specialisation. Returns the int64 result clamped to [0, INT32_MAX], low dword only */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_MaxPopGeneric", + "addr": "0x0074a4a0", + "convention": "thiscall", + "prototype": "int64 (ServerSystem* this, int groupType, int species, ServerPlayer* p, float* suitOverride) /* RET 0x10 */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_IsStable", + "addr": "0x0074ad90", + "convention": "thiscall", + "prototype": "bool (ServerSystem* this) /* false without an owner, with Infra < 1.0, or with Suit != IdealSuit */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_ApplyInfraBonus", + "addr": "0x00746780", + "convention": "thiscall", + "prototype": "void (ServerSystem* this) /* returns early unless ibon > 0 and Infra < 1; resets ntdev to 0 when the system is not the owner's home system; applied = min(ibon, float32(1 - Infra)); Infra becomes EXACTLY 1.0f when applied == the remainder, else float32(Infra + applied); ibon -= applied */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_ApplyPopBonus", + "addr": "0x0074b510", + "convention": "thiscall", + "prototype": "void (ServerSystem* this) /* nothing unless pbon > 0; an unowned system drops the whole pool; returns when Pop >= MaxPop; resets ntdev for a non-home system; Pop += min(cap - Pop, pbon); pbon -= same. Pop and pbon are int32 */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_ApplyInfraDelta", + "addr": "0x00748270", + "convention": "thiscall", + "prototype": "void (ServerSystem* this, float delta) /* no-op once Infra >= 1; clamps to 1 and re-normalises the system's own output rates when it lands there */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_ApplySuitDelta", + "addr": "0x007481c0", + "convention": "thiscall", + "prototype": "void (ServerSystem* this, float delta) /* clamps at the ideal from whichever side it approached, so suitability never overshoots; re-normalises the rates when it lands exactly on the ideal */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_ComputeOutputFromRates", + "addr": "0x00751bb0", + "convention": "thiscall", + "prototype": "void (ServerSystem* this, int out[12], float rates[7]) /* RET 8. `out` is 12 dwords of MIXED type: 0 total (truncated), 1 strip-mined resources, 2 resources consumed, 3 money, 7 gross construction, 8 points to the queue, 9 points SPENT on repairs, 10 float32 infra delta, 11 float32 suitability delta. `rates` is copied to the stack first, so the caller's struct is untouched. NOT side-effect free: it repairs damaged ships in orbit via 0x00751590(points, estimateOnly=0) */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_NormaliseOutputRates", + "addr": "0x00747390", + "convention": "cdecl", + "prototype": "void (float rates[7], ServerSystem* sys, float* pinned) /* `pinned` defaults to &rates[0] (trade) and every call site passes NULL or that. Suppress terraform at the ideal (exact ==) and infra when float32(ibon+Infra) >= 1; zero any channel <= (double)1e-4f; clamp ONLY the pinned channel to [0,1]; sum the other three in float32; an exactly-zero sum seeds them with 1e-4f (honouring the suppressions); each becomes (r/sum)*(1-pinned) */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_ProcessBuildQueue", + "addr": "0x00752500", + "convention": "thiscall", + "prototype": "void (ServerSystem* this, int* resourcesConsumedOut) /* computes the turn's output vector, writes out[2] (resources consumed) through the pointer, applies out[11] via ApplySuitDelta and out[10] via ApplyInfraDelta, and feeds out[8] to BuildQueue::ProcessTurn. Increments TnsOH while SRoh > 0 && out[1] > 0 */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "BuildQueue_ProcessTurn", + "addr": "0x00890d50", + "convention": "thiscall", + "prototype": "int (BuildQueue* this, ServerSystem* sys, int points) /* RET 8; `points` is BY VALUE and the leftover is the RETURN value. An order needing more than what is left absorbs everything and stops the pass; a design that costs money asks this->vft[9](sys, (int64)cost) and a refusal SKIPS that order and continues rather than stopping. Removal is a separate sweep afterwards that unlinks every order with conleft <= 0 */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_AdjustResources", + "addr": "0x00745f30", + "convention": "thiscall", + "prototype": "void (ServerSystem* this, int delta, int mode) /* RET 8; ProcessTurn passes -out[2] with mode 0 when the owner has AMine, else mode 3. Mode 3 takes it all from Res; mode 0 splits it proportionally over Res / ARes2 / MRes */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_PopGrowthDelta", + "addr": "0x00748100", + "convention": "thiscall", + "prototype": "int64 (ServerSystem* this, int groupType, int species) /* RET 8; 0 without an owner or when haltv[groupType] is set */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "PopGrowthFraction", + "addr": "0x00536fb0", + "convention": "thiscall", + "prototype": "float (ServerPlayer* p, int groupType, int species, float suit, float factor) /* the growth curve. base = 1 - clamp01(min(|ideal - clamp(suit,0,20)|, SuitTol) / SuitTol) -- there is NO pop/capacity term anywhere; g = clamp01(pow(base, clamp(POPULATION_GROWTH_EXP, 0.01f, 1000))) then x MOD x PopMod x factor x groupdef[+4], each gated on a strict > 0 and each stored back to a float32 */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_SlaveDeathRate", + "addr": "0x0074b110", + "convention": "thiscall", + "prototype": "float (ServerSystem* this, int species) /* RET 4; 1.0 when unowned. mod = (bit0 ? 0.8f : 1) - 0.2*bit1 - 0.2*bit2, no clamp; rate = ((|Ideal-Suit| x BYHAZARD + DEATH_RATE) + SRs x BYOUTPUT) x mod, every step narrowed to float32 */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_ProcessSlaves", + "addr": "0x007537b0", + "convention": "thiscall", + "prototype": "void (ServerSystem* this) /* the worst plague's rate is ADDED to the death rate; SLAVES_MIN/MAX_DEATHS are each disabled by ANY negative value; deaths are clamped into [0, adjusted slave count]. Consumes no RNG */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_ProcessPlague", + "addr": "0x00756a90", + "convention": "thiscall", + "prototype": "void (ServerSystem* this) /* consumes no RNG, at depth 1 */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_ProcessRebellion", + "addr": "0x007583b0", + "convention": "thiscall", + "prototype": "void (ServerSystem* this) /* the ONLY RNG consumer in a colony turn, and its draw count is data-dependent: one RandChance per iteration of a 64-bit rebel counter (0x0074fbe0), a short-circuiting per-species roll loop (0x00753c60), one outcome roll (0x00756350) and one 0.2f continuation roll */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_GrowCivilianPops", + "addr": "0x00754220", + "convention": "thiscall", + "prototype": "void (ServerSystem* this) /* consumes no RNG, at depth 1 */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "RNG_Chance", + "addr": "0x008e6dd0", + "convention": "stdcall", + "prototype": "bool (RNG* this /*ecx, the object*/, float p) /* p <= 0 -> false and p >= 1 -> true, both WITHOUT a draw; otherwise exactly one NextFloat and `r < p` */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerPlayer_AddMoraleEvent", + "addr": "0x00839d60", + "convention": "thiscall", + "prototype": "void (ServerPlayer* this, MoraleEvent* ev, ServerSystem* sys) /* the actual apply. 0x00752a10 is only the MoraleEvent constructor; the per-species delta is carried in ev->deltas[species] (int[7] at ev+0x18), not as an argument */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "MoraleEvent_ctor", + "addr": "0x00752a10", + "convention": "thiscall", + "prototype": "MoraleEvent* (MoraleEvent* this) /* 0x50 bytes: {vptr, ints (+0x10 = event id), vptr2 @+0x14, int deltas[7] @+0x18, std::string name @+0x34} */", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Owner", + "offset": "0x00000010", + "convention": "offset", + "prototype": "StrategyServer* owner (the RAW base; the RNG accessor uses owner-4)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Idx", + "offset": "0x0000005c", + "convention": "offset", + "prototype": "int Idx", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Size", + "offset": "0x00000060", + "convention": "offset", + "prototype": "int Size (1..10); the capacity base is Size * 100000000 as an exact int64 product", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Suit", + "offset": "0x00000064", + "convention": "offset", + "prototype": "float Suit", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Res", + "offset": "0x00000068", + "convention": "offset", + "prototype": "int Res", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_ARes2", + "offset": "0x0000006c", + "convention": "offset", + "prototype": "int ARes2", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_MRes", + "offset": "0x00000070", + "convention": "offset", + "prototype": "int MRes", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_TRes", + "offset": "0x00000074", + "convention": "offset", + "prototype": "int TRes -- zeroed every turn by ProcessTurn", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_haltv", + "offset": "0x00000078", + "convention": "offset", + "prototype": "bool haltv[3] -- growth halt per group; cleared every turn by ProcessTurn", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_OutMod", + "offset": "0x0000007c", + "convention": "offset", + "prototype": "float OutMod", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_TAcq", + "offset": "0x00000080", + "convention": "offset", + "prototype": "int TAcq (turn acquired)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Rates", + "offset": "0x00000088", + "convention": "offset", + "prototype": "StarSystem::OutputRates (0x1c): float SRt, SRsc, SRtf, SRi, SRoh, SRs; int SRnr", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_SRoh", + "offset": "0x00000098", + "convention": "offset", + "prototype": "float SRoh -- the over-harvest slider (Rates + 0x10)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_BuildQueue", + "offset": "0x000000a4", + "convention": "offset", + "prototype": "BuildQueue*", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Name", + "offset": "0x000000a8", + "convention": "offset", + "prototype": "std::string Name (0x1c, MSVC SSO; capacity word at +0xbc)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Abdn", + "offset": "0x000000c4", + "convention": "offset", + "prototype": "bool Abdn", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Bats2", + "offset": "0x000000f0", + "convention": "offset", + "prototype": "int64 Bats2 -- player i's 4-bit battle-recent counter at bits [4i, 4i+4), i < 15", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Rcex", + "offset": "0x000000f8", + "convention": "offset", + "prototype": "int64 rcex -- the same shape for the explored/recon-recent counter", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_PID", + "offset": "0x00000100", + "convention": "offset", + "prototype": "ServerPlayer* PID (null = unowned)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Morale", + "offset": "0x0000011c", + "convention": "offset", + "prototype": "Morale cm (0x20: vptr + int[7])", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Fleets", + "offset": "0x0000016c", + "convention": "offset", + "prototype": "std::vector", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Pop", + "offset": "0x0000018c", + "convention": "offset", + "prototype": "int Pop (imperial)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Infra", + "offset": "0x00000190", + "convention": "offset", + "prototype": "float Infra", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_pbon", + "offset": "0x00000194", + "convention": "offset", + "prototype": "int pbon -- the pending population bonus (int32, not a float)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_ibon", + "offset": "0x00000198", + "convention": "offset", + "prototype": "float ibon -- the pending infrastructure bonus", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Pop2", + "offset": "0x000001a0", + "convention": "offset", + "prototype": "Population Pop2 (civilians): {vptr, vector @+4}, 24-byte entries {?, int type @+4, int species @+8, int64 count @+0x10}", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_pbon2", + "offset": "0x000001b4", + "convention": "offset", + "prototype": "Population pbon2 -- the civilian analogue of pbon", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_Indi", + "offset": "0x000001c8", + "convention": "offset", + "prototype": "IndependenceInfo* indi (int indsp at +4)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_rbfl", + "offset": "0x000001dc", + "convention": "offset", + "prototype": "int rbfl -- rebelling-species bitmask", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_adt", + "offset": "0x000001e4", + "convention": "offset", + "prototype": "int adt[7] -- per-species addiction start turn; 0 means never addicted", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_BatsMask", + "offset": "0x000002a0", + "convention": "offset", + "prototype": "uint32 -- bit i is cleared when player i's Bats2 counter reaches 0", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_RcexMask", + "offset": "0x000002a4", + "convention": "offset", + "prototype": "uint32 -- the same for rcex", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_TnsOH", + "offset": "0x000002b8", + "convention": "offset", + "prototype": "int TnsOH (turns over-harvesting)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_ntdev", + "offset": "0x000002c4", + "convention": "offset", + "prototype": "int ntdev -- turns developing; ++ when IsStable, reset to 0 otherwise AND by either bonus-apply helper on a non-home system. This is the second SYSTEMBONUS_MINTURNS gate, not rbtn", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerSystem_off_rbtn", + "offset": "0x000002cc", + "convention": "offset", + "prototype": "int rbtn", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StrategyServer_off_ModCount", + "offset": "0x00000008", + "convention": "offset", + "prototype": "int ModCount (the turn counter), relative to the RAW server base a ServerSystem's +0x10 points at", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StrategyServer_off_Players", + "offset": "0x00000050", + "convention": "offset", + "prototype": "std::vector (begin @+0x50, end @+0x54); numPlayers = (end-begin)>>2", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StrategyServer_off_Fleets", + "offset": "0x00000064", + "convention": "offset", + "prototype": "std::vector (begin @+0x64, end @+0x68) -- one flat global list, not per player", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StrategyServer_off_EntityHash", + "offset": "0x00000084", + "convention": "offset", + "prototype": "16-bucket hash of entity id -> object, hashed by (key & 0xF); 0x008b9240 is the lookup", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StrategyServer_off_RNGPtr", + "offset": "0x00000168", + "convention": "offset", + "prototype": "Mars::RNG* relative to the RAW base (== the -4-adjusted base's +0x16c)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StrategyServer_off_ArrivedSet", + "offset": "0x00000204", + "convention": "offset", + "prototype": "std::set> cleared at the head of ProcessFleetMovement", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StrategyServer_off_InMotionSet", + "offset": "0x00000214", + "convention": "offset", + "prototype": "std::set> that MoveFleet fills for fleets still in motion; OnFleetArrived takes the set difference", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_Id", + "offset": "0x00000004", + "convention": "offset", + "prototype": "int id (also the entity-hash key)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_Galaxy", + "offset": "0x00000010", + "convention": "offset", + "prototype": "the object whose +0x80 holds the entity hash the waypoint target is resolved in", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_Pos", + "offset": "0x00000018", + "convention": "offset", + "prototype": "Vector3 Pos", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_PrvPos", + "offset": "0x0000004c", + "convention": "offset", + "prototype": "Vector3 PrvPos -- set to the ENTRY position when the fleet moved", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_PID", + "offset": "0x00000058", + "convention": "offset", + "prototype": "ServerPlayer* owner", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_Location", + "offset": "0x000000a0", + "convention": "offset", + "prototype": "Location*; kind at Location+0x14 (0 system, 1 fleet, 2 point)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_Ships", + "offset": "0x000000a4", + "convention": "offset", + "prototype": "std::vector (begin @+0xa4, end @+0xa8)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_GateTraffic", + "offset": "0x000000c0", + "convention": "offset", + "prototype": "int16 -- SIGNED, summed into the owner's gate traffic", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_Waypoints", + "offset": "0x000000c8", + "convention": "offset", + "prototype": "std::vector _Myfirst (proxy @+0xc4, last @+0xcc, end @+0xd0)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_Speed", + "offset": "0x000000d8", + "convention": "offset", + "prototype": "float FPsp2 -- the fleet's strategic speed", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_DestPos", + "offset": "0x000000ec", + "convention": "offset", + "prototype": "Vector3 -- set after every pass to the current waypoint target's position. The notes called this FPogn2; by the FlightPlan layout it is FPdpos", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarFleet_off_Flags", + "offset": "0x0000010c", + "convention": "offset", + "prototype": "uint32; bit 0x100 = held this turn (cleared for every fleet at the end of ProcessFleetMovement), bit 0x2 cleared in the destination pass, bit 0x1 set by MoveFleet when the fleet moved", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "Waypoint_stride", + "offset": "0x0000001c", + "convention": "offset", + "prototype": "sizeof(Waypoint) -- pinned by the divide-by-28 reciprocal multiply in the iterator arithmetic", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "Waypoint_off_Target", + "offset": "0x00000004", + "convention": "offset", + "prototype": "int -- the destination entity id", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "Waypoint_off_Type", + "offset": "0x00000008", + "convention": "offset", + "prototype": "int -- 2 node line, 3 node route, 4 gate teleport, 5 probabilistic jump, otherwise a straight run", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarShip_off_Flags", + "offset": "0x00000018", + "convention": "offset", + "prototype": "uint64 flag pair; bit 0x1000 exempts the ship from movement fuel and marks it a tanker", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarShip_off_Range", + "offset": "0x00000020", + "convention": "offset", + "prototype": "float Range -- remaining strategic range", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "StarShip_off_MaxRange", + "offset": "0x00000078", + "convention": "offset", + "prototype": "float -- the cap the refuel helper clamps Range to", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerPlayer_off_HomeSystem", + "offset": "0x0000002c", + "convention": "offset", + "prototype": "ServerSystem* -- the bonus-apply helpers skip the ntdev reset for this system", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerPlayer_off_GateTraffic", + "offset": "0x0000014c", + "convention": "offset", + "prototype": "int GTraf -- assigned (not accumulated) once per turn", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerPlayer_off_CstE", + "offset": "0x00000154", + "convention": "offset", + "prototype": "float CstE -- the probabilistic jump's efficiency", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "ServerPlayer_off_CstT", + "offset": "0x00000158", + "convention": "offset", + "prototype": "float CstT -- the probabilistic jump's threshold", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_ptr_SYSTEMBONUS_MINTURNS", + "addr": "0x00aeca10", + "convention": "data", + "prototype": "int** -- the GlobalConst pointer slot; the storage word is *slot", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_ptr_SYSTEMBONUS_POPBONUS", + "addr": "0x00aeca18", + "convention": "data", + "prototype": "float** -- pointer slot", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_ptr_SYSTEMBONUS_INFRABONUS", + "addr": "0x00aeca20", + "convention": "data", + "prototype": "float** -- pointer slot", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_ptr_SYSTEMBONUS_POPBONUS_INC", + "addr": "0x00aeca38", + "convention": "data", + "prototype": "float** -- pointer slot", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_ptr_SYSTEMBONUS_INFRABONUS_INC", + "addr": "0x00aeca40", + "convention": "data", + "prototype": "float** -- pointer slot", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_ptr_ADDICTION_PHASE2_START", + "addr": "0x00aeca58", + "convention": "data", + "prototype": "int** -- pointer slot (image default 10)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_ptr_ADDICTION_PHASE3_START", + "addr": "0x00aeca60", + "convention": "data", + "prototype": "int** -- pointer slot (image default 15)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_IndependentPopDriftRate", + "addr": "0x00aeca80", + "convention": "data", + "prototype": "float -- 0.05f, a hard-coded literal in .data, NOT a GlobalConst; both ServerSystem::ProcessTurn calls to the independent pop-drift helper pass it", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_ptr_STUTTER_SYSTEM_INFLUENCE_RADIUS", + "addr": "0x00aebc44", + "convention": "data", + "prototype": "float** -- pointer slot; storage 0x00b212cc (shipped value 2)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_ptr_STUTTER_MIN_SPEED", + "addr": "0x00aebc48", + "convention": "data", + "prototype": "float** -- pointer slot; storage 0x00b212d0 (shipped value 0.33)", + "status": "verified", + "source": "handoff/b4-colony-movement.md" + }, + { + "name": "g_ptr_STUTTER_MAX_SPEED", + "addr": "0x00aebc4c", + "convention": "data", + "prototype": "float** -- pointer slot; storage 0x00b212d4 (shipped value 0.33). NOTE min == max in the shipped data, so the stutter ramp collapses to a constant 0.33x inside any influence sphere", + "status": "verified", + "source": "handoff/b4-colony-movement.md" } ] -} +} \ No newline at end of file diff --git a/verify/results/compare/b2-techfx-compare.json b/verify/results/compare/b2-techfx-compare.json new file mode 100644 index 0000000..c846c8b --- /dev/null +++ b/verify/results/compare/b2-techfx-compare.json @@ -0,0 +1,74 @@ +{ + "format": 1, + "hooks": { + "Game::ServerPlayer::OnTechResearched": { + "calls": 3, + "compared": 3, + "diffs": [], + "diverged": 0, + "diverged_call_ids": [], + "errors": 0, + "modes": { + "compare": 3 + } + } + }, + "inputs": [ + "verify/traces/b2-techfx-compare.jsonl" + ], + "invalid": [], + "kind": "report", + "meta": [ + { + "build": "b2-646e4e8-dirty-20260908T0434Z", + "exe_sha256": "970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841", + "format": 1, + "hooks": { + "Game::SectionDictionary::SectionDictionary": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::ComputeBudget": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::OnTechResearched": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::TechTree::ProcessResearch": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::WeaponDictionary::Init": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Mars::GlobalConsts::LoadFile": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Shim::SelfTest::Fill": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + } + }, + "inline_max": 256, + "started": "2026-09-08T04:48:48Z" + } + ], + "totals": { + "calls": 3, + "compared": 3, + "diverged": 0, + "invalid_records": 0 + }, + "warnings": [] +} diff --git a/verify/results/compare/b2-techfx-golden.json b/verify/results/compare/b2-techfx-golden.json new file mode 100644 index 0000000..0e76e1d --- /dev/null +++ b/verify/results/compare/b2-techfx-golden.json @@ -0,0 +1,85 @@ +{ + "format": 1, + "hooks": { + "Game::ServerPlayer::OnTechResearched": { + "calls": 2, + "compared": 0, + "diffs": [], + "diverged": 0, + "diverged_call_ids": [], + "errors": 0, + "modes": { + "trace": 2 + } + }, + "Game::TechTree::ProcessResearch": { + "calls": 18, + "compared": 0, + "diffs": [], + "diverged": 0, + "diverged_call_ids": [], + "errors": 0, + "modes": { + "trace": 18 + } + } + }, + "inputs": [ + "verify/traces/b2-techfx-golden.jsonl" + ], + "invalid": [], + "kind": "report", + "meta": [ + { + "build": "b2-646e4e8-dirty-20260908T0434Z", + "exe_sha256": "970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841", + "format": 1, + "hooks": { + "Game::SectionDictionary::SectionDictionary": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::ComputeBudget": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::ServerPlayer::OnTechResearched": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::TechTree::ProcessResearch": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Game::WeaponDictionary::Init": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Mars::GlobalConsts::LoadFile": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + }, + "Shim::SelfTest::Fill": { + "ftol": 0, + "ftol_kind": "abs", + "ptr": "ignore" + } + }, + "inline_max": 256, + "started": "2026-09-08T04:36:07Z" + } + ], + "totals": { + "calls": 20, + "compared": 0, + "diverged": 0, + "invalid_records": 0 + }, + "warnings": [] +} diff --git a/verify/traces/b2-techfx-compare.jsonl b/verify/traces/b2-techfx-compare.jsonl new file mode 100644 index 0000000..d28a6b4 --- /dev/null +++ b/verify/traces/b2-techfx-compare.jsonl @@ -0,0 +1,4 @@ +{"meta":{"format":1,"build":"b2-646e4e8-dirty-20260908T0434Z","exe_sha256":"970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841","started":"2026-09-08T04:48:48Z","inline_max":256,"hooks":{"Shim::SelfTest::Fill":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Mars::GlobalConsts::LoadFile":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Game::ServerPlayer::ComputeBudget":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Game::WeaponDictionary::Init":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Game::SectionDictionary::SectionDictionary":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Game::TechTree::ProcessResearch":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Game::ServerPlayer::OnTechResearched":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"}}}} +{"ts":353746445,"hook":"Game::ServerPlayer::OnTechResearched","mode":"compare","call_id":0,"thread":8724,"depth":0,"args":[{"t":"ptr","v":"0x0e2ab5c0","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x04001428","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":9},"unk_106":{"t":"u8","v":9},"unk_107":{"t":"u8","v":109}}},"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":9},"unk_106":{"t":"u8","v":9},"unk_107":{"t":"u8","v":109}}}},"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":854541},"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":854541},"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":"0x04001428"},"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":7145737}}},"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":7145737}}}},"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":7566081},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":7566081},"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":9},"unk_106":{"t":"u8","v":9},"unk_107":{"t":"u8","v":109}}}},"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":854541},"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":7145737}}}},"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":7566081},"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":[]} +{"ts":408917690,"hook":"Game::ServerPlayer::OnTechResearched","mode":"compare","call_id":1,"thread":8724,"depth":0,"args":[{"t":"ptr","v":"0x0e2ab5c0","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x0e03f140","n":"def"},{"t":"i32","v":10010,"n":"tech_id"},{"t":"i32","v":9,"n":"def_node_index"},{"t":"str","v":"BIO_GnMod","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":9},"unk_106":{"t":"u8","v":9},"unk_107":{"t":"u8","v":109}}},"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":9},"unk_106":{"t":"u8","v":9},"unk_107":{"t":"u8","v":109}}}},"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":854541},"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.20000005},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":854541},"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":"0x0e03f140"},"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":7145737}}},"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":7145737}}}},"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":7566081},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":7566081},"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":375},"next_index":{"t":"i64","v":249}}}}},"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":9},"unk_106":{"t":"u8","v":9},"unk_107":{"t":"u8","v":109}}}},"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.20000005},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":854541},"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":7145737}}}},"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":7566081},"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":375},"next_index":{"t":"i64","v":249}}}}}},"diverged":false,"diff":[]} +{"ts":488669506,"hook":"Game::ServerPlayer::OnTechResearched","mode":"compare","call_id":2,"thread":8724,"depth":0,"args":[{"t":"ptr","v":"0x0e2ab5c0","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x0e03f890","n":"def"},{"t":"i32","v":10070,"n":"tech_id"},{"t":"i32","v":18,"n":"def_node_index"},{"t":"str","v":"BIO_SPNDANI","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":9},"unk_106":{"t":"u8","v":9},"unk_107":{"t":"u8","v":109}}},"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":9},"unk_106":{"t":"u8","v":9},"unk_107":{"t":"u8","v":109}}}},"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.20000005},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":854541},"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.20000005},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":854541},"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":"0x0e03f890"},"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":7145737}}},"after":{"t":"struct","v":{"capture_designs":{"t":"bool","v":false},"unk_331_333":{"t":"u32","v":7145737}}}},"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":7566081},"ai_rebellion":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"research_roll_pending":{"t":"bool","v":false},"unk_3b5_3b7":{"t":"u32","v":7566081},"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":336},"next_index":{"t":"i64","v":288}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":336},"next_index":{"t":"i64","v":288}}}}},"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":9},"unk_106":{"t":"u8","v":9},"unk_107":{"t":"u8","v":109}}}},"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.20000005},"terra_mod":{"t":"f32","v":1},"asteroid_mining":{"t":"bool","v":false},"unk_139_13b":{"t":"u32","v":854541},"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":7145737}}}},"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":7566081},"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":336},"next_index":{"t":"i64","v":288}}}}}},"diverged":false,"diff":[]} diff --git a/verify/traces/b2-techfx-golden.jsonl b/verify/traces/b2-techfx-golden.jsonl new file mode 100644 index 0000000..98b8ac2 --- /dev/null +++ b/verify/traces/b2-techfx-golden.jsonl @@ -0,0 +1,21 @@ +{"meta":{"format":1,"build":"b2-646e4e8-dirty-20260908T0434Z","exe_sha256":"970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841","started":"2026-09-08T04:36:07Z","inline_max":256,"hooks":{"Shim::SelfTest::Fill":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Mars::GlobalConsts::LoadFile":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Game::ServerPlayer::ComputeBudget":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Game::WeaponDictionary::Init":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Game::SectionDictionary::SectionDictionary":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Game::TechTree::ProcessResearch":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"},"Game::ServerPlayer::OnTechResearched":{"ftol":0,"ftol_kind":"abs","ptr":"ignore"}}}} +{"ts":460052888,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":0,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155d70","n":"tree"},{"t":"ptr","v":"0x0e12d758","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deaf4e8"},"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":"0x0deaf4e8"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"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":"0x0deaeb28"},"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"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":"0x0deaed98"},"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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7b28"},"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":"0x0deb7b28"},"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":"0x0deb8620"},"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":"0x0deb8620"},"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":"0x0deb79f0"},"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":"0x0deb79f0"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2520"},"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":"0x0deb2520"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"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":"0x0deb3b10"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"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":"0x040217b8"},"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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"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":"0x03efdf70"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"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":"0x03efcd28"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"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":"0x0deb4c78"},"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"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":"0x03eeeab0"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"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":"0x03efd208"},"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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03f015c0"},"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":"0x03f015c0"},"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03eff480"},"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":"0x03eff480"},"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":"0x03f01218"},"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":"0x03f01218"},"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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}}}} +{"ts":460066546,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":1,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155b78","n":"tree"},{"t":"ptr","v":"0x0e12c7b8","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"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":"0x0deb2b38"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef26c0"},"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":"0x03ef26c0"},"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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03ef06b8"},"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":"0x03ef06b8"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb6538"},"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":"0x0deb6538"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x0deb9730"},"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":"0x0deb9730"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"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":"0x0deb7648"},"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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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"}}}}}} +{"ts":460077736,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":2,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e156240","n":"tree"},{"t":"ptr","v":"0x0e12b048","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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"}}}}}} +{"ts":522308742,"hook":"Game::ServerPlayer::OnTechResearched","mode":"trace","call_id":4,"thread":6168,"depth":1,"args":[{"t":"ptr","v":"0x0e12d758","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x04021428","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":"0x04021428"},"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}}}}}} +{"ts":522315551,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":3,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155d70","n":"tree"},{"t":"ptr","v":"0x0e12d758","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deaf4e8"},"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":"0x0deaf4e8"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"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":"0x0deaeb28"},"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"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":"0x0deaed98"},"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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7b28"},"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":"0x0deb7b28"},"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":"0x0deb8620"},"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":"0x0deb8620"},"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":"0x0deb79f0"},"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":"0x0deb79f0"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2520"},"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":"0x0deb2520"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"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":"0x0deb3b10"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"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":"0x040217b8"},"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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"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":"0x03efdf70"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"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":"0x03efcd28"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"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":"0x0deb4c78"},"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"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":"0x03eeeab0"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"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":"0x03efd208"},"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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03f015c0"},"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":"0x03f015c0"},"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03eff480"},"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":"0x03eff480"},"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":"0x03f01218"},"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":"0x03f01218"},"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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}}}} +{"ts":522327082,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":5,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155b78","n":"tree"},{"t":"ptr","v":"0x0e12c7b8","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"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":"0x0deb2b38"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef26c0"},"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":"0x03ef26c0"},"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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03ef06b8"},"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":"0x03ef06b8"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb6538"},"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":"0x0deb6538"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x0deb9730"},"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":"0x0deb9730"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"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":"0x0deb7648"},"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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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"}}}}}} +{"ts":522338852,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":6,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e156240","n":"tree"},{"t":"ptr","v":"0x0e12b048","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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"}}}}}} +{"ts":548895558,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":7,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155d70","n":"tree"},{"t":"ptr","v":"0x0e12d758","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deaf4e8"},"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":"0x0deaf4e8"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"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":"0x0deaeb28"},"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"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":"0x0deaed98"},"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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7b28"},"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":"0x0deb7b28"},"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":"0x0deb8620"},"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":"0x0deb8620"},"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":"0x0deb79f0"},"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":"0x0deb79f0"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2520"},"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":"0x0deb2520"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"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":"0x0deb3b10"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"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":"0x040217b8"},"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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"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":"0x03efdf70"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"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":"0x03efcd28"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"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":"0x0deb4c78"},"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"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":"0x03eeeab0"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"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":"0x03efd208"},"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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03f015c0"},"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":"0x03f015c0"},"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03eff480"},"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":"0x03eff480"},"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":"0x03f01218"},"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":"0x03f01218"},"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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}}}} +{"ts":548910281,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":8,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155b78","n":"tree"},{"t":"ptr","v":"0x0e12c7b8","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"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":"0x0deb2b38"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef26c0"},"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":"0x03ef26c0"},"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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03ef06b8"},"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":"0x03ef06b8"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb6538"},"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":"0x0deb6538"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x0deb9730"},"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":"0x0deb9730"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"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":"0x0deb7648"},"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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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"}}}}}} +{"ts":548922528,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":9,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e156240","n":"tree"},{"t":"ptr","v":"0x0e12b048","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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"}}}}}} +{"ts":575494687,"hook":"Game::ServerPlayer::OnTechResearched","mode":"trace","call_id":11,"thread":6168,"depth":1,"args":[{"t":"ptr","v":"0x0e12d758","n":"player"},{"t":"i32","v":1,"n":"player_index"},{"t":"i32","v":2,"n":"species"},{"t":"ptr","v":"0x0deae780","n":"def"},{"t":"i32","v":10010,"n":"tech_id"},{"t":"i32","v":9,"n":"def_node_index"},{"t":"str","v":"BIO_GnMod","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.20000005},"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":"0x0deae780"},"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":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}}}}}} +{"ts":575501701,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":10,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155d70","n":"tree"},{"t":"ptr","v":"0x0e12d758","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deaf4e8"},"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":"0x0deaf4e8"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"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":6},"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":"0x0deaeb28"},"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":"0x0deaeb28"},"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"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":"0x0deaed98"},"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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7b28"},"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":"0x0deb7b28"},"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":"0x0deb8620"},"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":"0x0deb8620"},"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":"0x0deb79f0"},"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":"0x0deb79f0"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2520"},"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":"0x0deb2520"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"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":"0x0deb3b10"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"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":"0x040217b8"},"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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"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":"0x03efdf70"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"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":"0x03efcd28"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"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":"0x0deb4c78"},"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"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":"0x03eeeab0"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"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":"0x03efd208"},"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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03f015c0"},"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":"0x03f015c0"},"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03eff480"},"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":"0x03eff480"},"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":"0x03f01218"},"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":"0x03f01218"},"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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}}}} +{"ts":575513848,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":12,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155b78","n":"tree"},{"t":"ptr","v":"0x0e12c7b8","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"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":"0x0deb2b38"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef26c0"},"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":"0x03ef26c0"},"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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03ef06b8"},"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":"0x03ef06b8"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb6538"},"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":"0x0deb6538"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x0deb9730"},"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":"0x0deb9730"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"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":"0x0deb7648"},"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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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"}}}}}} +{"ts":575525636,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":13,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e156240","n":"tree"},{"t":"ptr","v":"0x0e12b048","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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"}}}}}} +{"ts":602051007,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":14,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155d70","n":"tree"},{"t":"ptr","v":"0x0e12d758","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","n":"rng"},{"t":"i32","v":357,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":3},"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":13000},"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[6]":{"before":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deaf4e8"},"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":"0x0deaf4e8"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"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":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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"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":6},"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":"0x0deaeb28"},"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":"0x0deaeb28"},"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"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"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7b28"},"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":"0x0deb7b28"},"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":"0x0deb8620"},"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":"0x0deb8620"},"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":"0x0deb79f0"},"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":"0x0deb79f0"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2520"},"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":"0x0deb2520"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"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":"0x0deb3b10"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"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":"0x040217b8"},"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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"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":"0x03efdf70"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"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":"0x03efcd28"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"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":"0x0deb4c78"},"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"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":"0x03eeeab0"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"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":"0x03efd208"},"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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03f015c0"},"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":"0x03f015c0"},"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03eff480"},"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":"0x03eff480"},"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":"0x03f01218"},"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":"0x03f01218"},"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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}}}} +{"ts":602063746,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":15,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155b78","n":"tree"},{"t":"ptr","v":"0x0e12c7b8","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","n":"rng"},{"t":"i32","v":356,"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":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}}}},"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"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":"0x0deb2b38"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef26c0"},"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":"0x03ef26c0"},"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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03ef06b8"},"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":"0x03ef06b8"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb6538"},"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":"0x0deb6538"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x0deb9730"},"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":"0x0deb9730"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"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":"0x0deb7648"},"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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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"}}}}}} +{"ts":602075974,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":16,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e156240","n":"tree"},{"t":"ptr","v":"0x0e12b048","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","n":"rng"},{"t":"i32","v":356,"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":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}}}},"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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"}}}}}} +{"ts":628627012,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":17,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155d70","n":"tree"},{"t":"ptr","v":"0x0e12d758","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","n":"rng"},{"t":"i32","v":338,"n":"rng_left_in"},{"t":"list","v":[{"t":"struct","v":{"tech_id":{"t":"i32","v":3},"points":{"t":"i32","v":2032}}}],"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":338},"next_index":{"t":"i64","v":286}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":337},"next_index":{"t":"i64","v":287}}}},"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec0c0"},"kids_end":{"t":"ptr","v":"0x0e1ec0c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":13000},"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"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ebfd0"},"kids_end":{"t":"ptr","v":"0x0e1ebfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":5119},"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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deaf4e8"},"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":"0x0deaf4e8"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1193f0"},"kids_end":{"t":"ptr","v":"0x0e1193fc"},"kids_cap":{"t":"ptr","v":"0x0e1193fc"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec100"},"kids_end":{"t":"ptr","v":"0x0e1ec104"},"kids_cap":{"t":"ptr","v":"0x0e1ec104"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"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":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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e1ec080"},"kids_end":{"t":"ptr","v":"0x0e1ec088"},"kids_cap":{"t":"ptr","v":"0x0e1ec088"},"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":6},"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":"0x0deaeb28"},"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":"0x0deaeb28"},"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ebf40"},"kids_end":{"t":"ptr","v":"0x0e1ebf44"},"kids_cap":{"t":"ptr","v":"0x0e1ebf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"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"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ebf50"},"kids_end":{"t":"ptr","v":"0x0e1ebf54"},"kids_cap":{"t":"ptr","v":"0x0e1ebf54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119468"},"kids_end":{"t":"ptr","v":"0x0e119474"},"kids_cap":{"t":"ptr","v":"0x0e119474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e1192b8"},"kids_end":{"t":"ptr","v":"0x0e1192c4"},"kids_cap":{"t":"ptr","v":"0x0e1192c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7b28"},"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":"0x0deb7b28"},"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":"0x0deb8620"},"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":"0x0deb8620"},"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":"0x0deb79f0"},"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":"0x0deb79f0"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec030"},"kids_end":{"t":"ptr","v":"0x0e1ec038"},"kids_cap":{"t":"ptr","v":"0x0e1ec038"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119498"},"kids_end":{"t":"ptr","v":"0x0e1194a4"},"kids_cap":{"t":"ptr","v":"0x0e1194a4"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec090"},"kids_end":{"t":"ptr","v":"0x0e1ec094"},"kids_cap":{"t":"ptr","v":"0x0e1ec094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1ec070"},"kids_end":{"t":"ptr","v":"0x0e1ec078"},"kids_cap":{"t":"ptr","v":"0x0e1ec078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119378"},"kids_end":{"t":"ptr","v":"0x0e119384"},"kids_cap":{"t":"ptr","v":"0x0e119384"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e119360"},"kids_end":{"t":"ptr","v":"0x0e11936c"},"kids_cap":{"t":"ptr","v":"0x0e11936c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1ec0e0"},"kids_end":{"t":"ptr","v":"0x0e1ec0e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2520"},"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":"0x0deb2520"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119318"},"kids_end":{"t":"ptr","v":"0x0e119324"},"kids_cap":{"t":"ptr","v":"0x0e119324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ec0b0"},"kids_end":{"t":"ptr","v":"0x0e1ec0b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ec050"},"kids_end":{"t":"ptr","v":"0x0e1ec054"},"kids_cap":{"t":"ptr","v":"0x0e1ec054"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ebfe0"},"kids_end":{"t":"ptr","v":"0x0e1ebfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ebf10"},"kids_end":{"t":"ptr","v":"0x0e1ebf14"},"kids_cap":{"t":"ptr","v":"0x0e1ebf14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"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":"0x0deb3b10"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119288"},"kids_end":{"t":"ptr","v":"0x0e119294"},"kids_cap":{"t":"ptr","v":"0x0e119294"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ebf20"},"kids_end":{"t":"ptr","v":"0x0e1ebf24"},"kids_cap":{"t":"ptr","v":"0x0e1ebf24"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ebf90"},"kids_end":{"t":"ptr","v":"0x0e1ebf94"},"kids_cap":{"t":"ptr","v":"0x0e1ebf94"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ebf60"},"kids_end":{"t":"ptr","v":"0x0e1ebf64"},"kids_cap":{"t":"ptr","v":"0x0e1ebf64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec010"},"kids_end":{"t":"ptr","v":"0x0e1ec014"},"kids_cap":{"t":"ptr","v":"0x0e1ec014"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ebfa0"},"kids_end":{"t":"ptr","v":"0x0e1ebfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfa4"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec000"},"kids_end":{"t":"ptr","v":"0x0e1ec004"},"kids_cap":{"t":"ptr","v":"0x0e1ec004"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ebff0"},"kids_end":{"t":"ptr","v":"0x0e1ebff4"},"kids_cap":{"t":"ptr","v":"0x0e1ebff4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e1193d8"},"kids_end":{"t":"ptr","v":"0x0e1193e4"},"kids_cap":{"t":"ptr","v":"0x0e1193e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e1ebf30"},"kids_end":{"t":"ptr","v":"0x0e1ebf38"},"kids_cap":{"t":"ptr","v":"0x0e1ebf38"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec0a0"},"kids_end":{"t":"ptr","v":"0x0e1ec0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ec020"},"kids_end":{"t":"ptr","v":"0x0e1ec028"},"kids_cap":{"t":"ptr","v":"0x0e1ec028"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ec040"},"kids_end":{"t":"ptr","v":"0x0e1ec044"},"kids_cap":{"t":"ptr","v":"0x0e1ec044"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e1ec0d0"},"kids_end":{"t":"ptr","v":"0x0e1ec0d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119408"},"kids_end":{"t":"ptr","v":"0x0e119414"},"kids_cap":{"t":"ptr","v":"0x0e119414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e1c0318"},"kids_end":{"t":"ptr","v":"0x0e1c0338"},"kids_cap":{"t":"ptr","v":"0x0e1c0338"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ebf70"},"kids_end":{"t":"ptr","v":"0x0e1ebf74"},"kids_cap":{"t":"ptr","v":"0x0e1ebf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ebf80"},"kids_end":{"t":"ptr","v":"0x0e1ebf84"},"kids_cap":{"t":"ptr","v":"0x0e1ebf84"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e1ec060"},"kids_end":{"t":"ptr","v":"0x0e1ec068"},"kids_cap":{"t":"ptr","v":"0x0e1ec068"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ebfc0"},"kids_end":{"t":"ptr","v":"0x0e1ebfc4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfc4"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ec0f0"},"kids_end":{"t":"ptr","v":"0x0e1ec0f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec0f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ebfb0"},"kids_end":{"t":"ptr","v":"0x0e1ebfb4"},"kids_cap":{"t":"ptr","v":"0x0e1ebfb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec120"},"kids_end":{"t":"ptr","v":"0x0e1ec124"},"kids_cap":{"t":"ptr","v":"0x0e1ec124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ec180"},"kids_end":{"t":"ptr","v":"0x0e1ec188"},"kids_cap":{"t":"ptr","v":"0x0e1ec188"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ec1b0"},"kids_end":{"t":"ptr","v":"0x0e1ec1b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad208"},"kids_end":{"t":"ptr","v":"0x0e0ad21c"},"kids_cap":{"t":"ptr","v":"0x0e0ad21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e1192a0"},"kids_end":{"t":"ptr","v":"0x0e1192ac"},"kids_cap":{"t":"ptr","v":"0x0e1192ac"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ec2b0"},"kids_end":{"t":"ptr","v":"0x0e1ec2b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ec1c0"},"kids_end":{"t":"ptr","v":"0x0e1ec1c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ec1d0"},"kids_end":{"t":"ptr","v":"0x0e1ec1d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ec1a0"},"kids_end":{"t":"ptr","v":"0x0e1ec1a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119270"},"kids_end":{"t":"ptr","v":"0x0e11927c"},"kids_cap":{"t":"ptr","v":"0x0e11927c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"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":"0x040217b8"},"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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ec190"},"kids_end":{"t":"ptr","v":"0x0e1ec194"},"kids_cap":{"t":"ptr","v":"0x0e1ec194"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"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":"0x03efdf70"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119330"},"kids_end":{"t":"ptr","v":"0x0e11933c"},"kids_cap":{"t":"ptr","v":"0x0e11933c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e1ec290"},"kids_end":{"t":"ptr","v":"0x0e1ec298"},"kids_cap":{"t":"ptr","v":"0x0e1ec298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119348"},"kids_end":{"t":"ptr","v":"0x0e119358"},"kids_cap":{"t":"ptr","v":"0x0e119358"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1ec150"},"kids_end":{"t":"ptr","v":"0x0e1ec158"},"kids_cap":{"t":"ptr","v":"0x0e1ec158"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ec2c0"},"kids_end":{"t":"ptr","v":"0x0e1ec2c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119528"},"kids_end":{"t":"ptr","v":"0x0e119534"},"kids_cap":{"t":"ptr","v":"0x0e119534"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ec1e0"},"kids_end":{"t":"ptr","v":"0x0e1ec1e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ec160"},"kids_end":{"t":"ptr","v":"0x0e1ec164"},"kids_cap":{"t":"ptr","v":"0x0e1ec164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"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":"0x03efcd28"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e1ec210"},"kids_end":{"t":"ptr","v":"0x0e1ec214"},"kids_cap":{"t":"ptr","v":"0x0e1ec214"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e119390"},"kids_end":{"t":"ptr","v":"0x0e11939c"},"kids_cap":{"t":"ptr","v":"0x0e11939c"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ec170"},"kids_end":{"t":"ptr","v":"0x0e1ec174"},"kids_cap":{"t":"ptr","v":"0x0e1ec174"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ec1f0"},"kids_end":{"t":"ptr","v":"0x0e1ec1f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1ec200"},"kids_end":{"t":"ptr","v":"0x0e1ec204"},"kids_cap":{"t":"ptr","v":"0x0e1ec204"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ec2f0"},"kids_end":{"t":"ptr","v":"0x0e1ec2f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ec110"},"kids_end":{"t":"ptr","v":"0x0e1ec118"},"kids_cap":{"t":"ptr","v":"0x0e1ec118"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"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":"0x0deb4c78"},"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ec220"},"kids_end":{"t":"ptr","v":"0x0e1ec224"},"kids_cap":{"t":"ptr","v":"0x0e1ec224"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ec230"},"kids_end":{"t":"ptr","v":"0x0e1ec234"},"kids_cap":{"t":"ptr","v":"0x0e1ec234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ec240"},"kids_end":{"t":"ptr","v":"0x0e1ec244"},"kids_cap":{"t":"ptr","v":"0x0e1ec244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ec250"},"kids_end":{"t":"ptr","v":"0x0e1ec254"},"kids_cap":{"t":"ptr","v":"0x0e1ec254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ec260"},"kids_end":{"t":"ptr","v":"0x0e1ec264"},"kids_cap":{"t":"ptr","v":"0x0e1ec264"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ec280"},"kids_end":{"t":"ptr","v":"0x0e1ec284"},"kids_cap":{"t":"ptr","v":"0x0e1ec284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"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":"0x03eeeab0"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ec2a0"},"kids_end":{"t":"ptr","v":"0x0e1ec2a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2a4"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ec300"},"kids_end":{"t":"ptr","v":"0x0e1ec304"},"kids_cap":{"t":"ptr","v":"0x0e1ec304"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"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":"0x03efd208"},"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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1ec270"},"kids_end":{"t":"ptr","v":"0x0e1ec274"},"kids_cap":{"t":"ptr","v":"0x0e1ec274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e1ec130"},"kids_end":{"t":"ptr","v":"0x0e1ec138"},"kids_cap":{"t":"ptr","v":"0x0e1ec138"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ec2d0"},"kids_end":{"t":"ptr","v":"0x0e1ec2d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec2d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1ec2e0"},"kids_end":{"t":"ptr","v":"0x0e1ec2e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1ec140"},"kids_end":{"t":"ptr","v":"0x0e1ec148"},"kids_cap":{"t":"ptr","v":"0x0e1ec148"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1ec3c0"},"kids_end":{"t":"ptr","v":"0x0e1ec3c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1ec490"},"kids_end":{"t":"ptr","v":"0x0e1ec494"},"kids_cap":{"t":"ptr","v":"0x0e1ec494"},"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":"0x03f015c0"},"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":"0x03f015c0"},"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1193c0"},"kids_end":{"t":"ptr","v":"0x0e1193cc"},"kids_cap":{"t":"ptr","v":"0x0e1193cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1ec470"},"kids_end":{"t":"ptr","v":"0x0e1ec474"},"kids_cap":{"t":"ptr","v":"0x0e1ec474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e1ec310"},"kids_end":{"t":"ptr","v":"0x0e1ec318"},"kids_cap":{"t":"ptr","v":"0x0e1ec318"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1ec320"},"kids_end":{"t":"ptr","v":"0x0e1ec324"},"kids_cap":{"t":"ptr","v":"0x0e1ec324"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1ec4f0"},"kids_end":{"t":"ptr","v":"0x0e1ec4f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4f4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e119450"},"kids_end":{"t":"ptr","v":"0x0e119460"},"kids_cap":{"t":"ptr","v":"0x0e119460"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1ec360"},"kids_end":{"t":"ptr","v":"0x0e1ec368"},"kids_cap":{"t":"ptr","v":"0x0e1ec368"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1ec400"},"kids_end":{"t":"ptr","v":"0x0e1ec404"},"kids_cap":{"t":"ptr","v":"0x0e1ec404"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e119480"},"kids_end":{"t":"ptr","v":"0x0e119490"},"kids_cap":{"t":"ptr","v":"0x0e119490"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1ec330"},"kids_end":{"t":"ptr","v":"0x0e1ec338"},"kids_cap":{"t":"ptr","v":"0x0e1ec338"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1ec4b0"},"kids_end":{"t":"ptr","v":"0x0e1ec4b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4b4"},"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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e1ec350"},"kids_end":{"t":"ptr","v":"0x0e1ec354"},"kids_cap":{"t":"ptr","v":"0x0e1ec354"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e1ec480"},"kids_end":{"t":"ptr","v":"0x0e1ec488"},"kids_cap":{"t":"ptr","v":"0x0e1ec488"},"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":"0x03eff480"},"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":"0x03eff480"},"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":"0x03f01218"},"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":"0x03f01218"},"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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1ec430"},"kids_end":{"t":"ptr","v":"0x0e1ec434"},"kids_cap":{"t":"ptr","v":"0x0e1ec434"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1ec4c0"},"kids_end":{"t":"ptr","v":"0x0e1ec4c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4c8"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e119420"},"kids_end":{"t":"ptr","v":"0x0e119430"},"kids_cap":{"t":"ptr","v":"0x0e119430"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1ec500"},"kids_end":{"t":"ptr","v":"0x0e1ec504"},"kids_cap":{"t":"ptr","v":"0x0e1ec504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1ec460"},"kids_end":{"t":"ptr","v":"0x0e1ec464"},"kids_cap":{"t":"ptr","v":"0x0e1ec464"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1ec410"},"kids_end":{"t":"ptr","v":"0x0e1ec418"},"kids_cap":{"t":"ptr","v":"0x0e1ec418"},"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1ec3d0"},"kids_end":{"t":"ptr","v":"0x0e1ec3d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1ec340"},"kids_end":{"t":"ptr","v":"0x0e1ec344"},"kids_cap":{"t":"ptr","v":"0x0e1ec344"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1194b0"},"kids_end":{"t":"ptr","v":"0x0e1194bc"},"kids_cap":{"t":"ptr","v":"0x0e1194bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119438"},"kids_end":{"t":"ptr","v":"0x0e119444"},"kids_cap":{"t":"ptr","v":"0x0e119444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e1194c8"},"kids_end":{"t":"ptr","v":"0x0e1194d4"},"kids_cap":{"t":"ptr","v":"0x0e1194d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e1194f8"},"kids_end":{"t":"ptr","v":"0x0e119504"},"kids_cap":{"t":"ptr","v":"0x0e119504"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119510"},"kids_end":{"t":"ptr","v":"0x0e11951c"},"kids_cap":{"t":"ptr","v":"0x0e11951c"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad2c8"},"kids_end":{"t":"ptr","v":"0x0e0ad2e0"},"kids_cap":{"t":"ptr","v":"0x0e0ad2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e1ec3e0"},"kids_end":{"t":"ptr","v":"0x0e1ec3e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec3e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1ec4a0"},"kids_end":{"t":"ptr","v":"0x0e1ec4a8"},"kids_cap":{"t":"ptr","v":"0x0e1ec4a8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1ec420"},"kids_end":{"t":"ptr","v":"0x0e1ec428"},"kids_cap":{"t":"ptr","v":"0x0e1ec428"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1ec440"},"kids_end":{"t":"ptr","v":"0x0e1ec448"},"kids_cap":{"t":"ptr","v":"0x0e1ec448"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1ec370"},"kids_end":{"t":"ptr","v":"0x0e1ec374"},"kids_cap":{"t":"ptr","v":"0x0e1ec374"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1ec380"},"kids_end":{"t":"ptr","v":"0x0e1ec384"},"kids_cap":{"t":"ptr","v":"0x0e1ec384"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ec4d0"},"kids_end":{"t":"ptr","v":"0x0e1ec4d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1ec450"},"kids_end":{"t":"ptr","v":"0x0e1ec454"},"kids_cap":{"t":"ptr","v":"0x0e1ec454"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1ec3f0"},"kids_end":{"t":"ptr","v":"0x0e1ec3f4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1ec390"},"kids_end":{"t":"ptr","v":"0x0e1ec394"},"kids_cap":{"t":"ptr","v":"0x0e1ec394"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1ec4e0"},"kids_end":{"t":"ptr","v":"0x0e1ec4e4"},"kids_cap":{"t":"ptr","v":"0x0e1ec4e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1ec3a0"},"kids_end":{"t":"ptr","v":"0x0e1ec3a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1ec3b0"},"kids_end":{"t":"ptr","v":"0x0e1ec3b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec3b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1ec670"},"kids_end":{"t":"ptr","v":"0x0e1ec674"},"kids_cap":{"t":"ptr","v":"0x0e1ec674"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1ec580"},"kids_end":{"t":"ptr","v":"0x0e1ec584"},"kids_cap":{"t":"ptr","v":"0x0e1ec584"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}}}} +{"ts":628642454,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":18,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e155b78","n":"tree"},{"t":"ptr","v":"0x0e12c7b8","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","n":"rng"},{"t":"i32","v":337,"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":337},"next_index":{"t":"i64","v":287}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":337},"next_index":{"t":"i64","v":287}}}},"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ecbf0"},"kids_end":{"t":"ptr","v":"0x0e1ecbf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ecb50"},"kids_end":{"t":"ptr","v":"0x0e1ecb54"},"kids_cap":{"t":"ptr","v":"0x0e1ecb54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ecc00"},"kids_end":{"t":"ptr","v":"0x0e1ecc04"},"kids_cap":{"t":"ptr","v":"0x0e1ecc04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ecc10"},"kids_end":{"t":"ptr","v":"0x0e1ecc18"},"kids_cap":{"t":"ptr","v":"0x0e1ecc18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ecb60"},"kids_end":{"t":"ptr","v":"0x0e1ecb68"},"kids_cap":{"t":"ptr","v":"0x0e1ecb68"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ecc20"},"kids_end":{"t":"ptr","v":"0x0e1ecc24"},"kids_cap":{"t":"ptr","v":"0x0e1ecc24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ecc30"},"kids_end":{"t":"ptr","v":"0x0e1ecc34"},"kids_cap":{"t":"ptr","v":"0x0e1ecc34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ecc50"},"kids_end":{"t":"ptr","v":"0x0e1ecc54"},"kids_cap":{"t":"ptr","v":"0x0e1ecc54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e1197f8"},"kids_end":{"t":"ptr","v":"0x0e119804"},"kids_cap":{"t":"ptr","v":"0x0e119804"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ecb10"},"kids_end":{"t":"ptr","v":"0x0e1ecb18"},"kids_cap":{"t":"ptr","v":"0x0e1ecb18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e119810"},"kids_end":{"t":"ptr","v":"0x0e119820"},"kids_cap":{"t":"ptr","v":"0x0e119820"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ecb70"},"kids_end":{"t":"ptr","v":"0x0e1ecb74"},"kids_cap":{"t":"ptr","v":"0x0e1ecb74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ecc60"},"kids_end":{"t":"ptr","v":"0x0e1ecc64"},"kids_cap":{"t":"ptr","v":"0x0e1ecc64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e119840"},"kids_end":{"t":"ptr","v":"0x0e11984c"},"kids_cap":{"t":"ptr","v":"0x0e11984c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1eccd0"},"kids_end":{"t":"ptr","v":"0x0e1eccd4"},"kids_cap":{"t":"ptr","v":"0x0e1eccd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ecc80"},"kids_end":{"t":"ptr","v":"0x0e1ecc84"},"kids_cap":{"t":"ptr","v":"0x0e1ecc84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ecb90"},"kids_end":{"t":"ptr","v":"0x0e1ecb94"},"kids_cap":{"t":"ptr","v":"0x0e1ecb94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e119858"},"kids_end":{"t":"ptr","v":"0x0e119864"},"kids_cap":{"t":"ptr","v":"0x0e119864"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e119a68"},"kids_end":{"t":"ptr","v":"0x0e119a78"},"kids_cap":{"t":"ptr","v":"0x0e119a78"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ecce0"},"kids_end":{"t":"ptr","v":"0x0e1ecce4"},"kids_cap":{"t":"ptr","v":"0x0e1ecce4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ecbd0"},"kids_end":{"t":"ptr","v":"0x0e1ecbd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbd4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ecc90"},"kids_end":{"t":"ptr","v":"0x0e1ecc94"},"kids_cap":{"t":"ptr","v":"0x0e1ecc94"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1ecb20"},"kids_end":{"t":"ptr","v":"0x0e1ecb24"},"kids_cap":{"t":"ptr","v":"0x0e1ecb24"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ecd00"},"kids_end":{"t":"ptr","v":"0x0e1ecd08"},"kids_cap":{"t":"ptr","v":"0x0e1ecd08"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e119900"},"kids_end":{"t":"ptr","v":"0x0e11990c"},"kids_cap":{"t":"ptr","v":"0x0e11990c"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ecca0"},"kids_end":{"t":"ptr","v":"0x0e1ecca8"},"kids_cap":{"t":"ptr","v":"0x0e1ecca8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e1198a0"},"kids_end":{"t":"ptr","v":"0x0e1198ac"},"kids_cap":{"t":"ptr","v":"0x0e1198ac"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e119ab0"},"kids_end":{"t":"ptr","v":"0x0e119abc"},"kids_cap":{"t":"ptr","v":"0x0e119abc"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e1ecba0"},"kids_end":{"t":"ptr","v":"0x0e1ecba8"},"kids_cap":{"t":"ptr","v":"0x0e1ecba8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eccf0"},"kids_end":{"t":"ptr","v":"0x0e1eccf4"},"kids_cap":{"t":"ptr","v":"0x0e1eccf4"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1ecb30"},"kids_end":{"t":"ptr","v":"0x0e1ecb34"},"kids_cap":{"t":"ptr","v":"0x0e1ecb34"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e119870"},"kids_end":{"t":"ptr","v":"0x0e11987c"},"kids_cap":{"t":"ptr","v":"0x0e11987c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecbb0"},"kids_end":{"t":"ptr","v":"0x0e1ecbb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"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":"0x0deb2b38"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1ecbc0"},"kids_end":{"t":"ptr","v":"0x0e1ecbc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecbc4"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1ecef0"},"kids_end":{"t":"ptr","v":"0x0e1ecef4"},"kids_cap":{"t":"ptr","v":"0x0e1ecef4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ecde0"},"kids_end":{"t":"ptr","v":"0x0e1ecde4"},"kids_cap":{"t":"ptr","v":"0x0e1ecde4"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e119a80"},"kids_end":{"t":"ptr","v":"0x0e119a8c"},"kids_cap":{"t":"ptr","v":"0x0e119a8c"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ecdf0"},"kids_end":{"t":"ptr","v":"0x0e1ecdf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdf4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1ece00"},"kids_end":{"t":"ptr","v":"0x0e1ece04"},"kids_cap":{"t":"ptr","v":"0x0e1ece04"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1ece70"},"kids_end":{"t":"ptr","v":"0x0e1ece74"},"kids_cap":{"t":"ptr","v":"0x0e1ece74"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ece10"},"kids_end":{"t":"ptr","v":"0x0e1ece14"},"kids_cap":{"t":"ptr","v":"0x0e1ece14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1ecd10"},"kids_end":{"t":"ptr","v":"0x0e1ecd14"},"kids_cap":{"t":"ptr","v":"0x0e1ecd14"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ece90"},"kids_end":{"t":"ptr","v":"0x0e1ece94"},"kids_cap":{"t":"ptr","v":"0x0e1ece94"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ecd50"},"kids_end":{"t":"ptr","v":"0x0e1ecd54"},"kids_cap":{"t":"ptr","v":"0x0e1ecd54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e119a98"},"kids_end":{"t":"ptr","v":"0x0e119aa4"},"kids_cap":{"t":"ptr","v":"0x0e119aa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e119ae0"},"kids_end":{"t":"ptr","v":"0x0e119aec"},"kids_cap":{"t":"ptr","v":"0x0e119aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ece80"},"kids_end":{"t":"ptr","v":"0x0e1ece84"},"kids_cap":{"t":"ptr","v":"0x0e1ece84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecd40"},"kids_end":{"t":"ptr","v":"0x0e1ecd48"},"kids_cap":{"t":"ptr","v":"0x0e1ecd48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecd90"},"kids_end":{"t":"ptr","v":"0x0e1ecd94"},"kids_cap":{"t":"ptr","v":"0x0e1ecd94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad3c8"},"kids_end":{"t":"ptr","v":"0x0e0ad3dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e119b58"},"kids_end":{"t":"ptr","v":"0x0e119b64"},"kids_cap":{"t":"ptr","v":"0x0e119b64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03d70"},"kids_end":{"t":"ptr","v":"0x1ec03d94"},"kids_cap":{"t":"ptr","v":"0x1ec03d94"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e119918"},"kids_end":{"t":"ptr","v":"0x0e119924"},"kids_cap":{"t":"ptr","v":"0x0e119924"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef16e8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x0e1ecdd0"},"kids_end":{"t":"ptr","v":"0x0e1ecdd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef21e0"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x0e1ece20"},"kids_end":{"t":"ptr","v":"0x0e1ece28"},"kids_cap":{"t":"ptr","v":"0x0e1ece28"},"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":"0x03ef26c0"},"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":"0x03ef26c0"},"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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ecd70"},"kids_end":{"t":"ptr","v":"0x0e1ecd74"},"kids_cap":{"t":"ptr","v":"0x0e1ecd74"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ecd60"},"kids_end":{"t":"ptr","v":"0x0e1ecd64"},"kids_cap":{"t":"ptr","v":"0x0e1ecd64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecd80"},"kids_end":{"t":"ptr","v":"0x0e1ecd84"},"kids_cap":{"t":"ptr","v":"0x0e1ecd84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ecdc0"},"kids_end":{"t":"ptr","v":"0x0e1ecdc4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdc4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ece30"},"kids_end":{"t":"ptr","v":"0x0e1ece34"},"kids_cap":{"t":"ptr","v":"0x0e1ece34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1ecd20"},"kids_end":{"t":"ptr","v":"0x0e1ecd28"},"kids_cap":{"t":"ptr","v":"0x0e1ecd28"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1ecea0"},"kids_end":{"t":"ptr","v":"0x0e1ecea8"},"kids_cap":{"t":"ptr","v":"0x0e1ecea8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad748"},"kids_end":{"t":"ptr","v":"0x0e0ad75c"},"kids_cap":{"t":"ptr","v":"0x0e0ad75c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e119930"},"kids_end":{"t":"ptr","v":"0x0e11993c"},"kids_cap":{"t":"ptr","v":"0x0e11993c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecd30"},"kids_end":{"t":"ptr","v":"0x0e1ecd34"},"kids_cap":{"t":"ptr","v":"0x0e1ecd34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecda0"},"kids_end":{"t":"ptr","v":"0x0e1ecda4"},"kids_cap":{"t":"ptr","v":"0x0e1ecda4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e1ecdb0"},"kids_end":{"t":"ptr","v":"0x0e1ecdb4"},"kids_cap":{"t":"ptr","v":"0x0e1ecdb4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e1ecec0"},"kids_end":{"t":"ptr","v":"0x0e1ecec4"},"kids_cap":{"t":"ptr","v":"0x0e1ecec4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e1eced0"},"kids_end":{"t":"ptr","v":"0x0e1eced8"},"kids_cap":{"t":"ptr","v":"0x0e1eced8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e119960"},"kids_end":{"t":"ptr","v":"0x0e11996c"},"kids_cap":{"t":"ptr","v":"0x0e11996c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e1ece40"},"kids_end":{"t":"ptr","v":"0x0e1ece48"},"kids_cap":{"t":"ptr","v":"0x0e1ece48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e1ece50"},"kids_end":{"t":"ptr","v":"0x0e1ece58"},"kids_cap":{"t":"ptr","v":"0x0e1ece58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e1ece60"},"kids_end":{"t":"ptr","v":"0x0e1ece64"},"kids_cap":{"t":"ptr","v":"0x0e1ece64"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e119af8"},"kids_end":{"t":"ptr","v":"0x0e119b04"},"kids_cap":{"t":"ptr","v":"0x0e119b04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e119948"},"kids_end":{"t":"ptr","v":"0x0e119954"},"kids_cap":{"t":"ptr","v":"0x0e119954"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e119b40"},"kids_end":{"t":"ptr","v":"0x0e119b50"},"kids_cap":{"t":"ptr","v":"0x0e119b50"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e1eceb0"},"kids_end":{"t":"ptr","v":"0x0e1eceb8"},"kids_cap":{"t":"ptr","v":"0x0e1eceb8"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e1ecee0"},"kids_end":{"t":"ptr","v":"0x0e1ecee4"},"kids_cap":{"t":"ptr","v":"0x0e1ecee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e119990"},"kids_end":{"t":"ptr","v":"0x0e11999c"},"kids_cap":{"t":"ptr","v":"0x0e11999c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e1ecf00"},"kids_end":{"t":"ptr","v":"0x0e1ecf04"},"kids_cap":{"t":"ptr","v":"0x0e1ecf04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e1ed090"},"kids_end":{"t":"ptr","v":"0x0e1ed094"},"kids_cap":{"t":"ptr","v":"0x0e1ed094"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e1ecf70"},"kids_end":{"t":"ptr","v":"0x0e1ecf74"},"kids_cap":{"t":"ptr","v":"0x0e1ecf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e1ecf60"},"kids_end":{"t":"ptr","v":"0x0e1ecf68"},"kids_cap":{"t":"ptr","v":"0x0e1ecf68"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e1ecf20"},"kids_end":{"t":"ptr","v":"0x0e1ecf24"},"kids_cap":{"t":"ptr","v":"0x0e1ecf24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e1ed080"},"kids_end":{"t":"ptr","v":"0x0e1ed088"},"kids_cap":{"t":"ptr","v":"0x0e1ed088"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e1199a8"},"kids_end":{"t":"ptr","v":"0x0e1199b4"},"kids_cap":{"t":"ptr","v":"0x0e1199b4"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e1ed060"},"kids_end":{"t":"ptr","v":"0x0e1ed064"},"kids_cap":{"t":"ptr","v":"0x0e1ed064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e1ed070"},"kids_end":{"t":"ptr","v":"0x0e1ed078"},"kids_cap":{"t":"ptr","v":"0x0e1ed078"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e1ed0a0"},"kids_end":{"t":"ptr","v":"0x0e1ed0a4"},"kids_cap":{"t":"ptr","v":"0x0e1ed0a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e1ecfb0"},"kids_end":{"t":"ptr","v":"0x0e1ecfb8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfb8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e1ecf10"},"kids_end":{"t":"ptr","v":"0x0e1ecf18"},"kids_cap":{"t":"ptr","v":"0x0e1ecf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e1ecf80"},"kids_end":{"t":"ptr","v":"0x0e1ecf88"},"kids_cap":{"t":"ptr","v":"0x0e1ecf88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e1ed010"},"kids_end":{"t":"ptr","v":"0x0e1ed018"},"kids_cap":{"t":"ptr","v":"0x0e1ed018"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e1ecf30"},"kids_end":{"t":"ptr","v":"0x0e1ecf34"},"kids_cap":{"t":"ptr","v":"0x0e1ecf34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e1ecf40"},"kids_end":{"t":"ptr","v":"0x0e1ecf44"},"kids_cap":{"t":"ptr","v":"0x0e1ecf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e1ecff0"},"kids_end":{"t":"ptr","v":"0x0e1ecff8"},"kids_cap":{"t":"ptr","v":"0x0e1ecff8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e1ecf50"},"kids_end":{"t":"ptr","v":"0x0e1ecf58"},"kids_cap":{"t":"ptr","v":"0x0e1ecf58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e1ed020"},"kids_end":{"t":"ptr","v":"0x0e1ed024"},"kids_cap":{"t":"ptr","v":"0x0e1ed024"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e1ecf90"},"kids_end":{"t":"ptr","v":"0x0e1ecf94"},"kids_cap":{"t":"ptr","v":"0x0e1ecf94"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e1ed000"},"kids_end":{"t":"ptr","v":"0x0e1ed008"},"kids_cap":{"t":"ptr","v":"0x0e1ed008"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e1ecfa0"},"kids_end":{"t":"ptr","v":"0x0e1ecfa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e1ed030"},"kids_end":{"t":"ptr","v":"0x0e1ed034"},"kids_cap":{"t":"ptr","v":"0x0e1ed034"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e1ecfc0"},"kids_end":{"t":"ptr","v":"0x0e1ecfc8"},"kids_cap":{"t":"ptr","v":"0x0e1ecfc8"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e1ecfd0"},"kids_end":{"t":"ptr","v":"0x0e1ecfd4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e1ecfe0"},"kids_end":{"t":"ptr","v":"0x0e1ecfe4"},"kids_cap":{"t":"ptr","v":"0x0e1ecfe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e1199c0"},"kids_end":{"t":"ptr","v":"0x0e1199cc"},"kids_cap":{"t":"ptr","v":"0x0e1199cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e119888"},"kids_end":{"t":"ptr","v":"0x0e119898"},"kids_cap":{"t":"ptr","v":"0x0e119898"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e1ed040"},"kids_end":{"t":"ptr","v":"0x0e1ed048"},"kids_cap":{"t":"ptr","v":"0x0e1ed048"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e1ed050"},"kids_end":{"t":"ptr","v":"0x0e1ed058"},"kids_cap":{"t":"ptr","v":"0x0e1ed058"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e1eb1f0"},"kids_end":{"t":"ptr","v":"0x0e1eb1f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e1eb290"},"kids_end":{"t":"ptr","v":"0x0e1eb298"},"kids_cap":{"t":"ptr","v":"0x0e1eb298"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e1eb2b0"},"kids_end":{"t":"ptr","v":"0x0e1eb2b8"},"kids_cap":{"t":"ptr","v":"0x0e1eb2b8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e1eb190"},"kids_end":{"t":"ptr","v":"0x0e1eb198"},"kids_cap":{"t":"ptr","v":"0x0e1eb198"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e1eb180"},"kids_end":{"t":"ptr","v":"0x0e1eb184"},"kids_cap":{"t":"ptr","v":"0x0e1eb184"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e1eb200"},"kids_end":{"t":"ptr","v":"0x0e1eb204"},"kids_cap":{"t":"ptr","v":"0x0e1eb204"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e1eb260"},"kids_end":{"t":"ptr","v":"0x0e1eb268"},"kids_cap":{"t":"ptr","v":"0x0e1eb268"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e1eb2a0"},"kids_end":{"t":"ptr","v":"0x0e1eb2a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e1198b8"},"kids_end":{"t":"ptr","v":"0x0e1198c4"},"kids_cap":{"t":"ptr","v":"0x0e1198c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e1eb1a0"},"kids_end":{"t":"ptr","v":"0x0e1eb1a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1a4"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad6c8"},"kids_end":{"t":"ptr","v":"0x0e0ad6dc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e1eb1b0"},"kids_end":{"t":"ptr","v":"0x0e1eb1b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e1eb270"},"kids_end":{"t":"ptr","v":"0x0e1eb274"},"kids_cap":{"t":"ptr","v":"0x0e1eb274"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e1eb1c0"},"kids_end":{"t":"ptr","v":"0x0e1eb1c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e1eb280"},"kids_end":{"t":"ptr","v":"0x0e1eb284"},"kids_cap":{"t":"ptr","v":"0x0e1eb284"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e1eb1d0"},"kids_end":{"t":"ptr","v":"0x0e1eb1d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1d4"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e1198d0"},"kids_end":{"t":"ptr","v":"0x0e1198e0"},"kids_cap":{"t":"ptr","v":"0x0e1198e0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e1198e8"},"kids_end":{"t":"ptr","v":"0x0e1198f4"},"kids_cap":{"t":"ptr","v":"0x0e1198f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03ef06b8"},"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":"0x03ef06b8"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e1eb160"},"kids_end":{"t":"ptr","v":"0x0e1eb164"},"kids_cap":{"t":"ptr","v":"0x0e1eb164"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e1eb1e0"},"kids_end":{"t":"ptr","v":"0x0e1eb1e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb1e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e1199d8"},"kids_end":{"t":"ptr","v":"0x0e1199e8"},"kids_cap":{"t":"ptr","v":"0x0e1199e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e1eb210"},"kids_end":{"t":"ptr","v":"0x0e1eb218"},"kids_cap":{"t":"ptr","v":"0x0e1eb218"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e1eb2c0"},"kids_end":{"t":"ptr","v":"0x0e1eb2c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2c4"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e1eb2d0"},"kids_end":{"t":"ptr","v":"0x0e1eb2d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e119978"},"kids_end":{"t":"ptr","v":"0x0e119984"},"kids_cap":{"t":"ptr","v":"0x0e119984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e1eb220"},"kids_end":{"t":"ptr","v":"0x0e1eb228"},"kids_cap":{"t":"ptr","v":"0x0e1eb228"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad888"},"kids_end":{"t":"ptr","v":"0x0e0ad89c"},"kids_cap":{"t":"ptr","v":"0x0e0ad89c"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e1eb230"},"kids_end":{"t":"ptr","v":"0x0e1eb234"},"kids_cap":{"t":"ptr","v":"0x0e1eb234"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e1eb140"},"kids_end":{"t":"ptr","v":"0x0e1eb144"},"kids_cap":{"t":"ptr","v":"0x0e1eb144"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e1eb240"},"kids_end":{"t":"ptr","v":"0x0e1eb244"},"kids_cap":{"t":"ptr","v":"0x0e1eb244"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e1eb2e0"},"kids_end":{"t":"ptr","v":"0x0e1eb2e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e1eb250"},"kids_end":{"t":"ptr","v":"0x0e1eb254"},"kids_cap":{"t":"ptr","v":"0x0e1eb254"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e1eb300"},"kids_end":{"t":"ptr","v":"0x0e1eb308"},"kids_cap":{"t":"ptr","v":"0x0e1eb308"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad708"},"kids_end":{"t":"ptr","v":"0x0e0ad71c"},"kids_cap":{"t":"ptr","v":"0x0e0ad71c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e1eb2f0"},"kids_end":{"t":"ptr","v":"0x0e1eb2f4"},"kids_cap":{"t":"ptr","v":"0x0e1eb2f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e1eb110"},"kids_end":{"t":"ptr","v":"0x0e1eb114"},"kids_cap":{"t":"ptr","v":"0x0e1eb114"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e1eb120"},"kids_end":{"t":"ptr","v":"0x0e1eb124"},"kids_cap":{"t":"ptr","v":"0x0e1eb124"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e1eb130"},"kids_end":{"t":"ptr","v":"0x0e1eb138"},"kids_cap":{"t":"ptr","v":"0x0e1eb138"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e1eb150"},"kids_end":{"t":"ptr","v":"0x0e1eb158"},"kids_cap":{"t":"ptr","v":"0x0e1eb158"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e1eb170"},"kids_end":{"t":"ptr","v":"0x0e1eb178"},"kids_cap":{"t":"ptr","v":"0x0e1eb178"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e1eb7a0"},"kids_end":{"t":"ptr","v":"0x0e1eb7a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb7a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb6538"},"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":"0x0deb6538"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e1eb820"},"kids_end":{"t":"ptr","v":"0x0e1eb824"},"kids_cap":{"t":"ptr","v":"0x0e1eb824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e1199f0"},"kids_end":{"t":"ptr","v":"0x0e1199fc"},"kids_cap":{"t":"ptr","v":"0x0e1199fc"},"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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e119a08"},"kids_end":{"t":"ptr","v":"0x0e119a14"},"kids_cap":{"t":"ptr","v":"0x0e119a14"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e119ac8"},"kids_end":{"t":"ptr","v":"0x0e119ad4"},"kids_cap":{"t":"ptr","v":"0x0e119ad4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119a20"},"kids_end":{"t":"ptr","v":"0x0e119a2c"},"kids_cap":{"t":"ptr","v":"0x0e119a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e119a38"},"kids_end":{"t":"ptr","v":"0x0e119a44"},"kids_cap":{"t":"ptr","v":"0x0e119a44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x0deb9730"},"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":"0x0deb9730"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad5a8"},"kids_end":{"t":"ptr","v":"0x0e0ad5c0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"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":"0x0deb7648"},"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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e1eba40"},"kids_end":{"t":"ptr","v":"0x0e1eba48"},"kids_cap":{"t":"ptr","v":"0x0e1eba48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e1eb980"},"kids_end":{"t":"ptr","v":"0x0e1eb988"},"kids_cap":{"t":"ptr","v":"0x0e1eb988"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e1eba90"},"kids_end":{"t":"ptr","v":"0x0e1eba98"},"kids_cap":{"t":"ptr","v":"0x0e1eba98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7168"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x0e1eb910"},"kids_end":{"t":"ptr","v":"0x0e1eb918"},"kids_cap":{"t":"ptr","v":"0x0e1eb918"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e1eba60"},"kids_end":{"t":"ptr","v":"0x0e1eba64"},"kids_cap":{"t":"ptr","v":"0x0e1eba64"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e1eb960"},"kids_end":{"t":"ptr","v":"0x0e1eb964"},"kids_cap":{"t":"ptr","v":"0x0e1eb964"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e1ebae0"},"kids_end":{"t":"ptr","v":"0x0e1ebae4"},"kids_cap":{"t":"ptr","v":"0x0e1ebae4"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e1eb9e0"},"kids_end":{"t":"ptr","v":"0x0e1eb9e4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e1eb990"},"kids_end":{"t":"ptr","v":"0x0e1eb994"},"kids_cap":{"t":"ptr","v":"0x0e1eb994"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e1eba80"},"kids_end":{"t":"ptr","v":"0x0e1eba84"},"kids_cap":{"t":"ptr","v":"0x0e1eba84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e1eba20"},"kids_end":{"t":"ptr","v":"0x0e1eba24"},"kids_cap":{"t":"ptr","v":"0x0e1eba24"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e1eb9a0"},"kids_end":{"t":"ptr","v":"0x0e1eb9a4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e1eb9b0"},"kids_end":{"t":"ptr","v":"0x0e1eb9b4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9b4"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e1eb9c0"},"kids_end":{"t":"ptr","v":"0x0e1eb9c4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e1eb9d0"},"kids_end":{"t":"ptr","v":"0x0e1eb9d4"},"kids_cap":{"t":"ptr","v":"0x0e1eb9d4"},"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"}}}}}} +{"ts":628654121,"hook":"Game::TechTree::ProcessResearch","mode":"trace","call_id":19,"thread":6168,"depth":0,"args":[{"t":"ptr","v":"0x0e156240","n":"tree"},{"t":"ptr","v":"0x0e12b048","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e1734f0","n":"rng"},{"t":"i32","v":337,"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":337},"next_index":{"t":"i64","v":287}}},"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":337},"next_index":{"t":"i64","v":287}}}},"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004cb8"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x0e1ec8b0"},"kids_end":{"t":"ptr","v":"0x0e1ec8b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec8b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf008"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x0e1ec820"},"kids_end":{"t":"ptr","v":"0x0e1ec824"},"kids_cap":{"t":"ptr","v":"0x0e1ec824"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf890"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x0e1ec840"},"kids_end":{"t":"ptr","v":"0x0e1ec844"},"kids_cap":{"t":"ptr","v":"0x0e1ec844"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae3d8"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x0e1ec8c0"},"kids_end":{"t":"ptr","v":"0x0e1ec8c8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8c8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf758"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x0e1ec8d0"},"kids_end":{"t":"ptr","v":"0x0e1ec8d8"},"kids_cap":{"t":"ptr","v":"0x0e1ec8d8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae168"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x0e1ec900"},"kids_end":{"t":"ptr","v":"0x0e1ec904"},"kids_cap":{"t":"ptr","v":"0x0e1ec904"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deafc38"},"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":"0x0deafc38"},"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":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deafb00"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x0e1ec710"},"kids_end":{"t":"ptr","v":"0x0e1ec714"},"kids_cap":{"t":"ptr","v":"0x0e1ec714"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf4e8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x0e1ec720"},"kids_end":{"t":"ptr","v":"0x0e1ec724"},"kids_cap":{"t":"ptr","v":"0x0e1ec724"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deae780"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e11a830"},"kids_end":{"t":"ptr","v":"0x0e11a83c"},"kids_cap":{"t":"ptr","v":"0x0e11a83c"},"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":"0x0deaf278"},"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":"0x0deaf278"},"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":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaf9c8"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x0e1ec730"},"kids_end":{"t":"ptr","v":"0x0e1ec738"},"kids_cap":{"t":"ptr","v":"0x0e1ec738"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae9f0"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e11a890"},"kids_end":{"t":"ptr","v":"0x0e11a8a0"},"kids_cap":{"t":"ptr","v":"0x0e11a8a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeb28"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x0e1ec740"},"kids_end":{"t":"ptr","v":"0x0e1ec744"},"kids_cap":{"t":"ptr","v":"0x0e1ec744"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020f68"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x0e1ec7d0"},"kids_end":{"t":"ptr","v":"0x0e1ec7d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaec60"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e11a860"},"kids_end":{"t":"ptr","v":"0x0e11a86c"},"kids_cap":{"t":"ptr","v":"0x0e11a86c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaeed0"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x0e1ec750"},"kids_end":{"t":"ptr","v":"0x0e1ec754"},"kids_cap":{"t":"ptr","v":"0x0e1ec754"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae2a0"},"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":"0x0deae2a0"},"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":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deaed98"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x0e1ec770"},"kids_end":{"t":"ptr","v":"0x0e1ec774"},"kids_cap":{"t":"ptr","v":"0x0e1ec774"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deae8b8"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x0e1ec780"},"kids_end":{"t":"ptr","v":"0x0e1ec784"},"kids_cap":{"t":"ptr","v":"0x0e1ec784"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deae510"},"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":"0x0deae510"},"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":"0x0deb3d80"},"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":"0x0deb3d80"},"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":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb3c48"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e11a848"},"kids_end":{"t":"ptr","v":"0x0e11a854"},"kids_cap":{"t":"ptr","v":"0x0e11a854"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb67a8"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e11a920"},"kids_end":{"t":"ptr","v":"0x0e11a930"},"kids_cap":{"t":"ptr","v":"0x0e11a930"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb7b28"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x0e1ec790"},"kids_end":{"t":"ptr","v":"0x0e1ec794"},"kids_cap":{"t":"ptr","v":"0x0e1ec794"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb8620"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x0e1ec7a0"},"kids_end":{"t":"ptr","v":"0x0e1ec7a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec7a4"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb79f0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x0e1ec910"},"kids_end":{"t":"ptr","v":"0x0e1ec914"},"kids_cap":{"t":"ptr","v":"0x0e1ec914"},"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":"0x0deb7c60"},"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":"0x0deb7c60"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb78b8"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x0e1eca10"},"kids_end":{"t":"ptr","v":"0x0e1eca14"},"kids_cap":{"t":"ptr","v":"0x0e1eca14"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3018"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x0e1ec9e0"},"kids_end":{"t":"ptr","v":"0x0e1ec9e8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9e8"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb3630"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e11a968"},"kids_end":{"t":"ptr","v":"0x0e11a974"},"kids_cap":{"t":"ptr","v":"0x0e11a974"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb2178"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x0e1ec9f0"},"kids_end":{"t":"ptr","v":"0x0e1ec9f8"},"kids_cap":{"t":"ptr","v":"0x0e1ec9f8"},"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":"0x0deb38a0"},"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":"0x0deb38a0"},"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":"0x0deb2da8"},"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":"0x0deb2da8"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb2c70"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e11a950"},"kids_end":{"t":"ptr","v":"0x0e11a95c"},"kids_cap":{"t":"ptr","v":"0x0e11a95c"},"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":"0x0deb22b0"},"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":"0x0deb22b0"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deb3768"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e11aaa0"},"kids_end":{"t":"ptr","v":"0x0e11aaac"},"kids_cap":{"t":"ptr","v":"0x0e11aaac"},"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deaf140"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e11ad28"},"kids_end":{"t":"ptr","v":"0x0e11ad34"},"kids_cap":{"t":"ptr","v":"0x0e11ad34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb3150"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x0e1eca00"},"kids_end":{"t":"ptr","v":"0x0e1eca04"},"kids_cap":{"t":"ptr","v":"0x0e1eca04"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb2520"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x0e1eca20"},"kids_end":{"t":"ptr","v":"0x0e1eca24"},"kids_cap":{"t":"ptr","v":"0x0e1eca24"},"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":"0x0deb3288"},"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":"0x0deb3288"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb33c0"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e11ad40"},"kids_end":{"t":"ptr","v":"0x0e11ad4c"},"kids_cap":{"t":"ptr","v":"0x0e11ad4c"},"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":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb39d8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x0e1ecab0"},"kids_end":{"t":"ptr","v":"0x0e1ecab4"},"kids_cap":{"t":"ptr","v":"0x0e1ecab4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2b38"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x0e1ecaf0"},"kids_end":{"t":"ptr","v":"0x0e1ecaf4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x0deb2a00"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x0e1eca30"},"kids_end":{"t":"ptr","v":"0x0e1eca34"},"kids_cap":{"t":"ptr","v":"0x0e1eca34"},"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04021098"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x0e1eca40"},"kids_end":{"t":"ptr","v":"0x0e1eca44"},"kids_cap":{"t":"ptr","v":"0x0e1eca44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2040"},"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":"0x0deb2040"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb3b10"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x0e1ec920"},"kids_end":{"t":"ptr","v":"0x0e1ec924"},"kids_cap":{"t":"ptr","v":"0x0e1ec924"},"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":"0x0deb34f8"},"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":"0x0deb34f8"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb23e8"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e11ad58"},"kids_end":{"t":"ptr","v":"0x0e11ad64"},"kids_cap":{"t":"ptr","v":"0x0e11ad64"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6670"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x0e1ec9c0"},"kids_end":{"t":"ptr","v":"0x0e1ec9c4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9c4"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb6b50"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x0e1eca50"},"kids_end":{"t":"ptr","v":"0x0e1eca54"},"kids_cap":{"t":"ptr","v":"0x0e1eca54"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb9d48"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x0e1eca60"},"kids_end":{"t":"ptr","v":"0x0e1eca64"},"kids_cap":{"t":"ptr","v":"0x0e1eca64"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb89c8"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x0e1ec930"},"kids_end":{"t":"ptr","v":"0x0e1ec934"},"kids_cap":{"t":"ptr","v":"0x0e1ec934"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb7ed0"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x0e1eca70"},"kids_end":{"t":"ptr","v":"0x0e1eca74"},"kids_cap":{"t":"ptr","v":"0x0e1eca74"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb95f8"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x0e1ec940"},"kids_end":{"t":"ptr","v":"0x0e1ec944"},"kids_cap":{"t":"ptr","v":"0x0e1ec944"},"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":"0x0deb3eb8"},"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":"0x0deb3eb8"},"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":"0x0deb5ec0"},"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":"0x0deb5ec0"},"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":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb43f0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x0e1ec950"},"kids_end":{"t":"ptr","v":"0x0e1ec954"},"kids_cap":{"t":"ptr","v":"0x0e1ec954"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4048"},"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":"0x0deb4048"},"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":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb59e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e11aab8"},"kids_end":{"t":"ptr","v":"0x0e11aac4"},"kids_cap":{"t":"ptr","v":"0x0e11aac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb48d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e11af80"},"kids_end":{"t":"ptr","v":"0x0e11af8c"},"kids_cap":{"t":"ptr","v":"0x0e11af8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4a08"},"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":"0x0deb4a08"},"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":"0x0deb4b40"},"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":"0x0deb4b40"},"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040211c8"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x0e1ec9d0"},"kids_end":{"t":"ptr","v":"0x0e1ec9d4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb4528"},"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":"0x0deb4528"},"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":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5b18"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x0e1ecac0"},"kids_end":{"t":"ptr","v":"0x0e1ecac8"},"kids_cap":{"t":"ptr","v":"0x0e1ecac8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4db0"},"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":"0x0deb4db0"},"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":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4798"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x0e1ecad0"},"kids_end":{"t":"ptr","v":"0x0e1ecad8"},"kids_cap":{"t":"ptr","v":"0x0e1ecad8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef2588"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e0ad568"},"kids_end":{"t":"ptr","v":"0x0e0ad57c"},"kids_cap":{"t":"ptr","v":"0x0e0ad57c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eef6e0"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e11afb0"},"kids_end":{"t":"ptr","v":"0x0e11afbc"},"kids_cap":{"t":"ptr","v":"0x0e11afbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef1d00"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x1ec03ef0"},"kids_end":{"t":"ptr","v":"0x1ec03f14"},"kids_cap":{"t":"ptr","v":"0x1ec03f14"},"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef20a8"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x0e1ec960"},"kids_end":{"t":"ptr","v":"0x0e1ec964"},"kids_cap":{"t":"ptr","v":"0x0e1ec964"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x03ef0848"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x0e1ec970"},"kids_end":{"t":"ptr","v":"0x0e1ec974"},"kids_cap":{"t":"ptr","v":"0x0e1ec974"},"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":"0x0deaf3b0"},"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":"0x0deaf3b0"},"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":"0x03ef0d28"},"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":"0x03ef0d28"},"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":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef0ab8"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e11afe0"},"kids_end":{"t":"ptr","v":"0x0e11afec"},"kids_cap":{"t":"ptr","v":"0x0e11afec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef818"},"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":"0x03eef818"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef0448"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x0e1ec990"},"kids_end":{"t":"ptr","v":"0x0e1ec994"},"kids_cap":{"t":"ptr","v":"0x0e1ec994"},"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":"0x03ef1478"},"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":"0x03ef1478"},"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":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef15b0"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x0e1ec980"},"kids_end":{"t":"ptr","v":"0x0e1ec984"},"kids_cap":{"t":"ptr","v":"0x0e1ec984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef1820"},"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":"0x03ef1820"},"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04020e38"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x0e1ecae0"},"kids_end":{"t":"ptr","v":"0x0e1ecae4"},"kids_cap":{"t":"ptr","v":"0x0e1ecae4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03ef1340"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x0e1ec9a0"},"kids_end":{"t":"ptr","v":"0x0e1ec9a4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0bf0"},"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":"0x03ef0bf0"},"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":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400a2d8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x0e1ec9b0"},"kids_end":{"t":"ptr","v":"0x0e1ec9b4"},"kids_cap":{"t":"ptr","v":"0x0e1ec9b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bec0"},"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":"0x0400bec0"},"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":"0x03efcbf0"},"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":"0x03efcbf0"},"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":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe318"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x0e1eca80"},"kids_end":{"t":"ptr","v":"0x0e1eca88"},"kids_cap":{"t":"ptr","v":"0x0e1eca88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b770"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x0e1eca90"},"kids_end":{"t":"ptr","v":"0x0e1eca98"},"kids_cap":{"t":"ptr","v":"0x0e1eca98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b8a8"},"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":"0x0400b8a8"},"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":"0x03efe450"},"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":"0x03efe450"},"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":"0x03efe588"},"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":"0x03efe588"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0400bff8"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e0ad928"},"kids_end":{"t":"ptr","v":"0x0e0ad93c"},"kids_cap":{"t":"ptr","v":"0x0e0ad93c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x0deb5158"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e11ae30"},"kids_end":{"t":"ptr","v":"0x0e11ae3c"},"kids_cap":{"t":"ptr","v":"0x0e11ae3c"},"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":"0x03efe1e0"},"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":"0x03efe1e0"},"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":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efce60"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x0e1ecaa0"},"kids_end":{"t":"ptr","v":"0x0e1ecaa4"},"kids_cap":{"t":"ptr","v":"0x0e1ecaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcab8"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x0e1ecb00"},"kids_end":{"t":"ptr","v":"0x0e1ecb04"},"kids_cap":{"t":"ptr","v":"0x0e1ecb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bd88"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e15e298"},"kids_end":{"t":"ptr","v":"0x0e15e29c"},"kids_cap":{"t":"ptr","v":"0x0e15e29c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5d88"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e15e3a8"},"kids_end":{"t":"ptr","v":"0x0e15e3ac"},"kids_cap":{"t":"ptr","v":"0x0e15e3ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdd00"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e15e2b8"},"kids_end":{"t":"ptr","v":"0x0e15e2c0"},"kids_cap":{"t":"ptr","v":"0x0e15e2c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040218e8"},"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":"0x040218e8"},"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":"0x03efe0a8"},"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":"0x03efe0a8"},"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":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd958"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e11b010"},"kids_end":{"t":"ptr","v":"0x0e11b01c"},"kids_cap":{"t":"ptr","v":"0x0e11b01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x040217b8"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e15e388"},"kids_end":{"t":"ptr","v":"0x0e15e390"},"kids_cap":{"t":"ptr","v":"0x0e15e390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400b9e0"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e15e248"},"kids_end":{"t":"ptr","v":"0x0e15e250"},"kids_cap":{"t":"ptr","v":"0x0e15e250"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efdf70"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e15e378"},"kids_end":{"t":"ptr","v":"0x0e15e37c"},"kids_cap":{"t":"ptr","v":"0x0e15e37c"},"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":"0x03efde38"},"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":"0x03efde38"},"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":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bb18"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e11aff8"},"kids_end":{"t":"ptr","v":"0x0e11b004"},"kids_cap":{"t":"ptr","v":"0x0e11b004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe6c0"},"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":"0x03efe6c0"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x03efc980"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e11ad70"},"kids_end":{"t":"ptr","v":"0x0e11ad7c"},"kids_cap":{"t":"ptr","v":"0x0e11ad7c"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c4d8"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e11ae18"},"kids_end":{"t":"ptr","v":"0x0e11ae28"},"kids_cap":{"t":"ptr","v":"0x0e11ae28"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0400c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e15e208"},"kids_end":{"t":"ptr","v":"0x0e15e210"},"kids_cap":{"t":"ptr","v":"0x0e15e210"},"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":"0x0deb58a8"},"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":"0x0deb58a8"},"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":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0400bc50"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e15e398"},"kids_end":{"t":"ptr","v":"0x0e15e39c"},"kids_cap":{"t":"ptr","v":"0x0e15e39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x04021688"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e11ae60"},"kids_end":{"t":"ptr","v":"0x0e11ae6c"},"kids_cap":{"t":"ptr","v":"0x0e11ae6c"},"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03edff68"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e15e2a8"},"kids_end":{"t":"ptr","v":"0x0e15e2ac"},"kids_cap":{"t":"ptr","v":"0x0e15e2ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400c3a0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e15e3f8"},"kids_end":{"t":"ptr","v":"0x0e15e3fc"},"kids_cap":{"t":"ptr","v":"0x0e15e3fc"},"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":"0x0400b638"},"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":"0x0400b638"},"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":"0x0400c130"},"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":"0x0400c130"},"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":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcd28"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e15e218"},"kids_end":{"t":"ptr","v":"0x0e15e21c"},"kids_cap":{"t":"ptr","v":"0x0e15e21c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x04021558"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e15e358"},"kids_end":{"t":"ptr","v":"0x0e15e35c"},"kids_cap":{"t":"ptr","v":"0x0e15e35c"},"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":"0x03efd820"},"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":"0x03efd820"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04021428"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e11b028"},"kids_end":{"t":"ptr","v":"0x0e11b034"},"kids_cap":{"t":"ptr","v":"0x0e11b034"},"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004928"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e15e368"},"kids_end":{"t":"ptr","v":"0x0e15e36c"},"kids_cap":{"t":"ptr","v":"0x0e15e36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2658"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e15e3b8"},"kids_end":{"t":"ptr","v":"0x0e15e3c0"},"kids_cap":{"t":"ptr","v":"0x0e15e3c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb2790"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e11b040"},"kids_end":{"t":"ptr","v":"0x0e11b04c"},"kids_cap":{"t":"ptr","v":"0x0e11b04c"},"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":"0x0deb4ee8"},"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":"0x0deb4ee8"},"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":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb53c8"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e15e328"},"kids_end":{"t":"ptr","v":"0x0e15e32c"},"kids_cap":{"t":"ptr","v":"0x0e15e32c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4180"},"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":"0x0deb4180"},"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":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb28c8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e15e2c8"},"kids_end":{"t":"ptr","v":"0x0e15e2d0"},"kids_cap":{"t":"ptr","v":"0x0e15e2d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5020"},"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":"0x0deb5020"},"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":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5500"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e15e3c8"},"kids_end":{"t":"ptr","v":"0x0e15e3cc"},"kids_cap":{"t":"ptr","v":"0x0e15e3cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5638"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e15e2d8"},"kids_end":{"t":"ptr","v":"0x0e15e2e0"},"kids_cap":{"t":"ptr","v":"0x0e15e2e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb42b8"},"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":"0x0deb42b8"},"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":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb2ee0"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e15e338"},"kids_end":{"t":"ptr","v":"0x0e15e340"},"kids_cap":{"t":"ptr","v":"0x0e15e340"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5290"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e15e2e8"},"kids_end":{"t":"ptr","v":"0x0e15e2f0"},"kids_cap":{"t":"ptr","v":"0x0e15e2f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb4c78"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e15e2f8"},"kids_end":{"t":"ptr","v":"0x0e15e300"},"kids_cap":{"t":"ptr","v":"0x0e15e300"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb5c50"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e15e3d8"},"kids_end":{"t":"ptr","v":"0x0e15e3dc"},"kids_cap":{"t":"ptr","v":"0x0e15e3dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0400a408"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e15e308"},"kids_end":{"t":"ptr","v":"0x0e15e30c"},"kids_cap":{"t":"ptr","v":"0x0e15e30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004a58"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e15e258"},"kids_end":{"t":"ptr","v":"0x0e15e260"},"kids_cap":{"t":"ptr","v":"0x0e15e260"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03ef00a0"},"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":"0x03ef00a0"},"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":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efefa0"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e15e3e8"},"kids_end":{"t":"ptr","v":"0x0e15e3f0"},"kids_cap":{"t":"ptr","v":"0x0e15e3f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01488"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e15e318"},"kids_end":{"t":"ptr","v":"0x0e15e31c"},"kids_cap":{"t":"ptr","v":"0x0e15e31c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00458"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e15e348"},"kids_end":{"t":"ptr","v":"0x0e15e34c"},"kids_cap":{"t":"ptr","v":"0x0e15e34c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f020b8"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e15e268"},"kids_end":{"t":"ptr","v":"0x0e15e270"},"kids_cap":{"t":"ptr","v":"0x0e15e270"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f010e0"},"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":"0x03f010e0"},"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":"0x03eefcf8"},"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":"0x03eefcf8"},"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":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef200"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e15e228"},"kids_end":{"t":"ptr","v":"0x0e15e22c"},"kids_cap":{"t":"ptr","v":"0x0e15e22c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01aa0"},"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":"0x03f01aa0"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03eeeab0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e15e238"},"kids_end":{"t":"ptr","v":"0x0e15e23c"},"kids_cap":{"t":"ptr","v":"0x0e15e23c"},"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":"0x03effd08"},"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":"0x03effd08"},"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":"0x03ef0580"},"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":"0x03ef0580"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03efebf8"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e15e278"},"kids_end":{"t":"ptr","v":"0x0e15e280"},"kids_cap":{"t":"ptr","v":"0x0e15e280"},"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":"0x03f00fa8"},"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":"0x03f00fa8"},"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":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01830"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e15e288"},"kids_end":{"t":"ptr","v":"0x0e15e28c"},"kids_cap":{"t":"ptr","v":"0x0e15e28c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efd208"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e15ec88"},"kids_end":{"t":"ptr","v":"0x0e15ec8c"},"kids_cap":{"t":"ptr","v":"0x0e15ec8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01f80"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e11b058"},"kids_end":{"t":"ptr","v":"0x0e11b064"},"kids_cap":{"t":"ptr","v":"0x0e11b064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eee840"},"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":"0x03eee840"},"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":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff210"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e11ad88"},"kids_end":{"t":"ptr","v":"0x0e11ad98"},"kids_cap":{"t":"ptr","v":"0x0e11ad98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00d38"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e15ed98"},"kids_end":{"t":"ptr","v":"0x0e15eda0"},"kids_cap":{"t":"ptr","v":"0x0e15eda0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effa98"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e15ec98"},"kids_end":{"t":"ptr","v":"0x0e15eca0"},"kids_cap":{"t":"ptr","v":"0x0e15eca0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00c00"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e15ed28"},"kids_end":{"t":"ptr","v":"0x0e15ed2c"},"kids_cap":{"t":"ptr","v":"0x0e15ed2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00858"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e15eca8"},"kids_end":{"t":"ptr","v":"0x0e15ecb0"},"kids_cap":{"t":"ptr","v":"0x0e15ecb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00ac8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e15ed38"},"kids_end":{"t":"ptr","v":"0x0e15ed40"},"kids_cap":{"t":"ptr","v":"0x0e15ed40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f02328"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e15ecc8"},"kids_end":{"t":"ptr","v":"0x0e15ecd0"},"kids_cap":{"t":"ptr","v":"0x0e15ecd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff0d8"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e15edb8"},"kids_end":{"t":"ptr","v":"0x0e15edbc"},"kids_cap":{"t":"ptr","v":"0x0e15edbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efda90"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e15edc8"},"kids_end":{"t":"ptr","v":"0x0e15edcc"},"kids_cap":{"t":"ptr","v":"0x0e15edcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03efc848"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e15edd8"},"kids_end":{"t":"ptr","v":"0x0e15ede0"},"kids_cap":{"t":"ptr","v":"0x0e15ede0"},"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":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f015c0"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e15ef08"},"kids_end":{"t":"ptr","v":"0x0e15ef0c"},"kids_cap":{"t":"ptr","v":"0x0e15ef0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eeff68"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e11ada0"},"kids_end":{"t":"ptr","v":"0x0e11adac"},"kids_cap":{"t":"ptr","v":"0x0e11adac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03effbd0"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e15ee28"},"kids_end":{"t":"ptr","v":"0x0e15ee2c"},"kids_cap":{"t":"ptr","v":"0x0e15ee2c"},"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":"0x03eeee58"},"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":"0x03eeee58"},"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":"0x03efed30"},"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":"0x03efed30"},"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":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefbc0"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e0ad848"},"kids_end":{"t":"ptr","v":"0x0e0ad85c"},"kids_cap":{"t":"ptr","v":"0x0e0ad85c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd5b0"},"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":"0x03efd5b0"},"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":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03effe40"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e15ef98"},"kids_end":{"t":"ptr","v":"0x0e15ef9c"},"kids_cap":{"t":"ptr","v":"0x0e15ef9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f02598"},"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":"0x03f02598"},"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":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff828"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e15ee48"},"kids_end":{"t":"ptr","v":"0x0e15ee4c"},"kids_cap":{"t":"ptr","v":"0x0e15ee4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f026d0"},"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":"0x03f026d0"},"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":"0x03f016f8"},"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":"0x03f016f8"},"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":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00e70"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e15eea8"},"kids_end":{"t":"ptr","v":"0x0e15eeac"},"kids_cap":{"t":"ptr","v":"0x0e15eeac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01d10"},"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":"0x03f01d10"},"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":"0x03eeef90"},"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":"0x03eeef90"},"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":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efff78"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e15eeb8"},"kids_end":{"t":"ptr","v":"0x0e15eebc"},"kids_cap":{"t":"ptr","v":"0x0e15eebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01968"},"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":"0x03f01968"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03efd340"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e15df88"},"kids_end":{"t":"ptr","v":"0x0e15df8c"},"kids_cap":{"t":"ptr","v":"0x0e15df8c"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eee978"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e11aec0"},"kids_end":{"t":"ptr","v":"0x0e11aed0"},"kids_cap":{"t":"ptr","v":"0x0e11aed0"},"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":"0x03eef5a8"},"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":"0x03eef5a8"},"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":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe988"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e11aef0"},"kids_end":{"t":"ptr","v":"0x0e11aefc"},"kids_cap":{"t":"ptr","v":"0x0e11aefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00590"},"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":"0x03f00590"},"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":"0x03f01e48"},"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":"0x03f01e48"},"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":"0x03eef338"},"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":"0x03eef338"},"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":"0x03eefa88"},"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":"0x03eefa88"},"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":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f006c8"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e15df18"},"kids_end":{"t":"ptr","v":"0x0e15df1c"},"kids_cap":{"t":"ptr","v":"0x0e15df1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef950"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e15de08"},"kids_end":{"t":"ptr","v":"0x0e15de0c"},"kids_cap":{"t":"ptr","v":"0x0e15de0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f01350"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e11adb8"},"kids_end":{"t":"ptr","v":"0x0e11adc8"},"kids_cap":{"t":"ptr","v":"0x0e11adc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f021f0"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e15df38"},"kids_end":{"t":"ptr","v":"0x0e15df40"},"kids_cap":{"t":"ptr","v":"0x0e15df40"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03f01bd8"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e15de18"},"kids_end":{"t":"ptr","v":"0x0e15de1c"},"kids_cap":{"t":"ptr","v":"0x0e15de1c"},"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":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff348"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e15dff8"},"kids_end":{"t":"ptr","v":"0x0e15dffc"},"kids_cap":{"t":"ptr","v":"0x0e15dffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef01d8"},"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":"0x03ef01d8"},"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":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f00320"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e11af20"},"kids_end":{"t":"ptr","v":"0x0e11af2c"},"kids_cap":{"t":"ptr","v":"0x0e11af2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03f00990"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e15df48"},"kids_end":{"t":"ptr","v":"0x0e15df50"},"kids_cap":{"t":"ptr","v":"0x0e15df50"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03efd6e8"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e0ad6e8"},"kids_end":{"t":"ptr","v":"0x0e0ad6fc"},"kids_cap":{"t":"ptr","v":"0x0e0ad6fc"},"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":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff480"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e15df58"},"kids_end":{"t":"ptr","v":"0x0e15df5c"},"kids_cap":{"t":"ptr","v":"0x0e15df5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f01218"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e15df68"},"kids_end":{"t":"ptr","v":"0x0e15df6c"},"kids_cap":{"t":"ptr","v":"0x0e15df6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff5b8"},"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":"0x03eff5b8"},"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":"0x03f02460"},"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":"0x03f02460"},"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":"0x03eff6f0"},"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":"0x03eff6f0"},"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":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03f000b0"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e15dfb8"},"kids_end":{"t":"ptr","v":"0x0e15dfbc"},"kids_cap":{"t":"ptr","v":"0x0e15dfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eff960"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e15df98"},"kids_end":{"t":"ptr","v":"0x0e15df9c"},"kids_cap":{"t":"ptr","v":"0x0e15df9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efe850"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e15df78"},"kids_end":{"t":"ptr","v":"0x0e15df7c"},"kids_cap":{"t":"ptr","v":"0x0e15df7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03f001e8"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e15e0f8"},"kids_end":{"t":"ptr","v":"0x0e15e100"},"kids_cap":{"t":"ptr","v":"0x0e15e100"},"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":"0x03efeac0"},"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":"0x03efeac0"},"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03efd0d0"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e0ad768"},"kids_end":{"t":"ptr","v":"0x0e0ad77c"},"kids_cap":{"t":"ptr","v":"0x0e0ad77c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eefe30"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e15e1e8"},"kids_end":{"t":"ptr","v":"0x0e15e1ec"},"kids_cap":{"t":"ptr","v":"0x0e15e1ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03ef0310"},"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":"0x03ef0310"},"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":"0x03eef0c8"},"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":"0x03eef0c8"},"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":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03eef470"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e15e198"},"kids_end":{"t":"ptr","v":"0x0e15e19c"},"kids_cap":{"t":"ptr","v":"0x0e15e19c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03eeed20"},"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":"0x03eeed20"},"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":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efdbc8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e15e1f8"},"kids_end":{"t":"ptr","v":"0x0e15e1fc"},"kids_cap":{"t":"ptr","v":"0x0e15e1fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03efd478"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e15e158"},"kids_end":{"t":"ptr","v":"0x0e15e160"},"kids_cap":{"t":"ptr","v":"0x0e15e160"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03eeebe8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e15e0e8"},"kids_end":{"t":"ptr","v":"0x0e15e0f0"},"kids_cap":{"t":"ptr","v":"0x0e15e0f0"},"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":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x03efcf98"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e15e108"},"kids_end":{"t":"ptr","v":"0x0e15e110"},"kids_cap":{"t":"ptr","v":"0x0e15e110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04004b88"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e15e118"},"kids_end":{"t":"ptr","v":"0x0e15e11c"},"kids_cap":{"t":"ptr","v":"0x0e15e11c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb6a18"},"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":"0x0deb6a18"},"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":"0x0deb6190"},"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":"0x0deb6190"},"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":"0x0deb99a0"},"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":"0x0deb99a0"},"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":"0x0debeb10"},"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":"0x0debeb10"},"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":"0x0deb72a0"},"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":"0x0deb72a0"},"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":"0x0deb6058"},"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":"0x0deb6058"},"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":"0x0deb9868"},"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":"0x0deb9868"},"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":"0x0deb8d70"},"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":"0x0deb8d70"},"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":"0x0deb7030"},"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":"0x0deb7030"},"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":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9ad8"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e15e128"},"kids_end":{"t":"ptr","v":"0x0e15e12c"},"kids_cap":{"t":"ptr","v":"0x0e15e12c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb68e0"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e11add0"},"kids_end":{"t":"ptr","v":"0x0e11addc"},"kids_cap":{"t":"ptr","v":"0x0e11addc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb6dc0"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e11ade8"},"kids_end":{"t":"ptr","v":"0x0e11adf4"},"kids_cap":{"t":"ptr","v":"0x0e11adf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9e80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e11af38"},"kids_end":{"t":"ptr","v":"0x0e11af44"},"kids_cap":{"t":"ptr","v":"0x0e11af44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8c38"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e119300"},"kids_end":{"t":"ptr","v":"0x0e11930c"},"kids_cap":{"t":"ptr","v":"0x0e11930c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb83b0"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e1194e0"},"kids_end":{"t":"ptr","v":"0x0e1194ec"},"kids_cap":{"t":"ptr","v":"0x0e1194ec"},"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":"0x0deb7d98"},"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":"0x0deb7d98"},"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":"0x0deb73d8"},"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":"0x0deb73d8"},"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":"0x0deb94c0"},"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":"0x0deb94c0"},"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":"0x0debec48"},"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":"0x0debec48"},"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x040212f8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e0ad588"},"kids_end":{"t":"ptr","v":"0x0e0ad5a0"},"kids_cap":{"t":"ptr","v":"0x0e0ad5a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7648"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e15e1c8"},"kids_end":{"t":"ptr","v":"0x0e15e1d0"},"kids_cap":{"t":"ptr","v":"0x0e15e1d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb62c8"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e15e0b8"},"kids_end":{"t":"ptr","v":"0x0e15e0c0"},"kids_cap":{"t":"ptr","v":"0x0e15e0c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9118"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e15e168"},"kids_end":{"t":"ptr","v":"0x0e15e170"},"kids_cap":{"t":"ptr","v":"0x0e15e170"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0debfe90"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e15e138"},"kids_end":{"t":"ptr","v":"0x0e15e140"},"kids_cap":{"t":"ptr","v":"0x0e15e140"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7168"},"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":"0x0deb7168"},"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":"0x0deb8758"},"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":"0x0deb8758"},"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":"0x0deb8008"},"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":"0x0deb8008"},"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":"0x0deb6ef8"},"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":"0x0deb6ef8"},"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":"0x0deb8ea8"},"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":"0x0deb8ea8"},"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":"0x0deb9388"},"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":"0x0deb9388"},"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":"0x0deb6400"},"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":"0x0deb6400"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb6c88"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e15e178"},"kids_end":{"t":"ptr","v":"0x0e15e17c"},"kids_cap":{"t":"ptr","v":"0x0e15e17c"},"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":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8140"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e15e148"},"kids_end":{"t":"ptr","v":"0x0e15e14c"},"kids_cap":{"t":"ptr","v":"0x0e15e14c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb8278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e15e088"},"kids_end":{"t":"ptr","v":"0x0e15e08c"},"kids_cap":{"t":"ptr","v":"0x0e15e08c"},"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":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb7780"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e15e0a8"},"kids_end":{"t":"ptr","v":"0x0e15e0ac"},"kids_cap":{"t":"ptr","v":"0x0e15e0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb9c10"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e15e0c8"},"kids_end":{"t":"ptr","v":"0x0e15e0cc"},"kids_cap":{"t":"ptr","v":"0x0e15e0cc"},"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":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb8fe0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e15e078"},"kids_end":{"t":"ptr","v":"0x0e15e07c"},"kids_cap":{"t":"ptr","v":"0x0e15e07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb8b00"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e15e018"},"kids_end":{"t":"ptr","v":"0x0e15e01c"},"kids_cap":{"t":"ptr","v":"0x0e15e01c"},"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":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0deb9250"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e15e008"},"kids_end":{"t":"ptr","v":"0x0e15e00c"},"kids_cap":{"t":"ptr","v":"0x0e15e00c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb7510"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e15e098"},"kids_end":{"t":"ptr","v":"0x0e15e09c"},"kids_cap":{"t":"ptr","v":"0x0e15e09c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb84e8"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e15e048"},"kids_end":{"t":"ptr","v":"0x0e15e04c"},"kids_cap":{"t":"ptr","v":"0x0e15e04c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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":"0x0deb8890"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e15e188"},"kids_end":{"t":"ptr","v":"0x0e15e18c"},"kids_cap":{"t":"ptr","v":"0x0e15e18c"},"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"}}}}}}