{"meta":{"format":1,"build":"eventlive-dd38117-20260908T0916Z","exe_sha256":"970b7de729956a53094c7eb98aba4270aee98e2fed5daf0d39e290013c90c841","started":"2026-09-08T09:20:00Z","inline_max":256,"hooks":{"Shim::SelfTest::Fill":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"complete","why":"Fill writes buf[0..n) and nothing else; the whole range is a declared region","unmodelled":[]}},"Mars::GlobalConsts::LoadFile":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"erases each consumed key from the caller's std::map","risk":"medium","why":"the map is a LoadAll temporary; declaring a red-black tree as a region is not possible before the call. First-occurrence-wins is reproduced in game::config::apply instead, so the *effect* is modelled, the container is not","mitigation":"LoadAll's post-state would have to be hooked to see it"},{"what":"writes three kinds of line to the game log (unrecognised key, applied key, expected-but-not-found)","risk":"low","why":"log text is not part of the simulation state","mitigation":""},{"what":"opens the file through the VFS and allocates/releases a refcounted buffer","risk":"low","why":"ours performs the same two calls, so allocation behaviour matches by construction rather than by comparison","mitigation":""},{"what":"String slots assign through the engine's own std::string, leaking one heap block per long string in compare mode","risk":"low","why":"start-up only; documented in docs/M1.md","mitigation":""}]}},"Game::ServerPlayer::ComputeBudget":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"slots 1, 2, 3, 4, 7 and 11 are produced by callees this milestone does not model (per-system output, trade, ship-carried population, a second manager, the build-queue spend)","risk":"high","why":"they are copied out of the original's own output and back into the same slots, so they match BY CONSTRUCTION and prove nothing","mitigation":"declared input boundary; see budget_inputs.h"},{"what":"ServerSystem::ComputeOutput repairs damaged ships in orbit","risk":"high","why":"replace mode runs the original a second time on a scratch Budget to harvest the six unmodelled slots, so that repair happens TWICE per turn in replace mode and nothing in the trace would show it","mitigation":"guard:budget_object does not reach the ships; unverified"},{"what":"the difficulty-mods row from StrategyServer::GetDifficultyMods","risk":"medium","why":"not reachable from a ServerPlayer, so the two relevant entries are fitted constants measured from the B1 trace rather than snapshotted inputs","mitigation":""},{"what":"the research-allocation vector's heap block","risk":"low","why":"only the element count is compared; the three words are heap pointers the default policy ignores","mitigation":""}]}},"Game::WeaponDictionary::Init":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"LoadWeapon -> WeaponDef::ParseScript registers each weapon's name with the string table and resolves `requires` against the live TechTree","risk":"high","why":"per-file parsing is M3 scope; ours delegates to the game's own LoadWeapon, so a compare run performs the registration a SECOND time and neither the string table nor the tech tree is a declared region","mitigation":"suspected cause of the sibling section hook's compare crash (docs/M2.md)"},{"what":"allocates 123 WeaponDef objects (0x278 bytes each) on the game heap","risk":"low","why":"the definitions do not exist when the hook is entered, so they cannot be a before-snapshot; the dictionary region compares them by id/name/path","mitigation":""},{"what":"the word at dictionary+0x14","risk":"low","why":"not modelled; emitted as an opaque pointer, which the default policy ignores -- a change is visible in a trace but never a divergence","mitigation":"guard:dict"},{"what":"writes lines to the game log for a missing manifest","risk":"low","why":"log text is not simulation state","mitigation":""},{"what":"std::sort tie order for equal weapon names","risk":"low","why":"msvc_sort.h replays MSVC 2010's introsort, but the shipped data has no tied names, so the tie rule is unexercised rather than verified","mitigation":""}]}},"Game::SectionDictionary::SectionDictionary":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"LoadSection registers each section with the string table and the live TechTree, and may append to the dictionary's own vector","risk":"high","why":"M3 scope; ours delegates to the game's LoadSection after the original has already built all 885 definitions, so the second pass registers duplicates -- the leading hypothesis for this hook's compare-mode crash","mitigation":"see docs/M2.md; compare mode for this hook is not safe to run"},{"what":"post-load validation pass over every definition's @-token against the string table","risk":"medium","why":"runs after the loop and touches no declared region","mitigation":""},{"what":"allocates 885 SectionDef objects (0x3d8 bytes each) on the game heap","risk":"low","why":"they do not exist at hook entry; compared by index/species/id/token","mitigation":""},{"what":"the word at dictionary+0x14","risk":"low","why":"not modelled; emitted as an ignored pointer","mitigation":"guard:dict"},{"what":"the before-snapshot of the object is uninitialised heap","risk":"medium","why":"the hook is on the constructor, so `before` is meaningless and only `after` carries information","mitigation":""}]}},"Game::TechTree::ProcessResearch":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"posts EVENT_RESEARCH_OVERBUDGET on the owner's EventStorage: ours reproduces the decision and the id sequence, so region:events compares next_id, but the composed EvDsc/EvMsg text is not reproduced and no region can see it","risk":"medium","why":"text comes from the game's string table, which the engine must not carry; ours posts into its own EventStorage and writes only the counts into the scratch copy, so no live byte moves and replace mode posts nothing at all","mitigation":"region:events"},{"what":"posts EVENT_TECHS_UNLOCKED once after the per-node loop, for the nodes SetResearched made available this turn","risk":"medium","why":"the set comes from the child-unlock cascade, which ours does not run; the pass driver takes the unlock list as an input and is given `no list` rather than an empty one, so a missing input cannot look like a modelled negative. Expect region:events to under-count next_id by exactly 1 on every call that completes a tech","mitigation":"region:events"},{"what":"appends to the owner's vector (ServerPlayer+0x274) on every tech completion","risk":"high","why":"serialized ServerPlayer state that no coverage note in B2 or B3 mentioned until lane R's guard caught it. The element is now fully pinned (sizeof 44, {u16 turn_first, u16 turn_last, bool detected, string tech_name, int with}) and the append de-duplicates by tech name, but ours still does not append; the region reports the byte span, which must grow by exactly 44 per completion","mitigation":"region:observed_techs"},{"what":"TechTree::SetResearched on completion: the turn/order stamps, the child unlock cascade, the recursive research of zero-cost children, and the owner's OnTechResearched callback","risk":"high","why":"its own milestone (B2); the callback writes live player state that compare mode must not touch, and it consumes one extra RNG word","mitigation":"guard:player, guard:tree_header"},{"what":"bumps the tree's completion-order counter (TechTree+0x20)","risk":"medium","why":"part of SetResearched; the per-node `order` word is compared but the counter it comes from was not a region","mitigation":"guard:tree_header"},{"what":"writes a completion line to the game log","risk":"low","why":"log text is not simulation state","mitigation":""}]}},"Game::ServerPlayer::OnTechResearched":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"posts EVENT_RESEARCH_COMPLETE / _UNDERBUDGET / _TEMPERANCE on the owner's EventStorage when !silent","risk":"high","why":"the same class of write as B3's defect, and this hook has no replace-mode oracle that could catch it: gotcha 4 in docs/B2.md says a changed save hash on a completion turn is expected and therefore not a finding","mitigation":"guard:player (EventStorage is inline at ServerPlayer+0x29c)"},{"what":"writes every owned system's AI flag (CCC_AIVrus / CCC_AISlv), re-evaluates the arcology civilian cap, cures addiction and clears plague across systems AND ships","risk":"high","why":"writes through pointers to other objects; compare mode must not touch live state, and no region reaches them","mitigation":""},{"what":"the pending plague-cure roll (ServerPlayer::RollResearchEvent)","risk":"high","why":"it draws exactly one word from the strategic generator unconditionally; running it in compare mode would consume real randomness. The two words it guards are still cleared and the record says whether it would have fired","mitigation":"this is the extra draw B3 observed on a completion"},{"what":"TechTree::SetResearched for the Zuul boarding-pod grant","risk":"medium","why":"it would mutate the live tree, and it recurses","mitigation":""},{"what":"allocates or frees the node-bore block at ServerPlayer+0x308","risk":"medium","why":"ours has no allocator the game's runtime could free, so replace mode calls the game's own updater -- which means replace mode never exercises our node-bore selection at all","mitigation":"region:node_bore, declared only when the block already exists"}]}},"Game::ServerSystem::ProcessTurn":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"the addiction sweep raises MoraleEvents, which are constructed and appended to the system's capped morale history","risk":"high","why":"the same class of write as B3's defect. sim::ProcessColonyTurn does compute the morale events (ColonyTurnResult), but the hook never emits them: DescribeMoraleEvents is dead code, so they are neither compared nor logged","mitigation":"guard:system"},{"what":"every callee: the plague pass, imperial and civilian growth, the resource debit, in-orbit refuel, slaves, rebellion and the build queue","risk":"high","why":"declared input boundary -- ProcessTurn is a dispatcher and only the words it writes itself are modelled. The callees raise EVENT_SLAVES_DEAD, EVENT_SYSTEM_REBELLION_CONTINUES, the plague events and SEBuildCompleted, create ships and bump per-player ShipRecords counters","mitigation":"guard:system covers the system object only, not the other objects"},{"what":"ApplyInfraBonus / ApplyPopBonus read the owner's home-system id, and the build queue writes the owning ServerPlayer","risk":"medium","why":"writes through a pointer to another object; no region reaches the player","mitigation":""},{"what":"ProcessRebellion is the pass's only RNG consumer and its draw count is data-dependent","risk":"low","why":"the generator IS a declared region, so a moved post-state is visible and names the system whose rebellion fired -- it is reported, not modelled","mitigation":""},{"what":"replace mode is refused for this hook","risk":"medium","why":"our side models the dispatcher's own writes and none of the callees, so a replace run would silently skip a colony's whole turn. There is therefore no oracle layer behind the compare for this hook","mitigation":""}]}},"Game::StrategyServer::MoveFleet":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"on arrival: dispatches SEFleetArrived and runs one of three arrival handlers by destination kind (enter system / join fleet / stop at point)","risk":"high","why":"declared input boundary -- an arriving call is expected to differ in all of it, and none of it is declared, so the compare says nothing about arrivals","mitigation":"guard:fleet sees the fleet's own words; the event and the system do not"},{"what":"on departure: cancels every still-acting ship (with a log line each) and calls ServerSystem::FleetDeparts, which rewrites the system's ownership bits","risk":"high","why":"writes through pointers to ships and to the system","mitigation":""},{"what":"the tanker top-up refuels other ships in the fleet","risk":"medium","why":"the per-ship range regions would show it, but ours does not model it, so a fleet with a tanker diverges for a known reason","mitigation":""},{"what":"a node-line waypoint's step comes from the stutter profile","risk":"medium","why":"NodeLineStep / BuildStutterSegments are written and unit-tested but not wired in; the hook steps every waypoint type as speed x dt, so a node-line leg is knowingly mis-stepped and only its type is recorded","mitigation":"declared gap: docs/B4.md"},{"what":"a missed probabilistic jump scatters the fleet in a random direction","risk":"medium","why":"the direction is a second draw whose mapping is not modelled; ours leaves the position alone and reports the scatter distance, so the generator region diverges by one word on a miss","mitigation":""},{"what":"the route revalidation and the waypoint list itself","risk":"medium","why":"declared input boundary; the waypoint vector is not a region","mitigation":""}]}},"Game::StrategyServer::ProcessFleetMovement":{"ftol":0,"ftol_kind":"abs","ptr":"ignore","coverage":{"state":"partial","why":"","unmodelled":[{"what":"`ours` re-reads the LIVE fleet list after the original has run","risk":"high","why":"the gate-traffic total is computed by the original at the very end of the pass, so a pre-call snapshot would diverge for the wrong reason. It breaks the compare invariant that ours never touches live memory, and it makes this hook's verdict partly self-fulfilling: the input to our arithmetic is the original's own post-move state","mitigation":""},{"what":"drives MoveFleet up to five times per fleet","risk":"high","why":"every undeclared effect of MoveFleet happens inside this call too; the pass schedule is recorded in the arguments but never compared","mitigation":""},{"what":"writes FPdpos into every fleet and clears flags 0x2 and 0x100 on every fleet","risk":"high","why":"no region covers the fleets, only the players' gate-traffic words","mitigation":""},{"what":"OnFleetArrived posts EVENT_FLEET_ARRIVED","risk":"high","why":"the same class of write as B3's defect, and there is no replace mode for this hook, so nothing behind the compare could catch it either","mitigation":""},{"what":"the original accumulates by player->index but writes back by the player's position in the server vector, into a fixed 32-int array with no bounds check","risk":"medium","why":"a real latent bug in the original that our side reproduces only while index == position; the reference save never separates them","mitigation":""},{"what":"PassSchedule() is never called by the hook, and FleetSummary::targetFleetId / relation are never filled","risk":"medium","why":"the header claims ours predicts the call order for a trace to check; that prediction is not actually emitted","mitigation":""}]}}}}} {"ts":284223136,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":0,"thread":500,"depth":0,"args":[{"t":"ptr","v":"0x0e93e6d0","n":"tree"},{"t":"ptr","v":"0x0e90c868","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e922d80","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"},{"t":"i32","v":3,"n":"turn"},{"t":"i32","v":3,"n":"events_next_id_in"},{"t":"u32","v":2,"n":"events_turns_in"},{"t":"bool","v":true,"n":"events_turn_bucket_exists"},{"t":"u32","v":1,"n":"events_in_turn_bucket"},{"t":"u32","v":0,"n":"events_dedup_risk"}],"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":"0x0493a300"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x1f346ea8"},"kids_end":{"t":"ptr","v":"0x1f346eac"},"kids_cap":{"t":"ptr","v":"0x1f346eac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a300"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x1f346ea8"},"kids_end":{"t":"ptr","v":"0x1f346eac"},"kids_cap":{"t":"ptr","v":"0x1f346eac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e652890"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x1f346ee8"},"kids_end":{"t":"ptr","v":"0x1f346eec"},"kids_cap":{"t":"ptr","v":"0x1f346eec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652890"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x1f346ee8"},"kids_end":{"t":"ptr","v":"0x1f346eec"},"kids_cap":{"t":"ptr","v":"0x1f346eec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e651ed0"},"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":"0x0e651ed0"},"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":"0x0e6529c8"},"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":"0x0e6529c8"},"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":"0x0e652278"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe888"},"kids_end":{"t":"ptr","v":"0x0e8fe894"},"kids_cap":{"t":"ptr","v":"0x0e8fe894"},"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":"0x0e652278"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe888"},"kids_end":{"t":"ptr","v":"0x0e8fe894"},"kids_cap":{"t":"ptr","v":"0x0e8fe894"},"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":"0x0e651780"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x1f346f38"},"kids_end":{"t":"ptr","v":"0x1f346f3c"},"kids_cap":{"t":"ptr","v":"0x1f346f3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651780"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x1f346f38"},"kids_end":{"t":"ptr","v":"0x1f346f3c"},"kids_cap":{"t":"ptr","v":"0x1f346f3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652b00"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x1f346f78"},"kids_end":{"t":"ptr","v":"0x1f346f80"},"kids_cap":{"t":"ptr","v":"0x1f346f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652b00"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x1f346f78"},"kids_end":{"t":"ptr","v":"0x1f346f80"},"kids_cap":{"t":"ptr","v":"0x1f346f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652ea8"},"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":"0x0e652ea8"},"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":"0x04950e38"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x1f346e18"},"kids_end":{"t":"ptr","v":"0x1f346e1c"},"kids_cap":{"t":"ptr","v":"0x1f346e1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04950e38"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x1f346e18"},"kids_end":{"t":"ptr","v":"0x1f346e1c"},"kids_cap":{"t":"ptr","v":"0x1f346e1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e6518b8"},"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":"0x0e6518b8"},"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":"0x0e652758"},"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":"0x0e652758"},"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":"0x0e651168"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x1f346f88"},"kids_end":{"t":"ptr","v":"0x1f346f8c"},"kids_cap":{"t":"ptr","v":"0x1f346f8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651168"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x1f346f88"},"kids_end":{"t":"ptr","v":"0x1f346f8c"},"kids_cap":{"t":"ptr","v":"0x1f346f8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e656150"},"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":"0x0e656150"},"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":"0x0e655040"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe6f0"},"kids_end":{"t":"ptr","v":"0x0e8fe6fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655040"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe6f0"},"kids_end":{"t":"ptr","v":"0x0e8fe6fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65b620"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe8a0"},"kids_end":{"t":"ptr","v":"0x0e8fe8ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe8ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b620"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe8a0"},"kids_end":{"t":"ptr","v":"0x0e8fe8ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe8ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e659c88"},"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":"0x0e659c88"},"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":"0x0e65a3d8"},"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":"0x0e65a3d8"},"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":"0x0e6598e0"},"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":"0x0e6598e0"},"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":"0x0e656c48"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x1f346e38"},"kids_end":{"t":"ptr","v":"0x1f346e40"},"kids_cap":{"t":"ptr","v":"0x1f346e40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656c48"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x1f346e38"},"kids_end":{"t":"ptr","v":"0x1f346e40"},"kids_cap":{"t":"ptr","v":"0x1f346e40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e655790"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe5b8"},"kids_end":{"t":"ptr","v":"0x0e8fe5c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655790"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe5b8"},"kids_end":{"t":"ptr","v":"0x0e8fe5c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e655658"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x1f346fc8"},"kids_end":{"t":"ptr","v":"0x1f346fcc"},"kids_cap":{"t":"ptr","v":"0x1f346fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655658"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x1f346fc8"},"kids_end":{"t":"ptr","v":"0x1f346fcc"},"kids_cap":{"t":"ptr","v":"0x1f346fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6552b0"},"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":"0x0e6552b0"},"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":"0x0e656eb8"},"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":"0x0e656eb8"},"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":"0x0e655ee0"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x1f346f58"},"kids_end":{"t":"ptr","v":"0x1f346f60"},"kids_cap":{"t":"ptr","v":"0x1f346f60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655ee0"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x1f346f58"},"kids_end":{"t":"ptr","v":"0x1f346f60"},"kids_cap":{"t":"ptr","v":"0x1f346f60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e656b10"},"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":"0x0e656b10"},"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":"0x0e6553e8"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe600"},"kids_end":{"t":"ptr","v":"0x0e8fe60c"},"kids_cap":{"t":"ptr","v":"0x0e8fe60c"},"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":"0x0e6553e8"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe600"},"kids_end":{"t":"ptr","v":"0x0e8fe60c"},"kids_cap":{"t":"ptr","v":"0x0e8fe60c"},"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":"0x0e6519f0"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe6a8"},"kids_end":{"t":"ptr","v":"0x0e8fe6b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e6519f0"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe6a8"},"kids_end":{"t":"ptr","v":"0x0e8fe6b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e655178"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x1f346e48"},"kids_end":{"t":"ptr","v":"0x1f346e4c"},"kids_cap":{"t":"ptr","v":"0x1f346e4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655178"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x1f346e48"},"kids_end":{"t":"ptr","v":"0x1f346e4c"},"kids_cap":{"t":"ptr","v":"0x1f346e4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e656018"},"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":"0x0e656018"},"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":"0x0e655c70"},"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":"0x0e655c70"},"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":"0x0e656630"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe618"},"kids_end":{"t":"ptr","v":"0x0e8fe624"},"kids_cap":{"t":"ptr","v":"0x0e8fe624"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656630"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe618"},"kids_end":{"t":"ptr","v":"0x0e8fe624"},"kids_cap":{"t":"ptr","v":"0x0e8fe624"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6564f8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x1f346eb8"},"kids_end":{"t":"ptr","v":"0x1f346ebc"},"kids_cap":{"t":"ptr","v":"0x1f346ebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6564f8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x1f346eb8"},"kids_end":{"t":"ptr","v":"0x1f346ebc"},"kids_cap":{"t":"ptr","v":"0x1f346ebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e655520"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x1f346fd8"},"kids_end":{"t":"ptr","v":"0x1f346fdc"},"kids_cap":{"t":"ptr","v":"0x1f346fdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655520"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x1f346fd8"},"kids_end":{"t":"ptr","v":"0x1f346fdc"},"kids_cap":{"t":"ptr","v":"0x1f346fdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e655b38"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x1f346f48"},"kids_end":{"t":"ptr","v":"0x1f346f4c"},"kids_cap":{"t":"ptr","v":"0x1f346f4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655b38"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x1f346f48"},"kids_end":{"t":"ptr","v":"0x1f346f4c"},"kids_cap":{"t":"ptr","v":"0x1f346f4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04950f68"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x1f346f28"},"kids_end":{"t":"ptr","v":"0x1f346f2c"},"kids_cap":{"t":"ptr","v":"0x1f346f2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04950f68"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x1f346f28"},"kids_end":{"t":"ptr","v":"0x1f346f2c"},"kids_cap":{"t":"ptr","v":"0x1f346f2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e656288"},"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":"0x0e656288"},"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":"0x0e6563c0"},"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":"0x0e6563c0"},"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":"0x0e6568a0"},"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":"0x0e6568a0"},"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":"0x0e655a00"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe6c0"},"kids_end":{"t":"ptr","v":"0x0e8fe6cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655a00"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe6c0"},"kids_end":{"t":"ptr","v":"0x0e8fe6cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65a168"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x1f346fa8"},"kids_end":{"t":"ptr","v":"0x1f346fac"},"kids_cap":{"t":"ptr","v":"0x1f346fac"},"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":"0x0e65a168"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x1f346fa8"},"kids_end":{"t":"ptr","v":"0x1f346fac"},"kids_cap":{"t":"ptr","v":"0x1f346fac"},"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":"0x0e65ab28"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x1f346e58"},"kids_end":{"t":"ptr","v":"0x1f346e5c"},"kids_cap":{"t":"ptr","v":"0x1f346e5c"},"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":"0x0e65ab28"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x1f346e58"},"kids_end":{"t":"ptr","v":"0x1f346e5c"},"kids_cap":{"t":"ptr","v":"0x1f346e5c"},"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":"0x0e65cc10"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x1f346f68"},"kids_end":{"t":"ptr","v":"0x1f346f6c"},"kids_cap":{"t":"ptr","v":"0x1f346f6c"},"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":"0x0e65cc10"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x1f346f68"},"kids_end":{"t":"ptr","v":"0x1f346f6c"},"kids_cap":{"t":"ptr","v":"0x1f346f6c"},"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":"0x0e65bfe0"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x1f346e08"},"kids_end":{"t":"ptr","v":"0x1f346e0c"},"kids_cap":{"t":"ptr","v":"0x1f346e0c"},"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":"0x0e65bfe0"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x1f346e08"},"kids_end":{"t":"ptr","v":"0x1f346e0c"},"kids_cap":{"t":"ptr","v":"0x1f346e0c"},"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":"0x0e65b4e8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x1f346f08"},"kids_end":{"t":"ptr","v":"0x1f346f0c"},"kids_cap":{"t":"ptr","v":"0x1f346f0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65b4e8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x1f346f08"},"kids_end":{"t":"ptr","v":"0x1f346f0c"},"kids_cap":{"t":"ptr","v":"0x1f346f0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65b890"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x1f346f98"},"kids_end":{"t":"ptr","v":"0x1f346f9c"},"kids_cap":{"t":"ptr","v":"0x1f346f9c"},"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":"0x0e65b890"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x1f346f98"},"kids_end":{"t":"ptr","v":"0x1f346f9c"},"kids_cap":{"t":"ptr","v":"0x1f346f9c"},"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":"0x0e656768"},"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":"0x0e656768"},"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":"0x0e657c78"},"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":"0x0e657c78"},"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":"0x0e658ec0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x1f346fb8"},"kids_end":{"t":"ptr","v":"0x1f346fbc"},"kids_cap":{"t":"ptr","v":"0x1f346fbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658ec0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x1f346fb8"},"kids_end":{"t":"ptr","v":"0x1f346fbc"},"kids_cap":{"t":"ptr","v":"0x1f346fbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657048"},"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":"0x0e657048"},"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":"0x0e6589e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe6d8"},"kids_end":{"t":"ptr","v":"0x0e8fe6e4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6589e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe6d8"},"kids_end":{"t":"ptr","v":"0x0e8fe6e4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6578d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x1f346e88"},"kids_end":{"t":"ptr","v":"0x1f346e90"},"kids_cap":{"t":"ptr","v":"0x1f346e90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6578d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x1f346e88"},"kids_end":{"t":"ptr","v":"0x1f346e90"},"kids_cap":{"t":"ptr","v":"0x1f346e90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657ee8"},"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":"0x0e657ee8"},"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":"0x0e658158"},"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":"0x0e658158"},"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":"0x04951098"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x1f346fe8"},"kids_end":{"t":"ptr","v":"0x1f346fec"},"kids_cap":{"t":"ptr","v":"0x1f346fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04951098"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x1f346fe8"},"kids_end":{"t":"ptr","v":"0x1f346fec"},"kids_cap":{"t":"ptr","v":"0x1f346fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e658638"},"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":"0x0e658638"},"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":"0x0e658770"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x1f346ff8"},"kids_end":{"t":"ptr","v":"0x1f347000"},"kids_cap":{"t":"ptr","v":"0x1f347000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658770"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x1f346ff8"},"kids_end":{"t":"ptr","v":"0x1f347000"},"kids_cap":{"t":"ptr","v":"0x1f347000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657db0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x1f346e28"},"kids_end":{"t":"ptr","v":"0x1f346e2c"},"kids_cap":{"t":"ptr","v":"0x1f346e2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657db0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x1f346e28"},"kids_end":{"t":"ptr","v":"0x1f346e2c"},"kids_cap":{"t":"ptr","v":"0x1f346e2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04821d00"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x1f346e68"},"kids_end":{"t":"ptr","v":"0x1f346e6c"},"kids_cap":{"t":"ptr","v":"0x1f346e6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821d00"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x1f346e68"},"kids_end":{"t":"ptr","v":"0x1f346e6c"},"kids_cap":{"t":"ptr","v":"0x1f346e6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481f950"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe8e8"},"kids_end":{"t":"ptr","v":"0x0e8fe8f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe8f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0481f950"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe8e8"},"kids_end":{"t":"ptr","v":"0x0e8fe8f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe8f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04821478"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e9a24f0"},"kids_end":{"t":"ptr","v":"0x0e9a2510"},"kids_cap":{"t":"ptr","v":"0x0e9a2510"},"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":"0x04821478"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e9a24f0"},"kids_end":{"t":"ptr","v":"0x0e9a2510"},"kids_cap":{"t":"ptr","v":"0x0e9a2510"},"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":"0x04822318"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x1f346e78"},"kids_end":{"t":"ptr","v":"0x1f346e7c"},"kids_cap":{"t":"ptr","v":"0x1f346e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04822318"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x1f346e78"},"kids_end":{"t":"ptr","v":"0x1f346e7c"},"kids_cap":{"t":"ptr","v":"0x1f346e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04820f98"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x1f346e98"},"kids_end":{"t":"ptr","v":"0x1f346e9c"},"kids_cap":{"t":"ptr","v":"0x1f346e9c"},"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":"0x04820f98"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x1f346e98"},"kids_end":{"t":"ptr","v":"0x1f346e9c"},"kids_cap":{"t":"ptr","v":"0x1f346e9c"},"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":"0x0e651d98"},"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":"0x0e651d98"},"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":"0x048210d0"},"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":"0x048210d0"},"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":"0x04821340"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x1f346ec8"},"kids_end":{"t":"ptr","v":"0x1f346ed0"},"kids_cap":{"t":"ptr","v":"0x1f346ed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821340"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x1f346ec8"},"kids_end":{"t":"ptr","v":"0x1f346ed0"},"kids_cap":{"t":"ptr","v":"0x1f346ed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481e978"},"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":"0x0481e978"},"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":"0x0481e840"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x1f346ed8"},"kids_end":{"t":"ptr","v":"0x1f346edc"},"kids_cap":{"t":"ptr","v":"0x1f346edc"},"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":"0x0481e840"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x1f346ed8"},"kids_end":{"t":"ptr","v":"0x1f346edc"},"kids_cap":{"t":"ptr","v":"0x1f346edc"},"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":"0x048216e8"},"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":"0x048216e8"},"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":"0x04821958"},"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":"0x04821958"},"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":"0x0493a430"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x1f346ef8"},"kids_end":{"t":"ptr","v":"0x1f346efc"},"kids_cap":{"t":"ptr","v":"0x1f346efc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a430"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x1f346ef8"},"kids_end":{"t":"ptr","v":"0x1f346efc"},"kids_cap":{"t":"ptr","v":"0x1f346efc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x048215b0"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x1f346f18"},"kids_end":{"t":"ptr","v":"0x1f346f1c"},"kids_cap":{"t":"ptr","v":"0x1f346f1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048215b0"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x1f346f18"},"kids_end":{"t":"ptr","v":"0x1f346f1c"},"kids_cap":{"t":"ptr","v":"0x1f346f1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048220a8"},"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":"0x048220a8"},"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":"0x0480fde8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x1f3471b8"},"kids_end":{"t":"ptr","v":"0x1f3471bc"},"kids_cap":{"t":"ptr","v":"0x1f3471bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0480fde8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x1f3471b8"},"kids_end":{"t":"ptr","v":"0x1f3471bc"},"kids_cap":{"t":"ptr","v":"0x1f3471bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493c4d8"},"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":"0x0493c4d8"},"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":"0x0482de38"},"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":"0x0482de38"},"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":"0x0482d0d0"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x1f347178"},"kids_end":{"t":"ptr","v":"0x1f347180"},"kids_cap":{"t":"ptr","v":"0x1f347180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d0d0"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x1f347178"},"kids_end":{"t":"ptr","v":"0x1f347180"},"kids_cap":{"t":"ptr","v":"0x1f347180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493bff8"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x1f347188"},"kids_end":{"t":"ptr","v":"0x1f34718c"},"kids_cap":{"t":"ptr","v":"0x1f34718c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bff8"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x1f347188"},"kids_end":{"t":"ptr","v":"0x1f34718c"},"kids_cap":{"t":"ptr","v":"0x1f34718c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493b770"},"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":"0x0493b770"},"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":"0x0482e318"},"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":"0x0482e318"},"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":"0x0482e588"},"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":"0x0482e588"},"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":"0x0493b638"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e890c10"},"kids_end":{"t":"ptr","v":"0x0e890c24"},"kids_cap":{"t":"ptr","v":"0x0e890c24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b638"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e890c10"},"kids_end":{"t":"ptr","v":"0x0e890c24"},"kids_cap":{"t":"ptr","v":"0x0e890c24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657798"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fea50"},"kids_end":{"t":"ptr","v":"0x0e8fea5c"},"kids_cap":{"t":"ptr","v":"0x0e8fea5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657798"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fea50"},"kids_end":{"t":"ptr","v":"0x0e8fea5c"},"kids_cap":{"t":"ptr","v":"0x0e8fea5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482dd00"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x1f347088"},"kids_end":{"t":"ptr","v":"0x1f34708c"},"kids_cap":{"t":"ptr","v":"0x1f34708c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482dd00"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x1f347088"},"kids_end":{"t":"ptr","v":"0x1f34708c"},"kids_cap":{"t":"ptr","v":"0x1f34708c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d958"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x1f347168"},"kids_end":{"t":"ptr","v":"0x1f34716c"},"kids_cap":{"t":"ptr","v":"0x1f34716c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d958"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x1f347168"},"kids_end":{"t":"ptr","v":"0x1f34716c"},"kids_cap":{"t":"ptr","v":"0x1f34716c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493c3a0"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x1f347018"},"kids_end":{"t":"ptr","v":"0x1f34701c"},"kids_cap":{"t":"ptr","v":"0x1f34701c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c3a0"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x1f347018"},"kids_end":{"t":"ptr","v":"0x1f34701c"},"kids_cap":{"t":"ptr","v":"0x1f34701c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658c50"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x1f347138"},"kids_end":{"t":"ptr","v":"0x1f34713c"},"kids_cap":{"t":"ptr","v":"0x1f34713c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658c50"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x1f347138"},"kids_end":{"t":"ptr","v":"0x1f34713c"},"kids_cap":{"t":"ptr","v":"0x1f34713c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d208"},"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":"0x0482d208"},"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":"0x0482da90"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe8d0"},"kids_end":{"t":"ptr","v":"0x0e8fe8dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482da90"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe8d0"},"kids_end":{"t":"ptr","v":"0x0e8fe8dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04951688"},"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":"0x04951688"},"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":"0x0493b8a8"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x1f347158"},"kids_end":{"t":"ptr","v":"0x1f34715c"},"kids_cap":{"t":"ptr","v":"0x1f34715c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b8a8"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x1f347158"},"kids_end":{"t":"ptr","v":"0x1f34715c"},"kids_cap":{"t":"ptr","v":"0x1f34715c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482cd28"},"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":"0x0482cd28"},"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":"0x0493c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe900"},"kids_end":{"t":"ptr","v":"0x0e8fe90c"},"kids_cap":{"t":"ptr","v":"0x0e8fe90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe900"},"kids_end":{"t":"ptr","v":"0x0e8fe90c"},"kids_cap":{"t":"ptr","v":"0x0e8fe90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d478"},"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":"0x0482d478"},"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":"0x0482d340"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x1f3470a8"},"kids_end":{"t":"ptr","v":"0x1f3470b0"},"kids_cap":{"t":"ptr","v":"0x1f3470b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d340"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x1f3470a8"},"kids_end":{"t":"ptr","v":"0x1f3470b0"},"kids_cap":{"t":"ptr","v":"0x1f3470b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493bb18"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8feb88"},"kids_end":{"t":"ptr","v":"0x0e8feb98"},"kids_cap":{"t":"ptr","v":"0x0e8feb98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bb18"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8feb88"},"kids_end":{"t":"ptr","v":"0x0e8feb98"},"kids_cap":{"t":"ptr","v":"0x0e8feb98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x1f347198"},"kids_end":{"t":"ptr","v":"0x1f3471a0"},"kids_cap":{"t":"ptr","v":"0x1f3471a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x1f347198"},"kids_end":{"t":"ptr","v":"0x1f3471a0"},"kids_cap":{"t":"ptr","v":"0x1f3471a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657a08"},"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":"0x0e657a08"},"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":"0x0493bd88"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x1f3470b8"},"kids_end":{"t":"ptr","v":"0x1f3470bc"},"kids_cap":{"t":"ptr","v":"0x1f3470bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bd88"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x1f3470b8"},"kids_end":{"t":"ptr","v":"0x1f3470bc"},"kids_cap":{"t":"ptr","v":"0x1f3470bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04951558"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8feb70"},"kids_end":{"t":"ptr","v":"0x0e8feb7c"},"kids_cap":{"t":"ptr","v":"0x0e8feb7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951558"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8feb70"},"kids_end":{"t":"ptr","v":"0x0e8feb7c"},"kids_cap":{"t":"ptr","v":"0x0e8feb7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e5e0950"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x1f347058"},"kids_end":{"t":"ptr","v":"0x1f34705c"},"kids_cap":{"t":"ptr","v":"0x1f34705c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e5e0950"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x1f347058"},"kids_end":{"t":"ptr","v":"0x1f34705c"},"kids_cap":{"t":"ptr","v":"0x1f34705c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493bec0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x1f347078"},"kids_end":{"t":"ptr","v":"0x1f34707c"},"kids_cap":{"t":"ptr","v":"0x1f34707c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bec0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x1f347078"},"kids_end":{"t":"ptr","v":"0x1f34707c"},"kids_cap":{"t":"ptr","v":"0x1f34707c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493bc50"},"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":"0x0493bc50"},"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":"0x0493b9e0"},"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":"0x0493b9e0"},"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":"0x0482c848"},"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":"0x0482c848"},"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":"0x04951428"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x1f3470c8"},"kids_end":{"t":"ptr","v":"0x1f3470cc"},"kids_cap":{"t":"ptr","v":"0x1f3470cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951428"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x1f3470c8"},"kids_end":{"t":"ptr","v":"0x1f3470cc"},"kids_cap":{"t":"ptr","v":"0x1f3470cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482ce60"},"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":"0x0482ce60"},"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":"0x049512f8"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe930"},"kids_end":{"t":"ptr","v":"0x0e8fe93c"},"kids_cap":{"t":"ptr","v":"0x0e8fe93c"},"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":"0x049512f8"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe930"},"kids_end":{"t":"ptr","v":"0x0e8fe93c"},"kids_cap":{"t":"ptr","v":"0x0e8fe93c"},"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":"0x04939f70"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x1f347148"},"kids_end":{"t":"ptr","v":"0x1f34714c"},"kids_cap":{"t":"ptr","v":"0x1f34714c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04939f70"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x1f347148"},"kids_end":{"t":"ptr","v":"0x1f34714c"},"kids_cap":{"t":"ptr","v":"0x1f34714c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e656d80"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x1f347008"},"kids_end":{"t":"ptr","v":"0x1f34700c"},"kids_cap":{"t":"ptr","v":"0x1f34700c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656d80"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x1f347008"},"kids_end":{"t":"ptr","v":"0x1f34700c"},"kids_cap":{"t":"ptr","v":"0x1f34700c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6558c8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x1f347108"},"kids_end":{"t":"ptr","v":"0x1f34710c"},"kids_cap":{"t":"ptr","v":"0x1f34710c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6558c8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x1f347108"},"kids_end":{"t":"ptr","v":"0x1f34710c"},"kids_cap":{"t":"ptr","v":"0x1f34710c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658b18"},"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":"0x0e658b18"},"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":"0x0e6569d8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x1f3471a8"},"kids_end":{"t":"ptr","v":"0x1f3471b0"},"kids_cap":{"t":"ptr","v":"0x1f3471b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6569d8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x1f3471a8"},"kids_end":{"t":"ptr","v":"0x1f3471b0"},"kids_cap":{"t":"ptr","v":"0x1f3471b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658d88"},"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":"0x0e658d88"},"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":"0x0e655da8"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x1f3471c8"},"kids_end":{"t":"ptr","v":"0x1f3471d0"},"kids_cap":{"t":"ptr","v":"0x1f3471d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655da8"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x1f3471c8"},"kids_end":{"t":"ptr","v":"0x1f3471d0"},"kids_cap":{"t":"ptr","v":"0x1f3471d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6583c8"},"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":"0x0e6583c8"},"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":"0x0480ff18"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x1f3471d8"},"kids_end":{"t":"ptr","v":"0x1f3471dc"},"kids_cap":{"t":"ptr","v":"0x1f3471dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0480ff18"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x1f3471d8"},"kids_end":{"t":"ptr","v":"0x1f3471dc"},"kids_cap":{"t":"ptr","v":"0x1f3471dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a0a0"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x1f347098"},"kids_end":{"t":"ptr","v":"0x1f34709c"},"kids_cap":{"t":"ptr","v":"0x1f34709c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a0a0"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x1f347098"},"kids_end":{"t":"ptr","v":"0x1f34709c"},"kids_cap":{"t":"ptr","v":"0x1f34709c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0481f338"},"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":"0x0481f338"},"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":"0x0482f960"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x1f347118"},"kids_end":{"t":"ptr","v":"0x1f34711c"},"kids_cap":{"t":"ptr","v":"0x1f34711c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f960"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x1f347118"},"kids_end":{"t":"ptr","v":"0x1f34711c"},"kids_cap":{"t":"ptr","v":"0x1f34711c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831968"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x1f3471e8"},"kids_end":{"t":"ptr","v":"0x1f3471ec"},"kids_cap":{"t":"ptr","v":"0x1f3471ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831968"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x1f3471e8"},"kids_end":{"t":"ptr","v":"0x1f3471ec"},"kids_cap":{"t":"ptr","v":"0x1f3471ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831d10"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x1f3471f8"},"kids_end":{"t":"ptr","v":"0x1f3471fc"},"kids_cap":{"t":"ptr","v":"0x1f3471fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831d10"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x1f3471f8"},"kids_end":{"t":"ptr","v":"0x1f3471fc"},"kids_cap":{"t":"ptr","v":"0x1f3471fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830e70"},"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":"0x04830e70"},"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":"0x0481ed20"},"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":"0x0481ed20"},"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":"0x04820448"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x1f3470e8"},"kids_end":{"t":"ptr","v":"0x1f3470ec"},"kids_cap":{"t":"ptr","v":"0x1f3470ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820448"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x1f3470e8"},"kids_end":{"t":"ptr","v":"0x1f3470ec"},"kids_cap":{"t":"ptr","v":"0x1f3470ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831488"},"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":"0x04831488"},"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":"0x0481fbc0"},"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":"0x0481fbc0"},"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":"0x0482ee68"},"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":"0x0482ee68"},"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":"0x0481f200"},"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":"0x0481f200"},"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":"0x0482f828"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x1f3470d8"},"kids_end":{"t":"ptr","v":"0x1f3470dc"},"kids_cap":{"t":"ptr","v":"0x1f3470dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f828"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x1f3470d8"},"kids_end":{"t":"ptr","v":"0x1f3470dc"},"kids_cap":{"t":"ptr","v":"0x1f3470dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830990"},"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":"0x04830990"},"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":"0x04830c00"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x1f3470f8"},"kids_end":{"t":"ptr","v":"0x1f3470fc"},"kids_cap":{"t":"ptr","v":"0x1f3470fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830c00"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x1f3470f8"},"kids_end":{"t":"ptr","v":"0x1f3470fc"},"kids_cap":{"t":"ptr","v":"0x1f3470fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482e1e0"},"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":"0x0482e1e0"},"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":"0x048321f0"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x1f347128"},"kids_end":{"t":"ptr","v":"0x1f34712c"},"kids_cap":{"t":"ptr","v":"0x1f34712c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048321f0"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x1f347128"},"kids_end":{"t":"ptr","v":"0x1f34712c"},"kids_cap":{"t":"ptr","v":"0x1f34712c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04820310"},"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":"0x04820310"},"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":"0x0482e850"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x1f347028"},"kids_end":{"t":"ptr","v":"0x1f347030"},"kids_cap":{"t":"ptr","v":"0x1f347030"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e850"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x1f347028"},"kids_end":{"t":"ptr","v":"0x1f347030"},"kids_cap":{"t":"ptr","v":"0x1f347030"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831f80"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x1f347038"},"kids_end":{"t":"ptr","v":"0x1f347040"},"kids_cap":{"t":"ptr","v":"0x1f347040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831f80"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x1f347038"},"kids_end":{"t":"ptr","v":"0x1f347040"},"kids_cap":{"t":"ptr","v":"0x1f347040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048315c0"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x1f347068"},"kids_end":{"t":"ptr","v":"0x1f34706c"},"kids_cap":{"t":"ptr","v":"0x1f34706c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048315c0"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x1f347068"},"kids_end":{"t":"ptr","v":"0x1f34706c"},"kids_cap":{"t":"ptr","v":"0x1f34706c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830ac8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x1f347048"},"kids_end":{"t":"ptr","v":"0x1f347050"},"kids_cap":{"t":"ptr","v":"0x1f347050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830ac8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x1f347048"},"kids_end":{"t":"ptr","v":"0x1f347050"},"kids_cap":{"t":"ptr","v":"0x1f347050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048316f8"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x1f347228"},"kids_end":{"t":"ptr","v":"0x1f347230"},"kids_cap":{"t":"ptr","v":"0x1f347230"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048316f8"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x1f347228"},"kids_end":{"t":"ptr","v":"0x1f347230"},"kids_cap":{"t":"ptr","v":"0x1f347230"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482e0a8"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x1f347258"},"kids_end":{"t":"ptr","v":"0x1f34725c"},"kids_cap":{"t":"ptr","v":"0x1f34725c"},"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":"0x0482e0a8"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x1f347258"},"kids_end":{"t":"ptr","v":"0x1f34725c"},"kids_cap":{"t":"ptr","v":"0x1f34725c"},"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":"0x04830d38"},"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":"0x04830d38"},"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":"0x048200a0"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8feab0"},"kids_end":{"t":"ptr","v":"0x0e8feabc"},"kids_cap":{"t":"ptr","v":"0x0e8feabc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x048200a0"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8feab0"},"kids_end":{"t":"ptr","v":"0x0e8feabc"},"kids_cap":{"t":"ptr","v":"0x0e8feabc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0482ff78"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x1f3472d8"},"kids_end":{"t":"ptr","v":"0x1f3472dc"},"kids_cap":{"t":"ptr","v":"0x1f3472dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ff78"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x1f3472d8"},"kids_end":{"t":"ptr","v":"0x1f3472dc"},"kids_cap":{"t":"ptr","v":"0x1f3472dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481eab0"},"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":"0x0481eab0"},"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":"0x048301e8"},"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":"0x048301e8"},"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":"0x0481ef90"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x1f347308"},"kids_end":{"t":"ptr","v":"0x1f347310"},"kids_cap":{"t":"ptr","v":"0x1f347310"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ef90"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x1f347308"},"kids_end":{"t":"ptr","v":"0x1f347310"},"kids_cap":{"t":"ptr","v":"0x1f347310"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831e48"},"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":"0x04831e48"},"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":"0x04830320"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x1f3472c8"},"kids_end":{"t":"ptr","v":"0x1f3472cc"},"kids_cap":{"t":"ptr","v":"0x1f3472cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830320"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x1f3472c8"},"kids_end":{"t":"ptr","v":"0x1f3472cc"},"kids_cap":{"t":"ptr","v":"0x1f3472cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831350"},"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":"0x04831350"},"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":"0x0482e6c0"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x1f3472e8"},"kids_end":{"t":"ptr","v":"0x1f3472ec"},"kids_cap":{"t":"ptr","v":"0x1f3472ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e6c0"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x1f3472e8"},"kids_end":{"t":"ptr","v":"0x1f3472ec"},"kids_cap":{"t":"ptr","v":"0x1f3472ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481ee58"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe918"},"kids_end":{"t":"ptr","v":"0x0e8fe928"},"kids_cap":{"t":"ptr","v":"0x0e8fe928"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ee58"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe918"},"kids_end":{"t":"ptr","v":"0x0e8fe928"},"kids_cap":{"t":"ptr","v":"0x0e8fe928"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04820580"},"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":"0x04820580"},"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":"0x0482efa0"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x1f347318"},"kids_end":{"t":"ptr","v":"0x1f347320"},"kids_cap":{"t":"ptr","v":"0x1f347320"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482efa0"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x1f347318"},"kids_end":{"t":"ptr","v":"0x1f347320"},"kids_cap":{"t":"ptr","v":"0x1f347320"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048306c8"},"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":"0x048306c8"},"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":"0x0481ff68"},"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":"0x0481ff68"},"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":"0x0482e988"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x1f347218"},"kids_end":{"t":"ptr","v":"0x1f34721c"},"kids_cap":{"t":"ptr","v":"0x1f34721c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e988"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x1f347218"},"kids_end":{"t":"ptr","v":"0x1f34721c"},"kids_cap":{"t":"ptr","v":"0x1f34721c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04832598"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fea08"},"kids_end":{"t":"ptr","v":"0x0e8fea18"},"kids_cap":{"t":"ptr","v":"0x0e8fea18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04832598"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fea08"},"kids_end":{"t":"ptr","v":"0x0e8fea18"},"kids_cap":{"t":"ptr","v":"0x0e8fea18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x048320b8"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x1f347238"},"kids_end":{"t":"ptr","v":"0x1f347240"},"kids_cap":{"t":"ptr","v":"0x1f347240"},"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":"0x048320b8"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x1f347238"},"kids_end":{"t":"ptr","v":"0x1f347240"},"kids_cap":{"t":"ptr","v":"0x1f347240"},"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":"0x04831218"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x1f347268"},"kids_end":{"t":"ptr","v":"0x1f34726c"},"kids_cap":{"t":"ptr","v":"0x1f34726c"},"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":"0x04831218"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x1f347268"},"kids_end":{"t":"ptr","v":"0x1f34726c"},"kids_cap":{"t":"ptr","v":"0x1f34726c"},"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":"0x0481f6e0"},"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":"0x0481f6e0"},"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":"0x0482f480"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x1f347248"},"kids_end":{"t":"ptr","v":"0x1f34724c"},"kids_cap":{"t":"ptr","v":"0x1f34724c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f480"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x1f347248"},"kids_end":{"t":"ptr","v":"0x1f34724c"},"kids_cap":{"t":"ptr","v":"0x1f34724c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482e450"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x1f347378"},"kids_end":{"t":"ptr","v":"0x1f347380"},"kids_cap":{"t":"ptr","v":"0x1f347380"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e450"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x1f347378"},"kids_end":{"t":"ptr","v":"0x1f347380"},"kids_cap":{"t":"ptr","v":"0x1f347380"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482fbd0"},"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":"0x0482fbd0"},"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":"0x04831830"},"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":"0x04831830"},"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":"0x0482ebf8"},"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":"0x0482ebf8"},"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":"0x04832460"},"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":"0x04832460"},"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":"0x0482fa98"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x1f347328"},"kids_end":{"t":"ptr","v":"0x1f34732c"},"kids_cap":{"t":"ptr","v":"0x1f34732c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fa98"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x1f347328"},"kids_end":{"t":"ptr","v":"0x1f34732c"},"kids_cap":{"t":"ptr","v":"0x1f34732c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830590"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x1f347388"},"kids_end":{"t":"ptr","v":"0x1f347390"},"kids_cap":{"t":"ptr","v":"0x1f347390"},"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":"0x04830590"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x1f347388"},"kids_end":{"t":"ptr","v":"0x1f347390"},"kids_cap":{"t":"ptr","v":"0x1f347390"},"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":"0x0482df70"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8feac8"},"kids_end":{"t":"ptr","v":"0x0e8fead8"},"kids_cap":{"t":"ptr","v":"0x0e8fead8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0482df70"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8feac8"},"kids_end":{"t":"ptr","v":"0x0e8fead8"},"kids_cap":{"t":"ptr","v":"0x0e8fead8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x048206b8"},"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":"0x048206b8"},"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":"0x0481fe30"},"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":"0x0481fe30"},"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":"0x0481ebe8"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x1f347338"},"kids_end":{"t":"ptr","v":"0x1f34733c"},"kids_cap":{"t":"ptr","v":"0x1f34733c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ebe8"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x1f347338"},"kids_end":{"t":"ptr","v":"0x1f34733c"},"kids_cap":{"t":"ptr","v":"0x1f34733c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d5b0"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x1f347348"},"kids_end":{"t":"ptr","v":"0x1f34734c"},"kids_cap":{"t":"ptr","v":"0x1f34734c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d5b0"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x1f347348"},"kids_end":{"t":"ptr","v":"0x1f34734c"},"kids_cap":{"t":"ptr","v":"0x1f34734c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481f5a8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x1f347278"},"kids_end":{"t":"ptr","v":"0x1f347280"},"kids_cap":{"t":"ptr","v":"0x1f347280"},"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":"0x0481f5a8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x1f347278"},"kids_end":{"t":"ptr","v":"0x1f347280"},"kids_cap":{"t":"ptr","v":"0x1f347280"},"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":"0x0493a1d0"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x1f347288"},"kids_end":{"t":"ptr","v":"0x1f34728c"},"kids_cap":{"t":"ptr","v":"0x1f34728c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a1d0"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x1f347288"},"kids_end":{"t":"ptr","v":"0x1f34728c"},"kids_cap":{"t":"ptr","v":"0x1f34728c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e659190"},"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":"0x0e659190"},"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":"0x0e659538"},"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":"0x0e659538"},"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":"0x0e65cd48"},"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":"0x0e65cd48"},"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":"0x0e660ee0"},"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":"0x0e660ee0"},"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":"0x0e6597a8"},"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":"0x0e6597a8"},"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":"0x0e659ef8"},"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":"0x0e659ef8"},"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":"0x0e65b9c8"},"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":"0x0e65b9c8"},"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":"0x0e65bea8"},"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":"0x0e65bea8"},"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":"0x0e659b50"},"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":"0x0e659b50"},"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":"0x0e65bc38"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x1f347298"},"kids_end":{"t":"ptr","v":"0x1f34729c"},"kids_cap":{"t":"ptr","v":"0x1f34729c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bc38"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x1f347298"},"kids_end":{"t":"ptr","v":"0x1f34729c"},"kids_cap":{"t":"ptr","v":"0x1f34729c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e659058"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fea80"},"kids_end":{"t":"ptr","v":"0x0e8fea8c"},"kids_cap":{"t":"ptr","v":"0x0e8fea8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659058"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fea80"},"kids_end":{"t":"ptr","v":"0x0e8fea8c"},"kids_cap":{"t":"ptr","v":"0x0e8fea8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65a780"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fea68"},"kids_end":{"t":"ptr","v":"0x0e8fea74"},"kids_cap":{"t":"ptr","v":"0x0e8fea74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a780"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fea68"},"kids_end":{"t":"ptr","v":"0x0e8fea74"},"kids_cap":{"t":"ptr","v":"0x0e8fea74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65ce80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8feb10"},"kids_end":{"t":"ptr","v":"0x0e8feb1c"},"kids_cap":{"t":"ptr","v":"0x0e8feb1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ce80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8feb10"},"kids_end":{"t":"ptr","v":"0x0e8feb1c"},"kids_cap":{"t":"ptr","v":"0x0e8feb1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c388"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8feb40"},"kids_end":{"t":"ptr","v":"0x0e8feb4c"},"kids_cap":{"t":"ptr","v":"0x0e8feb4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c388"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8feb40"},"kids_end":{"t":"ptr","v":"0x0e8feb4c"},"kids_cap":{"t":"ptr","v":"0x0e8feb4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65ac60"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8feaf8"},"kids_end":{"t":"ptr","v":"0x0e8feb04"},"kids_cap":{"t":"ptr","v":"0x0e8feb04"},"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":"0x0e65ac60"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8feaf8"},"kids_end":{"t":"ptr","v":"0x0e8feb04"},"kids_cap":{"t":"ptr","v":"0x0e8feb04"},"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":"0x0e65a9f0"},"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":"0x0e65a9f0"},"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":"0x0e659670"},"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":"0x0e659670"},"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":"0x0e65b758"},"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":"0x0e65b758"},"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":"0x0e660c70"},"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":"0x0e660c70"},"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":"0x049511c8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e8908d0"},"kids_end":{"t":"ptr","v":"0x0e8908e8"},"kids_cap":{"t":"ptr","v":"0x0e8908e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x049511c8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e8908d0"},"kids_end":{"t":"ptr","v":"0x0e8908e8"},"kids_cap":{"t":"ptr","v":"0x0e8908e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65a8b8"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x1f347208"},"kids_end":{"t":"ptr","v":"0x1f347210"},"kids_cap":{"t":"ptr","v":"0x1f347210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a8b8"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x1f347208"},"kids_end":{"t":"ptr","v":"0x1f347210"},"kids_cap":{"t":"ptr","v":"0x1f347210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65b008"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x1f347398"},"kids_end":{"t":"ptr","v":"0x1f3473a0"},"kids_cap":{"t":"ptr","v":"0x1f3473a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b008"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x1f347398"},"kids_end":{"t":"ptr","v":"0x1f3473a0"},"kids_cap":{"t":"ptr","v":"0x1f3473a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65cad8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x1f3472b8"},"kids_end":{"t":"ptr","v":"0x1f3472c0"},"kids_cap":{"t":"ptr","v":"0x1f3472c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cad8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x1f3472b8"},"kids_end":{"t":"ptr","v":"0x1f3472c0"},"kids_cap":{"t":"ptr","v":"0x1f3472c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e660520"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x1f3472a8"},"kids_end":{"t":"ptr","v":"0x1f3472b0"},"kids_cap":{"t":"ptr","v":"0x1f3472b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660520"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x1f3472a8"},"kids_end":{"t":"ptr","v":"0x1f3472b0"},"kids_cap":{"t":"ptr","v":"0x1f3472b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65a510"},"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":"0x0e65a510"},"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":"0x0e65bd70"},"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":"0x0e65bd70"},"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":"0x0e65b140"},"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":"0x0e65b140"},"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":"0x0e6592c8"},"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":"0x0e6592c8"},"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":"0x0e65c5f8"},"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":"0x0e65c5f8"},"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":"0x0e65c730"},"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":"0x0e65c730"},"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":"0x0e659a18"},"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":"0x0e659a18"},"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":"0x0e659400"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x1f3472f8"},"kids_end":{"t":"ptr","v":"0x1f3472fc"},"kids_cap":{"t":"ptr","v":"0x1f3472fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659400"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x1f3472f8"},"kids_end":{"t":"ptr","v":"0x1f3472fc"},"kids_cap":{"t":"ptr","v":"0x1f3472fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65aed0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x1f347358"},"kids_end":{"t":"ptr","v":"0x1f34735c"},"kids_cap":{"t":"ptr","v":"0x1f34735c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65aed0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x1f347358"},"kids_end":{"t":"ptr","v":"0x1f34735c"},"kids_cap":{"t":"ptr","v":"0x1f34735c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65b278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x1f347368"},"kids_end":{"t":"ptr","v":"0x1f34736c"},"kids_cap":{"t":"ptr","v":"0x1f34736c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x1f347368"},"kids_end":{"t":"ptr","v":"0x1f34736c"},"kids_cap":{"t":"ptr","v":"0x1f34736c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65b3b0"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x1f3473f8"},"kids_end":{"t":"ptr","v":"0x1f3473fc"},"kids_cap":{"t":"ptr","v":"0x1f3473fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b3b0"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x1f3473f8"},"kids_end":{"t":"ptr","v":"0x1f3473fc"},"kids_cap":{"t":"ptr","v":"0x1f3473fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c9a0"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x1f3473a8"},"kids_end":{"t":"ptr","v":"0x1f3473ac"},"kids_cap":{"t":"ptr","v":"0x1f3473ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c9a0"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x1f3473a8"},"kids_end":{"t":"ptr","v":"0x1f3473ac"},"kids_cap":{"t":"ptr","v":"0x1f3473ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c4c0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x1f3473b8"},"kids_end":{"t":"ptr","v":"0x1f3473bc"},"kids_cap":{"t":"ptr","v":"0x1f3473bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c4c0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x1f3473b8"},"kids_end":{"t":"ptr","v":"0x1f3473bc"},"kids_cap":{"t":"ptr","v":"0x1f3473bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c250"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x1f3473c8"},"kids_end":{"t":"ptr","v":"0x1f3473cc"},"kids_cap":{"t":"ptr","v":"0x1f3473cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c250"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x1f3473c8"},"kids_end":{"t":"ptr","v":"0x1f3473cc"},"kids_cap":{"t":"ptr","v":"0x1f3473cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c868"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x1f3473d8"},"kids_end":{"t":"ptr","v":"0x1f3473dc"},"kids_cap":{"t":"ptr","v":"0x1f3473dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c868"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x1f3473d8"},"kids_end":{"t":"ptr","v":"0x1f3473dc"},"kids_cap":{"t":"ptr","v":"0x1f3473dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e659dc0"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x1f3473e8"},"kids_end":{"t":"ptr","v":"0x1f3473ec"},"kids_cap":{"t":"ptr","v":"0x1f3473ec"},"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":"0x0e659dc0"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x1f3473e8"},"kids_end":{"t":"ptr","v":"0x1f3473ec"},"kids_cap":{"t":"ptr","v":"0x1f3473ec"},"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":"0x0e65a030"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x1f347498"},"kids_end":{"t":"ptr","v":"0x1f34749c"},"kids_cap":{"t":"ptr","v":"0x1f34749c"},"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":"0x0e65a030"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x1f347498"},"kids_end":{"t":"ptr","v":"0x1f34749c"},"kids_cap":{"t":"ptr","v":"0x1f34749c"},"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":"0x0e65bb00"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x1f347508"},"kids_end":{"t":"ptr","v":"0x1f34750c"},"kids_cap":{"t":"ptr","v":"0x1f34750c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bb00"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x1f347508"},"kids_end":{"t":"ptr","v":"0x1f34750c"},"kids_cap":{"t":"ptr","v":"0x1f34750c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":48},"turns":{"t":"i32","v":2},"next_id":{"t":"i32","v":3},"vec_begin":{"t":"ptr","v":"0x3539d3a0"},"vec_end":{"t":"ptr","v":"0x3539d3d0"},"vec_cap":{"t":"ptr","v":"0x3539d3d0"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":48},"turns":{"t":"i32","v":2},"next_id":{"t":"i32","v":4},"vec_begin":{"t":"ptr","v":"0x3539d3a0"},"vec_end":{"t":"ptr","v":"0x3539d3d0"},"vec_cap":{"t":"ptr","v":"0x3539d3d0"}}}},"observed_techs":{"before":{"t":"struct","v":{"bytes":{"t":"i32","v":440},"vec_begin":{"t":"ptr","v":"0x1f345108"},"vec_end":{"t":"ptr","v":"0x1f3452c0"},"vec_cap":{"t":"ptr","v":"0x1f3452c0"}}},"after":{"t":"struct","v":{"bytes":{"t":"i32","v":440},"vec_begin":{"t":"ptr","v":"0x1f345108"},"vec_end":{"t":"ptr","v":"0x1f3452c0"},"vec_cap":{"t":"ptr","v":"0x1f3452c0"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a300"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x1f346ea8"},"kids_end":{"t":"ptr","v":"0x1f346eac"},"kids_cap":{"t":"ptr","v":"0x1f346eac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652890"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x1f346ee8"},"kids_end":{"t":"ptr","v":"0x1f346eec"},"kids_cap":{"t":"ptr","v":"0x1f346eec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651ed0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6529c8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652278"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe888"},"kids_end":{"t":"ptr","v":"0x0e8fe894"},"kids_cap":{"t":"ptr","v":"0x0e8fe894"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651780"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x1f346f38"},"kids_end":{"t":"ptr","v":"0x1f346f3c"},"kids_cap":{"t":"ptr","v":"0x1f346f3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652b00"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x1f346f78"},"kids_end":{"t":"ptr","v":"0x1f346f80"},"kids_cap":{"t":"ptr","v":"0x1f346f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652ea8"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04950e38"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x1f346e18"},"kids_end":{"t":"ptr","v":"0x1f346e1c"},"kids_cap":{"t":"ptr","v":"0x1f346e1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6518b8"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652758"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651168"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x1f346f88"},"kids_end":{"t":"ptr","v":"0x1f346f8c"},"kids_cap":{"t":"ptr","v":"0x1f346f8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656150"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655040"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe6f0"},"kids_end":{"t":"ptr","v":"0x0e8fe6fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b620"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe8a0"},"kids_end":{"t":"ptr","v":"0x0e8fe8ac"},"kids_cap":{"t":"ptr","v":"0x0e8fe8ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659c88"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a3d8"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6598e0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656c48"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x1f346e38"},"kids_end":{"t":"ptr","v":"0x1f346e40"},"kids_cap":{"t":"ptr","v":"0x1f346e40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655790"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe5b8"},"kids_end":{"t":"ptr","v":"0x0e8fe5c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655658"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x1f346fc8"},"kids_end":{"t":"ptr","v":"0x1f346fcc"},"kids_cap":{"t":"ptr","v":"0x1f346fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6552b0"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656eb8"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655ee0"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x1f346f58"},"kids_end":{"t":"ptr","v":"0x1f346f60"},"kids_cap":{"t":"ptr","v":"0x1f346f60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6553e8"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe600"},"kids_end":{"t":"ptr","v":"0x0e8fe60c"},"kids_cap":{"t":"ptr","v":"0x0e8fe60c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6519f0"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe6a8"},"kids_end":{"t":"ptr","v":"0x0e8fe6b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655178"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x1f346e48"},"kids_end":{"t":"ptr","v":"0x1f346e4c"},"kids_cap":{"t":"ptr","v":"0x1f346e4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656018"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655c70"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656630"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe618"},"kids_end":{"t":"ptr","v":"0x0e8fe624"},"kids_cap":{"t":"ptr","v":"0x0e8fe624"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6564f8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x1f346eb8"},"kids_end":{"t":"ptr","v":"0x1f346ebc"},"kids_cap":{"t":"ptr","v":"0x1f346ebc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655520"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x1f346fd8"},"kids_end":{"t":"ptr","v":"0x1f346fdc"},"kids_cap":{"t":"ptr","v":"0x1f346fdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655b38"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x1f346f48"},"kids_end":{"t":"ptr","v":"0x1f346f4c"},"kids_cap":{"t":"ptr","v":"0x1f346f4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04950f68"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x1f346f28"},"kids_end":{"t":"ptr","v":"0x1f346f2c"},"kids_cap":{"t":"ptr","v":"0x1f346f2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656288"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6563c0"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6568a0"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655a00"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe6c0"},"kids_end":{"t":"ptr","v":"0x0e8fe6cc"},"kids_cap":{"t":"ptr","v":"0x0e8fe6cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a168"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x1f346fa8"},"kids_end":{"t":"ptr","v":"0x1f346fac"},"kids_cap":{"t":"ptr","v":"0x1f346fac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ab28"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x1f346e58"},"kids_end":{"t":"ptr","v":"0x1f346e5c"},"kids_cap":{"t":"ptr","v":"0x1f346e5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cc10"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x1f346f68"},"kids_end":{"t":"ptr","v":"0x1f346f6c"},"kids_cap":{"t":"ptr","v":"0x1f346f6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bfe0"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x1f346e08"},"kids_end":{"t":"ptr","v":"0x1f346e0c"},"kids_cap":{"t":"ptr","v":"0x1f346e0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b4e8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x1f346f08"},"kids_end":{"t":"ptr","v":"0x1f346f0c"},"kids_cap":{"t":"ptr","v":"0x1f346f0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b890"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x1f346f98"},"kids_end":{"t":"ptr","v":"0x1f346f9c"},"kids_cap":{"t":"ptr","v":"0x1f346f9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656768"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657c78"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658ec0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x1f346fb8"},"kids_end":{"t":"ptr","v":"0x1f346fbc"},"kids_cap":{"t":"ptr","v":"0x1f346fbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657048"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6589e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe6d8"},"kids_end":{"t":"ptr","v":"0x0e8fe6e4"},"kids_cap":{"t":"ptr","v":"0x0e8fe6e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6578d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x1f346e88"},"kids_end":{"t":"ptr","v":"0x1f346e90"},"kids_cap":{"t":"ptr","v":"0x1f346e90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657ee8"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658158"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951098"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x1f346fe8"},"kids_end":{"t":"ptr","v":"0x1f346fec"},"kids_cap":{"t":"ptr","v":"0x1f346fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658770"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x1f346ff8"},"kids_end":{"t":"ptr","v":"0x1f347000"},"kids_cap":{"t":"ptr","v":"0x1f347000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657db0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x1f346e28"},"kids_end":{"t":"ptr","v":"0x1f346e2c"},"kids_cap":{"t":"ptr","v":"0x1f346e2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821d00"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x1f346e68"},"kids_end":{"t":"ptr","v":"0x1f346e6c"},"kids_cap":{"t":"ptr","v":"0x1f346e6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f950"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe8e8"},"kids_end":{"t":"ptr","v":"0x0e8fe8f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe8f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821478"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e9a24f0"},"kids_end":{"t":"ptr","v":"0x0e9a2510"},"kids_cap":{"t":"ptr","v":"0x0e9a2510"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04822318"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x1f346e78"},"kids_end":{"t":"ptr","v":"0x1f346e7c"},"kids_cap":{"t":"ptr","v":"0x1f346e7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820f98"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x1f346e98"},"kids_end":{"t":"ptr","v":"0x1f346e9c"},"kids_cap":{"t":"ptr","v":"0x1f346e9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651d98"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048210d0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821340"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x1f346ec8"},"kids_end":{"t":"ptr","v":"0x1f346ed0"},"kids_cap":{"t":"ptr","v":"0x1f346ed0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481e978"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481e840"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x1f346ed8"},"kids_end":{"t":"ptr","v":"0x1f346edc"},"kids_cap":{"t":"ptr","v":"0x1f346edc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048216e8"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821958"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a430"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x1f346ef8"},"kids_end":{"t":"ptr","v":"0x1f346efc"},"kids_cap":{"t":"ptr","v":"0x1f346efc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048215b0"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x1f346f18"},"kids_end":{"t":"ptr","v":"0x1f346f1c"},"kids_cap":{"t":"ptr","v":"0x1f346f1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048220a8"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0480fde8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x1f3471b8"},"kids_end":{"t":"ptr","v":"0x1f3471bc"},"kids_cap":{"t":"ptr","v":"0x1f3471bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c4d8"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482de38"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d0d0"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x1f347178"},"kids_end":{"t":"ptr","v":"0x1f347180"},"kids_cap":{"t":"ptr","v":"0x1f347180"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bff8"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x1f347188"},"kids_end":{"t":"ptr","v":"0x1f34718c"},"kids_cap":{"t":"ptr","v":"0x1f34718c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e318"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e588"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b638"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e890c10"},"kids_end":{"t":"ptr","v":"0x0e890c24"},"kids_cap":{"t":"ptr","v":"0x0e890c24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657798"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fea50"},"kids_end":{"t":"ptr","v":"0x0e8fea5c"},"kids_cap":{"t":"ptr","v":"0x0e8fea5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482dd00"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x1f347088"},"kids_end":{"t":"ptr","v":"0x1f34708c"},"kids_cap":{"t":"ptr","v":"0x1f34708c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d958"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x1f347168"},"kids_end":{"t":"ptr","v":"0x1f34716c"},"kids_cap":{"t":"ptr","v":"0x1f34716c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c3a0"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x1f347018"},"kids_end":{"t":"ptr","v":"0x1f34701c"},"kids_cap":{"t":"ptr","v":"0x1f34701c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658c50"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x1f347138"},"kids_end":{"t":"ptr","v":"0x1f34713c"},"kids_cap":{"t":"ptr","v":"0x1f34713c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482da90"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe8d0"},"kids_end":{"t":"ptr","v":"0x0e8fe8dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe8dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951688"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b8a8"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x1f347158"},"kids_end":{"t":"ptr","v":"0x1f34715c"},"kids_cap":{"t":"ptr","v":"0x1f34715c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cd28"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe900"},"kids_end":{"t":"ptr","v":"0x0e8fe90c"},"kids_cap":{"t":"ptr","v":"0x0e8fe90c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d478"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d340"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x1f3470a8"},"kids_end":{"t":"ptr","v":"0x1f3470b0"},"kids_cap":{"t":"ptr","v":"0x1f3470b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bb18"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8feb88"},"kids_end":{"t":"ptr","v":"0x0e8feb98"},"kids_cap":{"t":"ptr","v":"0x0e8feb98"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x1f347198"},"kids_end":{"t":"ptr","v":"0x1f3471a0"},"kids_cap":{"t":"ptr","v":"0x1f3471a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657a08"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bd88"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x1f3470b8"},"kids_end":{"t":"ptr","v":"0x1f3470bc"},"kids_cap":{"t":"ptr","v":"0x1f3470bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951558"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8feb70"},"kids_end":{"t":"ptr","v":"0x0e8feb7c"},"kids_cap":{"t":"ptr","v":"0x0e8feb7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e5e0950"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x1f347058"},"kids_end":{"t":"ptr","v":"0x1f34705c"},"kids_cap":{"t":"ptr","v":"0x1f34705c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bec0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x1f347078"},"kids_end":{"t":"ptr","v":"0x1f34707c"},"kids_cap":{"t":"ptr","v":"0x1f34707c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bc50"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b9e0"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482c848"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951428"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x1f3470c8"},"kids_end":{"t":"ptr","v":"0x1f3470cc"},"kids_cap":{"t":"ptr","v":"0x1f3470cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ce60"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049512f8"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe930"},"kids_end":{"t":"ptr","v":"0x0e8fe93c"},"kids_cap":{"t":"ptr","v":"0x0e8fe93c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":5768},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":2},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04939f70"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x1f347148"},"kids_end":{"t":"ptr","v":"0x1f34714c"},"kids_cap":{"t":"ptr","v":"0x1f34714c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656d80"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x1f347008"},"kids_end":{"t":"ptr","v":"0x1f34700c"},"kids_cap":{"t":"ptr","v":"0x1f34700c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6558c8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x1f347108"},"kids_end":{"t":"ptr","v":"0x1f34710c"},"kids_cap":{"t":"ptr","v":"0x1f34710c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658b18"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6569d8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x1f3471a8"},"kids_end":{"t":"ptr","v":"0x1f3471b0"},"kids_cap":{"t":"ptr","v":"0x1f3471b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658d88"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655da8"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x1f3471c8"},"kids_end":{"t":"ptr","v":"0x1f3471d0"},"kids_cap":{"t":"ptr","v":"0x1f3471d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6583c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0480ff18"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x1f3471d8"},"kids_end":{"t":"ptr","v":"0x1f3471dc"},"kids_cap":{"t":"ptr","v":"0x1f3471dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a0a0"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x1f347098"},"kids_end":{"t":"ptr","v":"0x1f34709c"},"kids_cap":{"t":"ptr","v":"0x1f34709c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f338"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f960"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x1f347118"},"kids_end":{"t":"ptr","v":"0x1f34711c"},"kids_cap":{"t":"ptr","v":"0x1f34711c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831968"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x1f3471e8"},"kids_end":{"t":"ptr","v":"0x1f3471ec"},"kids_cap":{"t":"ptr","v":"0x1f3471ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831d10"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x1f3471f8"},"kids_end":{"t":"ptr","v":"0x1f3471fc"},"kids_cap":{"t":"ptr","v":"0x1f3471fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830e70"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ed20"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820448"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x1f3470e8"},"kids_end":{"t":"ptr","v":"0x1f3470ec"},"kids_cap":{"t":"ptr","v":"0x1f3470ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831488"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fbc0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ee68"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f200"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f828"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x1f3470d8"},"kids_end":{"t":"ptr","v":"0x1f3470dc"},"kids_cap":{"t":"ptr","v":"0x1f3470dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830990"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830c00"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x1f3470f8"},"kids_end":{"t":"ptr","v":"0x1f3470fc"},"kids_cap":{"t":"ptr","v":"0x1f3470fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e1e0"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048321f0"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x1f347128"},"kids_end":{"t":"ptr","v":"0x1f34712c"},"kids_cap":{"t":"ptr","v":"0x1f34712c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820310"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e850"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x1f347028"},"kids_end":{"t":"ptr","v":"0x1f347030"},"kids_cap":{"t":"ptr","v":"0x1f347030"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831f80"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x1f347038"},"kids_end":{"t":"ptr","v":"0x1f347040"},"kids_cap":{"t":"ptr","v":"0x1f347040"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048315c0"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x1f347068"},"kids_end":{"t":"ptr","v":"0x1f34706c"},"kids_cap":{"t":"ptr","v":"0x1f34706c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830ac8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x1f347048"},"kids_end":{"t":"ptr","v":"0x1f347050"},"kids_cap":{"t":"ptr","v":"0x1f347050"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048316f8"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x1f347228"},"kids_end":{"t":"ptr","v":"0x1f347230"},"kids_cap":{"t":"ptr","v":"0x1f347230"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e0a8"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x1f347258"},"kids_end":{"t":"ptr","v":"0x1f34725c"},"kids_cap":{"t":"ptr","v":"0x1f34725c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830d38"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048200a0"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8feab0"},"kids_end":{"t":"ptr","v":"0x0e8feabc"},"kids_cap":{"t":"ptr","v":"0x0e8feabc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ff78"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x1f3472d8"},"kids_end":{"t":"ptr","v":"0x1f3472dc"},"kids_cap":{"t":"ptr","v":"0x1f3472dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481eab0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048301e8"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ef90"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x1f347308"},"kids_end":{"t":"ptr","v":"0x1f347310"},"kids_cap":{"t":"ptr","v":"0x1f347310"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831e48"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830320"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x1f3472c8"},"kids_end":{"t":"ptr","v":"0x1f3472cc"},"kids_cap":{"t":"ptr","v":"0x1f3472cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831350"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e6c0"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x1f3472e8"},"kids_end":{"t":"ptr","v":"0x1f3472ec"},"kids_cap":{"t":"ptr","v":"0x1f3472ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ee58"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fe918"},"kids_end":{"t":"ptr","v":"0x0e8fe928"},"kids_cap":{"t":"ptr","v":"0x0e8fe928"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820580"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482efa0"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x1f347318"},"kids_end":{"t":"ptr","v":"0x1f347320"},"kids_cap":{"t":"ptr","v":"0x1f347320"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048306c8"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ff68"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e988"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x1f347218"},"kids_end":{"t":"ptr","v":"0x1f34721c"},"kids_cap":{"t":"ptr","v":"0x1f34721c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04832598"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fea08"},"kids_end":{"t":"ptr","v":"0x0e8fea18"},"kids_cap":{"t":"ptr","v":"0x0e8fea18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048320b8"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x1f347238"},"kids_end":{"t":"ptr","v":"0x1f347240"},"kids_cap":{"t":"ptr","v":"0x1f347240"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831218"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x1f347268"},"kids_end":{"t":"ptr","v":"0x1f34726c"},"kids_cap":{"t":"ptr","v":"0x1f34726c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f6e0"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f480"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x1f347248"},"kids_end":{"t":"ptr","v":"0x1f34724c"},"kids_cap":{"t":"ptr","v":"0x1f34724c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e450"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x1f347378"},"kids_end":{"t":"ptr","v":"0x1f347380"},"kids_cap":{"t":"ptr","v":"0x1f347380"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fbd0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831830"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ebf8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04832460"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fa98"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x1f347328"},"kids_end":{"t":"ptr","v":"0x1f34732c"},"kids_cap":{"t":"ptr","v":"0x1f34732c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830590"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x1f347388"},"kids_end":{"t":"ptr","v":"0x1f347390"},"kids_cap":{"t":"ptr","v":"0x1f347390"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482df70"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e8feac8"},"kids_end":{"t":"ptr","v":"0x0e8fead8"},"kids_cap":{"t":"ptr","v":"0x0e8fead8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048206b8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fe30"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ebe8"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x1f347338"},"kids_end":{"t":"ptr","v":"0x1f34733c"},"kids_cap":{"t":"ptr","v":"0x1f34733c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d5b0"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x1f347348"},"kids_end":{"t":"ptr","v":"0x1f34734c"},"kids_cap":{"t":"ptr","v":"0x1f34734c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f5a8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x1f347278"},"kids_end":{"t":"ptr","v":"0x1f347280"},"kids_cap":{"t":"ptr","v":"0x1f347280"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a1d0"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x1f347288"},"kids_end":{"t":"ptr","v":"0x1f34728c"},"kids_cap":{"t":"ptr","v":"0x1f34728c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659190"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659538"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cd48"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660ee0"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6597a8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659ef8"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b9c8"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bea8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bc38"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x1f347298"},"kids_end":{"t":"ptr","v":"0x1f34729c"},"kids_cap":{"t":"ptr","v":"0x1f34729c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659058"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fea80"},"kids_end":{"t":"ptr","v":"0x0e8fea8c"},"kids_cap":{"t":"ptr","v":"0x0e8fea8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a780"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fea68"},"kids_end":{"t":"ptr","v":"0x0e8fea74"},"kids_cap":{"t":"ptr","v":"0x0e8fea74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ce80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8feb10"},"kids_end":{"t":"ptr","v":"0x0e8feb1c"},"kids_cap":{"t":"ptr","v":"0x0e8feb1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c388"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8feb40"},"kids_end":{"t":"ptr","v":"0x0e8feb4c"},"kids_cap":{"t":"ptr","v":"0x0e8feb4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ac60"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8feaf8"},"kids_end":{"t":"ptr","v":"0x0e8feb04"},"kids_cap":{"t":"ptr","v":"0x0e8feb04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a9f0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659670"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b758"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660c70"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049511c8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e8908d0"},"kids_end":{"t":"ptr","v":"0x0e8908e8"},"kids_cap":{"t":"ptr","v":"0x0e8908e8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a8b8"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x1f347208"},"kids_end":{"t":"ptr","v":"0x1f347210"},"kids_cap":{"t":"ptr","v":"0x1f347210"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b008"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x1f347398"},"kids_end":{"t":"ptr","v":"0x1f3473a0"},"kids_cap":{"t":"ptr","v":"0x1f3473a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cad8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x1f3472b8"},"kids_end":{"t":"ptr","v":"0x1f3472c0"},"kids_cap":{"t":"ptr","v":"0x1f3472c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660520"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x1f3472a8"},"kids_end":{"t":"ptr","v":"0x1f3472b0"},"kids_cap":{"t":"ptr","v":"0x1f3472b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a510"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bd70"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b140"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6592c8"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c5f8"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c730"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659a18"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659400"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x1f3472f8"},"kids_end":{"t":"ptr","v":"0x1f3472fc"},"kids_cap":{"t":"ptr","v":"0x1f3472fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65aed0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x1f347358"},"kids_end":{"t":"ptr","v":"0x1f34735c"},"kids_cap":{"t":"ptr","v":"0x1f34735c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x1f347368"},"kids_end":{"t":"ptr","v":"0x1f34736c"},"kids_cap":{"t":"ptr","v":"0x1f34736c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b3b0"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x1f3473f8"},"kids_end":{"t":"ptr","v":"0x1f3473fc"},"kids_cap":{"t":"ptr","v":"0x1f3473fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c9a0"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x1f3473a8"},"kids_end":{"t":"ptr","v":"0x1f3473ac"},"kids_cap":{"t":"ptr","v":"0x1f3473ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c4c0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x1f3473b8"},"kids_end":{"t":"ptr","v":"0x1f3473bc"},"kids_cap":{"t":"ptr","v":"0x1f3473bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c250"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x1f3473c8"},"kids_end":{"t":"ptr","v":"0x1f3473cc"},"kids_cap":{"t":"ptr","v":"0x1f3473cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c868"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x1f3473d8"},"kids_end":{"t":"ptr","v":"0x1f3473dc"},"kids_cap":{"t":"ptr","v":"0x1f3473dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659dc0"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x1f3473e8"},"kids_end":{"t":"ptr","v":"0x1f3473ec"},"kids_cap":{"t":"ptr","v":"0x1f3473ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a030"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x1f347498"},"kids_end":{"t":"ptr","v":"0x1f34749c"},"kids_cap":{"t":"ptr","v":"0x1f34749c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bb00"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x1f347508"},"kids_end":{"t":"ptr","v":"0x1f34750c"},"kids_cap":{"t":"ptr","v":"0x1f34750c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":48},"turns":{"t":"i32","v":2},"next_id":{"t":"i32","v":4},"vec_begin":{"t":"ptr","v":"0x3539d3a0"},"vec_end":{"t":"ptr","v":"0x3539d3d0"},"vec_cap":{"t":"ptr","v":"0x3539d3d0"}}}},"observed_techs":{"after":{"t":"struct","v":{"bytes":{"t":"i32","v":440},"vec_begin":{"t":"ptr","v":"0x1f345108"},"vec_end":{"t":"ptr","v":"0x1f3452c0"},"vec_cap":{"t":"ptr","v":"0x1f3452c0"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":284240773,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":1,"thread":500,"depth":0,"args":[{"t":"ptr","v":"0x0e93e3f8","n":"tree"},{"t":"ptr","v":"0x0e90b0f8","n":"owner"},{"t":"i32","v":0,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e922d80","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"},{"t":"i32","v":3,"n":"turn"},{"t":"i32","v":0,"n":"events_next_id_in"},{"t":"u32","v":0,"n":"events_turns_in"},{"t":"bool","v":false,"n":"events_turn_bucket_exists"},{"t":"u32","v":0,"n":"events_in_turn_bucket"},{"t":"u32","v":0,"n":"events_dedup_risk"}],"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":"0x0493a300"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x1f347a78"},"kids_end":{"t":"ptr","v":"0x1f347a7c"},"kids_cap":{"t":"ptr","v":"0x1f347a7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a300"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x1f347a78"},"kids_end":{"t":"ptr","v":"0x1f347a7c"},"kids_cap":{"t":"ptr","v":"0x1f347a7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e651648"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x1f347b28"},"kids_end":{"t":"ptr","v":"0x1f347b2c"},"kids_cap":{"t":"ptr","v":"0x1f347b2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651648"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x1f347b28"},"kids_end":{"t":"ptr","v":"0x1f347b2c"},"kids_cap":{"t":"ptr","v":"0x1f347b2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652140"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x1f347a28"},"kids_end":{"t":"ptr","v":"0x1f347a2c"},"kids_cap":{"t":"ptr","v":"0x1f347a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652140"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x1f347a28"},"kids_end":{"t":"ptr","v":"0x1f347a2c"},"kids_cap":{"t":"ptr","v":"0x1f347a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652890"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x1f347af8"},"kids_end":{"t":"ptr","v":"0x1f347b00"},"kids_cap":{"t":"ptr","v":"0x1f347b00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652890"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x1f347af8"},"kids_end":{"t":"ptr","v":"0x1f347b00"},"kids_cap":{"t":"ptr","v":"0x1f347b00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6512a0"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x1f347a38"},"kids_end":{"t":"ptr","v":"0x1f347a40"},"kids_cap":{"t":"ptr","v":"0x1f347a40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6512a0"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x1f347a38"},"kids_end":{"t":"ptr","v":"0x1f347a40"},"kids_cap":{"t":"ptr","v":"0x1f347a40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e651510"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x1f347a68"},"kids_end":{"t":"ptr","v":"0x1f347a6c"},"kids_cap":{"t":"ptr","v":"0x1f347a6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651510"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x1f347a68"},"kids_end":{"t":"ptr","v":"0x1f347a6c"},"kids_cap":{"t":"ptr","v":"0x1f347a6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e651ed0"},"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":"0x0e651ed0"},"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":"0x0e651b28"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x1f347b98"},"kids_end":{"t":"ptr","v":"0x1f347b9c"},"kids_cap":{"t":"ptr","v":"0x1f347b9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651b28"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x1f347b98"},"kids_end":{"t":"ptr","v":"0x1f347b9c"},"kids_cap":{"t":"ptr","v":"0x1f347b9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6529c8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x1f347ad8"},"kids_end":{"t":"ptr","v":"0x1f347adc"},"kids_cap":{"t":"ptr","v":"0x1f347adc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6529c8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x1f347ad8"},"kids_end":{"t":"ptr","v":"0x1f347adc"},"kids_cap":{"t":"ptr","v":"0x1f347adc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652278"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fec30"},"kids_end":{"t":"ptr","v":"0x0e8fec3c"},"kids_cap":{"t":"ptr","v":"0x0e8fec3c"},"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":"0x0e652278"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fec30"},"kids_end":{"t":"ptr","v":"0x0e8fec3c"},"kids_cap":{"t":"ptr","v":"0x0e8fec3c"},"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":"0x0e652d70"},"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":"0x0e652d70"},"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":"0x0e651780"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x1f347a08"},"kids_end":{"t":"ptr","v":"0x1f347a10"},"kids_cap":{"t":"ptr","v":"0x1f347a10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651780"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x1f347a08"},"kids_end":{"t":"ptr","v":"0x1f347a10"},"kids_cap":{"t":"ptr","v":"0x1f347a10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652b00"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fec48"},"kids_end":{"t":"ptr","v":"0x0e8fec58"},"kids_cap":{"t":"ptr","v":"0x0e8fec58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652b00"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fec48"},"kids_end":{"t":"ptr","v":"0x0e8fec58"},"kids_cap":{"t":"ptr","v":"0x0e8fec58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652ea8"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x1f347a58"},"kids_end":{"t":"ptr","v":"0x1f347a5c"},"kids_cap":{"t":"ptr","v":"0x1f347a5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652ea8"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x1f347a58"},"kids_end":{"t":"ptr","v":"0x1f347a5c"},"kids_cap":{"t":"ptr","v":"0x1f347a5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04950e38"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x1f347a88"},"kids_end":{"t":"ptr","v":"0x1f347a8c"},"kids_cap":{"t":"ptr","v":"0x1f347a8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04950e38"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x1f347a88"},"kids_end":{"t":"ptr","v":"0x1f347a8c"},"kids_cap":{"t":"ptr","v":"0x1f347a8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e652008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fec78"},"kids_end":{"t":"ptr","v":"0x0e8fec84"},"kids_cap":{"t":"ptr","v":"0x0e8fec84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fec78"},"kids_end":{"t":"ptr","v":"0x0e8fec84"},"kids_cap":{"t":"ptr","v":"0x0e8fec84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e651030"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x1f347b48"},"kids_end":{"t":"ptr","v":"0x1f347b4c"},"kids_cap":{"t":"ptr","v":"0x1f347b4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651030"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x1f347b48"},"kids_end":{"t":"ptr","v":"0x1f347b4c"},"kids_cap":{"t":"ptr","v":"0x1f347b4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6518b8"},"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":"0x0e6518b8"},"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":"0x0e652758"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x1f347ab8"},"kids_end":{"t":"ptr","v":"0x1f347abc"},"kids_cap":{"t":"ptr","v":"0x1f347abc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652758"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x1f347ab8"},"kids_end":{"t":"ptr","v":"0x1f347abc"},"kids_cap":{"t":"ptr","v":"0x1f347abc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e651168"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x1f347a48"},"kids_end":{"t":"ptr","v":"0x1f347a4c"},"kids_cap":{"t":"ptr","v":"0x1f347a4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651168"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x1f347a48"},"kids_end":{"t":"ptr","v":"0x1f347a4c"},"kids_cap":{"t":"ptr","v":"0x1f347a4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6523b0"},"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":"0x0e6523b0"},"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":"0x0e656150"},"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":"0x0e656150"},"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":"0x0e655040"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fec90"},"kids_end":{"t":"ptr","v":"0x0e8fec9c"},"kids_cap":{"t":"ptr","v":"0x0e8fec9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655040"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fec90"},"kids_end":{"t":"ptr","v":"0x0e8fec9c"},"kids_cap":{"t":"ptr","v":"0x0e8fec9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65b620"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcf80"},"kids_end":{"t":"ptr","v":"0x0e8fcf90"},"kids_cap":{"t":"ptr","v":"0x0e8fcf90"},"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":"0x0e65b620"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcf80"},"kids_end":{"t":"ptr","v":"0x0e8fcf90"},"kids_cap":{"t":"ptr","v":"0x0e8fcf90"},"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":"0x0e659c88"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x1f347a98"},"kids_end":{"t":"ptr","v":"0x1f347a9c"},"kids_cap":{"t":"ptr","v":"0x1f347a9c"},"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":"0x0e659c88"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x1f347a98"},"kids_end":{"t":"ptr","v":"0x1f347a9c"},"kids_cap":{"t":"ptr","v":"0x1f347a9c"},"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":"0x0e65a3d8"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x1f347ac8"},"kids_end":{"t":"ptr","v":"0x1f347acc"},"kids_cap":{"t":"ptr","v":"0x1f347acc"},"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":"0x0e65a3d8"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x1f347ac8"},"kids_end":{"t":"ptr","v":"0x1f347acc"},"kids_cap":{"t":"ptr","v":"0x1f347acc"},"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":"0x0e6598e0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x1f347ae8"},"kids_end":{"t":"ptr","v":"0x1f347aec"},"kids_cap":{"t":"ptr","v":"0x1f347aec"},"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":"0x0e6598e0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x1f347ae8"},"kids_end":{"t":"ptr","v":"0x1f347aec"},"kids_cap":{"t":"ptr","v":"0x1f347aec"},"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":"0x0e65a648"},"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":"0x0e65a648"},"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":"0x0e65a2a0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x1f347b08"},"kids_end":{"t":"ptr","v":"0x1f347b0c"},"kids_cap":{"t":"ptr","v":"0x1f347b0c"},"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":"0x0e65a2a0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x1f347b08"},"kids_end":{"t":"ptr","v":"0x1f347b0c"},"kids_cap":{"t":"ptr","v":"0x1f347b0c"},"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":"0x0e656c48"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x1f347b18"},"kids_end":{"t":"ptr","v":"0x1f347b20"},"kids_cap":{"t":"ptr","v":"0x1f347b20"},"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":"0x0e656c48"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x1f347b18"},"kids_end":{"t":"ptr","v":"0x1f347b20"},"kids_cap":{"t":"ptr","v":"0x1f347b20"},"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":"0x0e655790"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fce78"},"kids_end":{"t":"ptr","v":"0x0e8fce84"},"kids_cap":{"t":"ptr","v":"0x0e8fce84"},"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":"0x0e655790"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fce78"},"kids_end":{"t":"ptr","v":"0x0e8fce84"},"kids_cap":{"t":"ptr","v":"0x0e8fce84"},"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":"0x0e655658"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x1f345c58"},"kids_end":{"t":"ptr","v":"0x1f345c60"},"kids_cap":{"t":"ptr","v":"0x1f345c60"},"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":"0x0e655658"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x1f345c58"},"kids_end":{"t":"ptr","v":"0x1f345c60"},"kids_cap":{"t":"ptr","v":"0x1f345c60"},"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":"0x0e6552b0"},"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":"0x0e6552b0"},"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":"0x0e656eb8"},"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":"0x0e656eb8"},"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":"0x0e655ee0"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcf38"},"kids_end":{"t":"ptr","v":"0x0e8fcf44"},"kids_cap":{"t":"ptr","v":"0x0e8fcf44"},"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":"0x0e655ee0"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcf38"},"kids_end":{"t":"ptr","v":"0x0e8fcf44"},"kids_cap":{"t":"ptr","v":"0x0e8fcf44"},"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":"0x0e656b10"},"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":"0x0e656b10"},"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":"0x0e6553e8"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcfc8"},"kids_end":{"t":"ptr","v":"0x0e8fcfd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcfd4"},"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":"0x0e6553e8"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcfc8"},"kids_end":{"t":"ptr","v":"0x0e8fcfd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcfd4"},"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":"0x0e6519f0"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x1f345cb8"},"kids_end":{"t":"ptr","v":"0x1f345cc0"},"kids_cap":{"t":"ptr","v":"0x1f345cc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e6519f0"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x1f345cb8"},"kids_end":{"t":"ptr","v":"0x1f345cc0"},"kids_cap":{"t":"ptr","v":"0x1f345cc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e655178"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x1f345c88"},"kids_end":{"t":"ptr","v":"0x1f345c8c"},"kids_cap":{"t":"ptr","v":"0x1f345c8c"},"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":"0x0e655178"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x1f345c88"},"kids_end":{"t":"ptr","v":"0x1f345c8c"},"kids_cap":{"t":"ptr","v":"0x1f345c8c"},"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":"0x0e656018"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x1f345cf8"},"kids_end":{"t":"ptr","v":"0x1f345cfc"},"kids_cap":{"t":"ptr","v":"0x1f345cfc"},"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":"0x0e656018"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x1f345cf8"},"kids_end":{"t":"ptr","v":"0x1f345cfc"},"kids_cap":{"t":"ptr","v":"0x1f345cfc"},"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":"0x0e656630"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcf50"},"kids_end":{"t":"ptr","v":"0x0e8fcf5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656630"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcf50"},"kids_end":{"t":"ptr","v":"0x0e8fcf5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6564f8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x1f345c98"},"kids_end":{"t":"ptr","v":"0x1f345c9c"},"kids_cap":{"t":"ptr","v":"0x1f345c9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6564f8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x1f345c98"},"kids_end":{"t":"ptr","v":"0x1f345c9c"},"kids_cap":{"t":"ptr","v":"0x1f345c9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e655520"},"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":"0x0e655520"},"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":"0x0e655b38"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x1f345c68"},"kids_end":{"t":"ptr","v":"0x1f345c6c"},"kids_cap":{"t":"ptr","v":"0x1f345c6c"},"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":"0x0e655b38"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x1f345c68"},"kids_end":{"t":"ptr","v":"0x1f345c6c"},"kids_cap":{"t":"ptr","v":"0x1f345c6c"},"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":"0x04950f68"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x1f345d08"},"kids_end":{"t":"ptr","v":"0x1f345d0c"},"kids_cap":{"t":"ptr","v":"0x1f345d0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04950f68"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x1f345d08"},"kids_end":{"t":"ptr","v":"0x1f345d0c"},"kids_cap":{"t":"ptr","v":"0x1f345d0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e656288"},"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":"0x0e656288"},"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":"0x0e6563c0"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x1f345d68"},"kids_end":{"t":"ptr","v":"0x1f345d6c"},"kids_cap":{"t":"ptr","v":"0x1f345d6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6563c0"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x1f345d68"},"kids_end":{"t":"ptr","v":"0x1f345d6c"},"kids_cap":{"t":"ptr","v":"0x1f345d6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6568a0"},"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":"0x0e6568a0"},"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":"0x0e655a00"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcff8"},"kids_end":{"t":"ptr","v":"0x0e8fd004"},"kids_cap":{"t":"ptr","v":"0x0e8fd004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655a00"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcff8"},"kids_end":{"t":"ptr","v":"0x0e8fd004"},"kids_cap":{"t":"ptr","v":"0x0e8fd004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65a168"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x1f345d58"},"kids_end":{"t":"ptr","v":"0x1f345d5c"},"kids_cap":{"t":"ptr","v":"0x1f345d5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65a168"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x1f345d58"},"kids_end":{"t":"ptr","v":"0x1f345d5c"},"kids_cap":{"t":"ptr","v":"0x1f345d5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65ab28"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x1f345db8"},"kids_end":{"t":"ptr","v":"0x1f345dbc"},"kids_cap":{"t":"ptr","v":"0x1f345dbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65ab28"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x1f345db8"},"kids_end":{"t":"ptr","v":"0x1f345dbc"},"kids_cap":{"t":"ptr","v":"0x1f345dbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65cc10"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x1f345d38"},"kids_end":{"t":"ptr","v":"0x1f345d3c"},"kids_cap":{"t":"ptr","v":"0x1f345d3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65cc10"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x1f345d38"},"kids_end":{"t":"ptr","v":"0x1f345d3c"},"kids_cap":{"t":"ptr","v":"0x1f345d3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65bfe0"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x1f345c78"},"kids_end":{"t":"ptr","v":"0x1f345c7c"},"kids_cap":{"t":"ptr","v":"0x1f345c7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65bfe0"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x1f345c78"},"kids_end":{"t":"ptr","v":"0x1f345c7c"},"kids_cap":{"t":"ptr","v":"0x1f345c7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65b4e8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x1f345ca8"},"kids_end":{"t":"ptr","v":"0x1f345cac"},"kids_cap":{"t":"ptr","v":"0x1f345cac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65b4e8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x1f345ca8"},"kids_end":{"t":"ptr","v":"0x1f345cac"},"kids_cap":{"t":"ptr","v":"0x1f345cac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65b890"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x1f345cc8"},"kids_end":{"t":"ptr","v":"0x1f345ccc"},"kids_cap":{"t":"ptr","v":"0x1f345ccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65b890"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x1f345cc8"},"kids_end":{"t":"ptr","v":"0x1f345ccc"},"kids_cap":{"t":"ptr","v":"0x1f345ccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e656768"},"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":"0x0e656768"},"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":"0x0e657c78"},"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":"0x0e657c78"},"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":"0x0e658ec0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x1f345d48"},"kids_end":{"t":"ptr","v":"0x1f345d4c"},"kids_cap":{"t":"ptr","v":"0x1f345d4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658ec0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x1f345d48"},"kids_end":{"t":"ptr","v":"0x1f345d4c"},"kids_cap":{"t":"ptr","v":"0x1f345d4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6589e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fd070"},"kids_end":{"t":"ptr","v":"0x0e8fd07c"},"kids_cap":{"t":"ptr","v":"0x0e8fd07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6589e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fd070"},"kids_end":{"t":"ptr","v":"0x0e8fd07c"},"kids_cap":{"t":"ptr","v":"0x0e8fd07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6578d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fd010"},"kids_end":{"t":"ptr","v":"0x0e8fd01c"},"kids_cap":{"t":"ptr","v":"0x0e8fd01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6578d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fd010"},"kids_end":{"t":"ptr","v":"0x0e8fd01c"},"kids_cap":{"t":"ptr","v":"0x0e8fd01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657ee8"},"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":"0x0e657ee8"},"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":"0x0e658158"},"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":"0x0e658158"},"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":"0x04951098"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x1f345c18"},"kids_end":{"t":"ptr","v":"0x1f345c1c"},"kids_cap":{"t":"ptr","v":"0x1f345c1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04951098"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x1f345c18"},"kids_end":{"t":"ptr","v":"0x1f345c1c"},"kids_cap":{"t":"ptr","v":"0x1f345c1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e658638"},"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":"0x0e658638"},"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":"0x0e658770"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x1f345d28"},"kids_end":{"t":"ptr","v":"0x1f345d30"},"kids_cap":{"t":"ptr","v":"0x1f345d30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658770"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x1f345d28"},"kids_end":{"t":"ptr","v":"0x1f345d30"},"kids_cap":{"t":"ptr","v":"0x1f345d30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658020"},"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":"0x0e658020"},"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":"0x0e657db0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x1f345c28"},"kids_end":{"t":"ptr","v":"0x1f345c2c"},"kids_cap":{"t":"ptr","v":"0x1f345c2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657db0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x1f345c28"},"kids_end":{"t":"ptr","v":"0x1f345c2c"},"kids_cap":{"t":"ptr","v":"0x1f345c2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04821d00"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e890ab0"},"kids_end":{"t":"ptr","v":"0x0e890ac4"},"kids_cap":{"t":"ptr","v":"0x0e890ac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821d00"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e890ab0"},"kids_end":{"t":"ptr","v":"0x0e890ac4"},"kids_cap":{"t":"ptr","v":"0x0e890ac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481f950"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcfe0"},"kids_end":{"t":"ptr","v":"0x0e8fcfec"},"kids_cap":{"t":"ptr","v":"0x0e8fcfec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0481f950"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcfe0"},"kids_end":{"t":"ptr","v":"0x0e8fcfec"},"kids_cap":{"t":"ptr","v":"0x0e8fcfec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04821478"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e9887b0"},"kids_end":{"t":"ptr","v":"0x0e9887d4"},"kids_cap":{"t":"ptr","v":"0x0e9887d4"},"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":"0x04821478"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e9887b0"},"kids_end":{"t":"ptr","v":"0x0e9887d4"},"kids_cap":{"t":"ptr","v":"0x0e9887d4"},"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":"0x0e651d98"},"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":"0x0e651d98"},"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":"0x048210d0"},"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":"0x048210d0"},"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":"0x04821340"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fd028"},"kids_end":{"t":"ptr","v":"0x0e8fd034"},"kids_cap":{"t":"ptr","v":"0x0e8fd034"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821340"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fd028"},"kids_end":{"t":"ptr","v":"0x0e8fd034"},"kids_cap":{"t":"ptr","v":"0x0e8fd034"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04820ab8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x1f345cd8"},"kids_end":{"t":"ptr","v":"0x1f345cdc"},"kids_cap":{"t":"ptr","v":"0x1f345cdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04820ab8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x1f345cd8"},"kids_end":{"t":"ptr","v":"0x1f345cdc"},"kids_cap":{"t":"ptr","v":"0x1f345cdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04822450"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x1f345da8"},"kids_end":{"t":"ptr","v":"0x1f345db0"},"kids_cap":{"t":"ptr","v":"0x1f345db0"},"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":"0x04822450"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x1f345da8"},"kids_end":{"t":"ptr","v":"0x1f345db0"},"kids_cap":{"t":"ptr","v":"0x1f345db0"},"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":"0x04821a90"},"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":"0x04821a90"},"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":"0x0481e978"},"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":"0x0481e978"},"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":"0x0481e840"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x1f345c38"},"kids_end":{"t":"ptr","v":"0x1f345c3c"},"kids_cap":{"t":"ptr","v":"0x1f345c3c"},"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":"0x0481e840"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x1f345c38"},"kids_end":{"t":"ptr","v":"0x1f345c3c"},"kids_cap":{"t":"ptr","v":"0x1f345c3c"},"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":"0x048216e8"},"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":"0x048216e8"},"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":"0x04821820"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x1f345c48"},"kids_end":{"t":"ptr","v":"0x1f345c4c"},"kids_cap":{"t":"ptr","v":"0x1f345c4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821820"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x1f345c48"},"kids_end":{"t":"ptr","v":"0x1f345c4c"},"kids_cap":{"t":"ptr","v":"0x1f345c4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04821958"},"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":"0x04821958"},"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":"0x0493a430"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x1f345dc8"},"kids_end":{"t":"ptr","v":"0x1f345dcc"},"kids_cap":{"t":"ptr","v":"0x1f345dcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a430"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x1f345dc8"},"kids_end":{"t":"ptr","v":"0x1f345dcc"},"kids_cap":{"t":"ptr","v":"0x1f345dcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x048215b0"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x1f345ce8"},"kids_end":{"t":"ptr","v":"0x1f345cec"},"kids_cap":{"t":"ptr","v":"0x1f345cec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048215b0"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x1f345ce8"},"kids_end":{"t":"ptr","v":"0x1f345cec"},"kids_cap":{"t":"ptr","v":"0x1f345cec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0480fde8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x1f345d18"},"kids_end":{"t":"ptr","v":"0x1f345d1c"},"kids_cap":{"t":"ptr","v":"0x1f345d1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0480fde8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x1f345d18"},"kids_end":{"t":"ptr","v":"0x1f345d1c"},"kids_cap":{"t":"ptr","v":"0x1f345d1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493c4d8"},"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":"0x0493c4d8"},"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":"0x0482de38"},"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":"0x0482de38"},"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":"0x0482d0d0"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x1f345dd8"},"kids_end":{"t":"ptr","v":"0x1f345de0"},"kids_cap":{"t":"ptr","v":"0x1f345de0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d0d0"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x1f345dd8"},"kids_end":{"t":"ptr","v":"0x1f345de0"},"kids_cap":{"t":"ptr","v":"0x1f345de0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493bff8"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x1f345d78"},"kids_end":{"t":"ptr","v":"0x1f345d80"},"kids_cap":{"t":"ptr","v":"0x1f345d80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bff8"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x1f345d78"},"kids_end":{"t":"ptr","v":"0x1f345d80"},"kids_cap":{"t":"ptr","v":"0x1f345d80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493b770"},"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":"0x0493b770"},"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":"0x0482e318"},"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":"0x0482e318"},"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":"0x0482e588"},"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":"0x0482e588"},"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":"0x0493b638"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e890d30"},"kids_end":{"t":"ptr","v":"0x0e890d44"},"kids_cap":{"t":"ptr","v":"0x0e890d44"},"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":"0x0493b638"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e890d30"},"kids_end":{"t":"ptr","v":"0x0e890d44"},"kids_cap":{"t":"ptr","v":"0x0e890d44"},"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":"0x0e657798"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcfb0"},"kids_end":{"t":"ptr","v":"0x0e8fcfbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657798"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcfb0"},"kids_end":{"t":"ptr","v":"0x0e8fcfbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482c980"},"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":"0x0482c980"},"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":"0x0482dd00"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x1f345d88"},"kids_end":{"t":"ptr","v":"0x1f345d8c"},"kids_cap":{"t":"ptr","v":"0x1f345d8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482dd00"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x1f345d88"},"kids_end":{"t":"ptr","v":"0x1f345d8c"},"kids_cap":{"t":"ptr","v":"0x1f345d8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d958"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x1f345d98"},"kids_end":{"t":"ptr","v":"0x1f345d9c"},"kids_cap":{"t":"ptr","v":"0x1f345d9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d958"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x1f345d98"},"kids_end":{"t":"ptr","v":"0x1f345d9c"},"kids_cap":{"t":"ptr","v":"0x1f345d9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493c3a0"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x1f345de8"},"kids_end":{"t":"ptr","v":"0x1f345dec"},"kids_cap":{"t":"ptr","v":"0x1f345dec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c3a0"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x1f345de8"},"kids_end":{"t":"ptr","v":"0x1f345dec"},"kids_cap":{"t":"ptr","v":"0x1f345dec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658c50"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x1f345df8"},"kids_end":{"t":"ptr","v":"0x1f345dfc"},"kids_cap":{"t":"ptr","v":"0x1f345dfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658c50"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x1f345df8"},"kids_end":{"t":"ptr","v":"0x1f345dfc"},"kids_cap":{"t":"ptr","v":"0x1f345dfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482cf98"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x1f345c08"},"kids_end":{"t":"ptr","v":"0x1f345c10"},"kids_cap":{"t":"ptr","v":"0x1f345c10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cf98"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x1f345c08"},"kids_end":{"t":"ptr","v":"0x1f345c10"},"kids_cap":{"t":"ptr","v":"0x1f345c10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x049517b8"},"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":"0x049517b8"},"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":"0x0482d208"},"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":"0x0482d208"},"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":"0x0482da90"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fcec0"},"kids_end":{"t":"ptr","v":"0x0e8fcecc"},"kids_cap":{"t":"ptr","v":"0x0e8fcecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482da90"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fcec0"},"kids_end":{"t":"ptr","v":"0x0e8fcecc"},"kids_cap":{"t":"ptr","v":"0x0e8fcecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04951688"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x1f345f38"},"kids_end":{"t":"ptr","v":"0x1f345f40"},"kids_cap":{"t":"ptr","v":"0x1f345f40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951688"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x1f345f38"},"kids_end":{"t":"ptr","v":"0x1f345f40"},"kids_cap":{"t":"ptr","v":"0x1f345f40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493b8a8"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x1f345e88"},"kids_end":{"t":"ptr","v":"0x1f345e90"},"kids_cap":{"t":"ptr","v":"0x1f345e90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b8a8"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x1f345e88"},"kids_end":{"t":"ptr","v":"0x1f345e90"},"kids_cap":{"t":"ptr","v":"0x1f345e90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482cd28"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x1f345f08"},"kids_end":{"t":"ptr","v":"0x1f345f0c"},"kids_cap":{"t":"ptr","v":"0x1f345f0c"},"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":"0x0482cd28"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x1f345f08"},"kids_end":{"t":"ptr","v":"0x1f345f0c"},"kids_cap":{"t":"ptr","v":"0x1f345f0c"},"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":"0x0482dbc8"},"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":"0x0482dbc8"},"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":"0x0493c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fd040"},"kids_end":{"t":"ptr","v":"0x0e8fd04c"},"kids_cap":{"t":"ptr","v":"0x0e8fd04c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fd040"},"kids_end":{"t":"ptr","v":"0x0e8fd04c"},"kids_cap":{"t":"ptr","v":"0x0e8fd04c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d478"},"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":"0x0482d478"},"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":"0x0482d340"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fd058"},"kids_end":{"t":"ptr","v":"0x0e8fd064"},"kids_cap":{"t":"ptr","v":"0x0e8fd064"},"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":"0x0482d340"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fd058"},"kids_end":{"t":"ptr","v":"0x0e8fd064"},"kids_cap":{"t":"ptr","v":"0x0e8fd064"},"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":"0x0493bb18"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fce90"},"kids_end":{"t":"ptr","v":"0x0e8fcea0"},"kids_cap":{"t":"ptr","v":"0x0e8fcea0"},"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":"0x0493bb18"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fce90"},"kids_end":{"t":"ptr","v":"0x0e8fcea0"},"kids_cap":{"t":"ptr","v":"0x0e8fcea0"},"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":"0x0493c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x1f345f18"},"kids_end":{"t":"ptr","v":"0x1f345f20"},"kids_cap":{"t":"ptr","v":"0x1f345f20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x1f345f18"},"kids_end":{"t":"ptr","v":"0x1f345f20"},"kids_cap":{"t":"ptr","v":"0x1f345f20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657a08"},"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":"0x0e657a08"},"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":"0x0493bd88"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x1f345f28"},"kids_end":{"t":"ptr","v":"0x1f345f2c"},"kids_cap":{"t":"ptr","v":"0x1f345f2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bd88"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x1f345f28"},"kids_end":{"t":"ptr","v":"0x1f345f2c"},"kids_cap":{"t":"ptr","v":"0x1f345f2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04951558"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fd088"},"kids_end":{"t":"ptr","v":"0x0e8fd094"},"kids_cap":{"t":"ptr","v":"0x0e8fd094"},"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":"0x04951558"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fd088"},"kids_end":{"t":"ptr","v":"0x0e8fd094"},"kids_cap":{"t":"ptr","v":"0x0e8fd094"},"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":"0x0e5e0950"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x1f345f68"},"kids_end":{"t":"ptr","v":"0x1f345f6c"},"kids_cap":{"t":"ptr","v":"0x1f345f6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e5e0950"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x1f345f68"},"kids_end":{"t":"ptr","v":"0x1f345f6c"},"kids_cap":{"t":"ptr","v":"0x1f345f6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493bec0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x1f345e28"},"kids_end":{"t":"ptr","v":"0x1f345e2c"},"kids_cap":{"t":"ptr","v":"0x1f345e2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bec0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x1f345e28"},"kids_end":{"t":"ptr","v":"0x1f345e2c"},"kids_cap":{"t":"ptr","v":"0x1f345e2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493bc50"},"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":"0x0493bc50"},"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":"0x0493b9e0"},"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":"0x0493b9e0"},"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":"0x0482c848"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x1f345e98"},"kids_end":{"t":"ptr","v":"0x1f345e9c"},"kids_cap":{"t":"ptr","v":"0x1f345e9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482c848"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x1f345e98"},"kids_end":{"t":"ptr","v":"0x1f345e9c"},"kids_cap":{"t":"ptr","v":"0x1f345e9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482ce60"},"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":"0x0482ce60"},"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":"0x049512f8"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x1f345ef8"},"kids_end":{"t":"ptr","v":"0x1f345f00"},"kids_cap":{"t":"ptr","v":"0x1f345f00"},"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":"0x049512f8"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x1f345ef8"},"kids_end":{"t":"ptr","v":"0x1f345f00"},"kids_cap":{"t":"ptr","v":"0x1f345f00"},"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":"0x04939f70"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x1f345ee8"},"kids_end":{"t":"ptr","v":"0x1f345eec"},"kids_cap":{"t":"ptr","v":"0x1f345eec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04939f70"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x1f345ee8"},"kids_end":{"t":"ptr","v":"0x1f345eec"},"kids_cap":{"t":"ptr","v":"0x1f345eec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e656d80"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x1f345ea8"},"kids_end":{"t":"ptr","v":"0x1f345eb0"},"kids_cap":{"t":"ptr","v":"0x1f345eb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656d80"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x1f345ea8"},"kids_end":{"t":"ptr","v":"0x1f345eb0"},"kids_cap":{"t":"ptr","v":"0x1f345eb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6558c8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcef0"},"kids_end":{"t":"ptr","v":"0x0e8fcefc"},"kids_cap":{"t":"ptr","v":"0x0e8fcefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6558c8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcef0"},"kids_end":{"t":"ptr","v":"0x0e8fcefc"},"kids_cap":{"t":"ptr","v":"0x0e8fcefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658b18"},"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":"0x0e658b18"},"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":"0x0e657528"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x1f345ff8"},"kids_end":{"t":"ptr","v":"0x1f345ffc"},"kids_cap":{"t":"ptr","v":"0x1f345ffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657528"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x1f345ff8"},"kids_end":{"t":"ptr","v":"0x1f345ffc"},"kids_cap":{"t":"ptr","v":"0x1f345ffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658290"},"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":"0x0e658290"},"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":"0x0e6569d8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x1f345f48"},"kids_end":{"t":"ptr","v":"0x1f345f50"},"kids_cap":{"t":"ptr","v":"0x1f345f50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6569d8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x1f345f48"},"kids_end":{"t":"ptr","v":"0x1f345f50"},"kids_cap":{"t":"ptr","v":"0x1f345f50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658d88"},"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":"0x0e658d88"},"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":"0x0e6572b8"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x1f345f58"},"kids_end":{"t":"ptr","v":"0x1f345f5c"},"kids_cap":{"t":"ptr","v":"0x1f345f5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6572b8"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x1f345f58"},"kids_end":{"t":"ptr","v":"0x1f345f5c"},"kids_cap":{"t":"ptr","v":"0x1f345f5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657b40"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x1f345f78"},"kids_end":{"t":"ptr","v":"0x1f345f80"},"kids_cap":{"t":"ptr","v":"0x1f345f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657b40"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x1f345f78"},"kids_end":{"t":"ptr","v":"0x1f345f80"},"kids_cap":{"t":"ptr","v":"0x1f345f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6573f0"},"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":"0x0e6573f0"},"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":"0x0e655da8"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x1f345f88"},"kids_end":{"t":"ptr","v":"0x1f345f90"},"kids_cap":{"t":"ptr","v":"0x1f345f90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655da8"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x1f345f88"},"kids_end":{"t":"ptr","v":"0x1f345f90"},"kids_cap":{"t":"ptr","v":"0x1f345f90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658500"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x1f345f98"},"kids_end":{"t":"ptr","v":"0x1f345fa0"},"kids_cap":{"t":"ptr","v":"0x1f345fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658500"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x1f345f98"},"kids_end":{"t":"ptr","v":"0x1f345fa0"},"kids_cap":{"t":"ptr","v":"0x1f345fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6583c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x1f345fa8"},"kids_end":{"t":"ptr","v":"0x1f345fb0"},"kids_cap":{"t":"ptr","v":"0x1f345fb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6583c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x1f345fa8"},"kids_end":{"t":"ptr","v":"0x1f345fb0"},"kids_cap":{"t":"ptr","v":"0x1f345fb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657180"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x1f345fb8"},"kids_end":{"t":"ptr","v":"0x1f345fbc"},"kids_cap":{"t":"ptr","v":"0x1f345fbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657180"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x1f345fb8"},"kids_end":{"t":"ptr","v":"0x1f345fbc"},"kids_cap":{"t":"ptr","v":"0x1f345fbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0480ff18"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x1f345fc8"},"kids_end":{"t":"ptr","v":"0x1f345fcc"},"kids_cap":{"t":"ptr","v":"0x1f345fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0480ff18"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x1f345fc8"},"kids_end":{"t":"ptr","v":"0x1f345fcc"},"kids_cap":{"t":"ptr","v":"0x1f345fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a0a0"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x1f345eb8"},"kids_end":{"t":"ptr","v":"0x1f345ec0"},"kids_cap":{"t":"ptr","v":"0x1f345ec0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a0a0"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x1f345eb8"},"kids_end":{"t":"ptr","v":"0x1f345ec0"},"kids_cap":{"t":"ptr","v":"0x1f345ec0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0481f338"},"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":"0x0481f338"},"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":"0x0482f960"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x1f345fd8"},"kids_end":{"t":"ptr","v":"0x1f345fe0"},"kids_cap":{"t":"ptr","v":"0x1f345fe0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f960"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x1f345fd8"},"kids_end":{"t":"ptr","v":"0x1f345fe0"},"kids_cap":{"t":"ptr","v":"0x1f345fe0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831968"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x1f345fe8"},"kids_end":{"t":"ptr","v":"0x1f345fec"},"kids_cap":{"t":"ptr","v":"0x1f345fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831968"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x1f345fe8"},"kids_end":{"t":"ptr","v":"0x1f345fec"},"kids_cap":{"t":"ptr","v":"0x1f345fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482f210"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x1f345e08"},"kids_end":{"t":"ptr","v":"0x1f345e0c"},"kids_cap":{"t":"ptr","v":"0x1f345e0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f210"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x1f345e08"},"kids_end":{"t":"ptr","v":"0x1f345e0c"},"kids_cap":{"t":"ptr","v":"0x1f345e0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831d10"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x1f345e18"},"kids_end":{"t":"ptr","v":"0x1f345e20"},"kids_cap":{"t":"ptr","v":"0x1f345e20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831d10"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x1f345e18"},"kids_end":{"t":"ptr","v":"0x1f345e20"},"kids_cap":{"t":"ptr","v":"0x1f345e20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830e70"},"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":"0x04830e70"},"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":"0x0481ed20"},"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":"0x0481ed20"},"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":"0x04820448"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x1f345e38"},"kids_end":{"t":"ptr","v":"0x1f345e3c"},"kids_cap":{"t":"ptr","v":"0x1f345e3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820448"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x1f345e38"},"kids_end":{"t":"ptr","v":"0x1f345e3c"},"kids_cap":{"t":"ptr","v":"0x1f345e3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831488"},"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":"0x04831488"},"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":"0x0481fbc0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x1f345e48"},"kids_end":{"t":"ptr","v":"0x1f345e4c"},"kids_cap":{"t":"ptr","v":"0x1f345e4c"},"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":"0x0481fbc0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x1f345e48"},"kids_end":{"t":"ptr","v":"0x1f345e4c"},"kids_cap":{"t":"ptr","v":"0x1f345e4c"},"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":"0x0482ee68"},"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":"0x0482ee68"},"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":"0x0481f200"},"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":"0x0481f200"},"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":"0x0482f828"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x1f345e58"},"kids_end":{"t":"ptr","v":"0x1f345e60"},"kids_cap":{"t":"ptr","v":"0x1f345e60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f828"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x1f345e58"},"kids_end":{"t":"ptr","v":"0x1f345e60"},"kids_cap":{"t":"ptr","v":"0x1f345e60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830990"},"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":"0x04830990"},"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":"0x04830c00"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x1f345ec8"},"kids_end":{"t":"ptr","v":"0x1f345ecc"},"kids_cap":{"t":"ptr","v":"0x1f345ecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830c00"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x1f345ec8"},"kids_end":{"t":"ptr","v":"0x1f345ecc"},"kids_cap":{"t":"ptr","v":"0x1f345ecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482e1e0"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x1f345ed8"},"kids_end":{"t":"ptr","v":"0x1f345edc"},"kids_cap":{"t":"ptr","v":"0x1f345edc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e1e0"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x1f345ed8"},"kids_end":{"t":"ptr","v":"0x1f345edc"},"kids_cap":{"t":"ptr","v":"0x1f345edc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048321f0"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fced8"},"kids_end":{"t":"ptr","v":"0x0e8fcee4"},"kids_cap":{"t":"ptr","v":"0x0e8fcee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048321f0"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fced8"},"kids_end":{"t":"ptr","v":"0x0e8fcee4"},"kids_cap":{"t":"ptr","v":"0x0e8fcee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04820310"},"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":"0x04820310"},"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":"0x0482e850"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcf08"},"kids_end":{"t":"ptr","v":"0x0e8fcf18"},"kids_cap":{"t":"ptr","v":"0x0e8fcf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e850"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcf08"},"kids_end":{"t":"ptr","v":"0x0e8fcf18"},"kids_cap":{"t":"ptr","v":"0x0e8fcf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831f80"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x1f345e68"},"kids_end":{"t":"ptr","v":"0x1f345e70"},"kids_cap":{"t":"ptr","v":"0x1f345e70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831f80"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x1f345e68"},"kids_end":{"t":"ptr","v":"0x1f345e70"},"kids_cap":{"t":"ptr","v":"0x1f345e70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482f5b8"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x1f345e78"},"kids_end":{"t":"ptr","v":"0x1f345e80"},"kids_cap":{"t":"ptr","v":"0x1f345e80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f5b8"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x1f345e78"},"kids_end":{"t":"ptr","v":"0x1f345e80"},"kids_cap":{"t":"ptr","v":"0x1f345e80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048315c0"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x1f346188"},"kids_end":{"t":"ptr","v":"0x1f34618c"},"kids_cap":{"t":"ptr","v":"0x1f34618c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048315c0"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x1f346188"},"kids_end":{"t":"ptr","v":"0x1f34618c"},"kids_cap":{"t":"ptr","v":"0x1f34618c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830ac8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x1f346198"},"kids_end":{"t":"ptr","v":"0x1f3461a0"},"kids_cap":{"t":"ptr","v":"0x1f3461a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830ac8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x1f346198"},"kids_end":{"t":"ptr","v":"0x1f3461a0"},"kids_cap":{"t":"ptr","v":"0x1f3461a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830fa8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x1f346018"},"kids_end":{"t":"ptr","v":"0x1f346020"},"kids_cap":{"t":"ptr","v":"0x1f346020"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830fa8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x1f346018"},"kids_end":{"t":"ptr","v":"0x1f346020"},"kids_cap":{"t":"ptr","v":"0x1f346020"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048316f8"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x1f346028"},"kids_end":{"t":"ptr","v":"0x1f346030"},"kids_cap":{"t":"ptr","v":"0x1f346030"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048316f8"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x1f346028"},"kids_end":{"t":"ptr","v":"0x1f346030"},"kids_cap":{"t":"ptr","v":"0x1f346030"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482f6f0"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x1f346058"},"kids_end":{"t":"ptr","v":"0x1f34605c"},"kids_cap":{"t":"ptr","v":"0x1f34605c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f6f0"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x1f346058"},"kids_end":{"t":"ptr","v":"0x1f34605c"},"kids_cap":{"t":"ptr","v":"0x1f34605c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d820"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x1f346118"},"kids_end":{"t":"ptr","v":"0x1f34611c"},"kids_cap":{"t":"ptr","v":"0x1f34611c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d820"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x1f346118"},"kids_end":{"t":"ptr","v":"0x1f34611c"},"kids_cap":{"t":"ptr","v":"0x1f34611c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482e0a8"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x1f346158"},"kids_end":{"t":"ptr","v":"0x1f346160"},"kids_cap":{"t":"ptr","v":"0x1f346160"},"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":"0x0482e0a8"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x1f346158"},"kids_end":{"t":"ptr","v":"0x1f346160"},"kids_cap":{"t":"ptr","v":"0x1f346160"},"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":"0x04830d38"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x1f3460e8"},"kids_end":{"t":"ptr","v":"0x1f3460ec"},"kids_cap":{"t":"ptr","v":"0x1f3460ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830d38"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x1f3460e8"},"kids_end":{"t":"ptr","v":"0x1f3460ec"},"kids_cap":{"t":"ptr","v":"0x1f3460ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048200a0"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcf68"},"kids_end":{"t":"ptr","v":"0x0e8fcf74"},"kids_cap":{"t":"ptr","v":"0x0e8fcf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x048200a0"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcf68"},"kids_end":{"t":"ptr","v":"0x0e8fcf74"},"kids_cap":{"t":"ptr","v":"0x0e8fcf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0482ff78"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x1f346038"},"kids_end":{"t":"ptr","v":"0x1f34603c"},"kids_cap":{"t":"ptr","v":"0x1f34603c"},"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":"0x0482ff78"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x1f346038"},"kids_end":{"t":"ptr","v":"0x1f34603c"},"kids_cap":{"t":"ptr","v":"0x1f34603c"},"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":"0x0481eab0"},"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":"0x0481eab0"},"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":"0x048301e8"},"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":"0x048301e8"},"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":"0x0481ef90"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e890ed0"},"kids_end":{"t":"ptr","v":"0x0e890ee4"},"kids_cap":{"t":"ptr","v":"0x0e890ee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ef90"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e890ed0"},"kids_end":{"t":"ptr","v":"0x0e890ee4"},"kids_cap":{"t":"ptr","v":"0x0e890ee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482cbf0"},"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":"0x0482cbf0"},"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":"0x0482f348"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x1f3461a8"},"kids_end":{"t":"ptr","v":"0x1f3461ac"},"kids_cap":{"t":"ptr","v":"0x1f3461ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f348"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x1f3461a8"},"kids_end":{"t":"ptr","v":"0x1f3461ac"},"kids_cap":{"t":"ptr","v":"0x1f3461ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048326d0"},"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":"0x048326d0"},"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":"0x048300b0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x1f346178"},"kids_end":{"t":"ptr","v":"0x1f34617c"},"kids_cap":{"t":"ptr","v":"0x1f34617c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048300b0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x1f346178"},"kids_end":{"t":"ptr","v":"0x1f34617c"},"kids_cap":{"t":"ptr","v":"0x1f34617c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831e48"},"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":"0x04831e48"},"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":"0x04832328"},"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":"0x04832328"},"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":"0x04830858"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x1f3461b8"},"kids_end":{"t":"ptr","v":"0x1f3461bc"},"kids_cap":{"t":"ptr","v":"0x1f3461bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830858"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x1f3461b8"},"kids_end":{"t":"ptr","v":"0x1f3461bc"},"kids_cap":{"t":"ptr","v":"0x1f3461bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048310e0"},"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":"0x048310e0"},"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":"0x048201d8"},"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":"0x048201d8"},"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":"0x04830320"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x1f3460f8"},"kids_end":{"t":"ptr","v":"0x1f3460fc"},"kids_cap":{"t":"ptr","v":"0x1f3460fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830320"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x1f3460f8"},"kids_end":{"t":"ptr","v":"0x1f3460fc"},"kids_cap":{"t":"ptr","v":"0x1f3460fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831350"},"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":"0x04831350"},"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":"0x0482e6c0"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x1f346148"},"kids_end":{"t":"ptr","v":"0x1f34614c"},"kids_cap":{"t":"ptr","v":"0x1f34614c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e6c0"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x1f346148"},"kids_end":{"t":"ptr","v":"0x1f34614c"},"kids_cap":{"t":"ptr","v":"0x1f34614c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481ee58"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcf98"},"kids_end":{"t":"ptr","v":"0x0e8fcfa8"},"kids_cap":{"t":"ptr","v":"0x0e8fcfa8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ee58"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcf98"},"kids_end":{"t":"ptr","v":"0x0e8fcfa8"},"kids_cap":{"t":"ptr","v":"0x0e8fcfa8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04820580"},"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":"0x04820580"},"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":"0x0482efa0"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fd0a0"},"kids_end":{"t":"ptr","v":"0x0e8fd0ac"},"kids_cap":{"t":"ptr","v":"0x0e8fd0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482efa0"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fd0a0"},"kids_end":{"t":"ptr","v":"0x0e8fd0ac"},"kids_cap":{"t":"ptr","v":"0x0e8fd0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048306c8"},"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":"0x048306c8"},"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":"0x04831bd8"},"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":"0x04831bd8"},"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":"0x0481ff68"},"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":"0x0481ff68"},"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":"0x0481fcf8"},"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":"0x0481fcf8"},"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":"0x0481f470"},"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":"0x0481f470"},"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":"0x0482e988"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x1f346168"},"kids_end":{"t":"ptr","v":"0x1f34616c"},"kids_cap":{"t":"ptr","v":"0x1f34616c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e988"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x1f346168"},"kids_end":{"t":"ptr","v":"0x1f34616c"},"kids_cap":{"t":"ptr","v":"0x1f34616c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481fa88"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x1f3460d8"},"kids_end":{"t":"ptr","v":"0x1f3460dc"},"kids_cap":{"t":"ptr","v":"0x1f3460dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fa88"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x1f3460d8"},"kids_end":{"t":"ptr","v":"0x1f3460dc"},"kids_cap":{"t":"ptr","v":"0x1f3460dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04832598"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcdb8"},"kids_end":{"t":"ptr","v":"0x0e8fcdc8"},"kids_cap":{"t":"ptr","v":"0x0e8fcdc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04832598"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcdb8"},"kids_end":{"t":"ptr","v":"0x0e8fcdc8"},"kids_cap":{"t":"ptr","v":"0x0e8fcdc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x048320b8"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x1f346108"},"kids_end":{"t":"ptr","v":"0x1f346110"},"kids_cap":{"t":"ptr","v":"0x1f346110"},"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":"0x048320b8"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x1f346108"},"kids_end":{"t":"ptr","v":"0x1f346110"},"kids_cap":{"t":"ptr","v":"0x1f346110"},"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":"0x04831218"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x1f346048"},"kids_end":{"t":"ptr","v":"0x1f34604c"},"kids_cap":{"t":"ptr","v":"0x1f34604c"},"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":"0x04831218"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x1f346048"},"kids_end":{"t":"ptr","v":"0x1f34604c"},"kids_cap":{"t":"ptr","v":"0x1f34604c"},"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":"0x0482fe40"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x1f346128"},"kids_end":{"t":"ptr","v":"0x1f34612c"},"kids_cap":{"t":"ptr","v":"0x1f34612c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fe40"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x1f346128"},"kids_end":{"t":"ptr","v":"0x1f34612c"},"kids_cap":{"t":"ptr","v":"0x1f34612c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481f6e0"},"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":"0x0481f6e0"},"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":"0x0482f480"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcde8"},"kids_end":{"t":"ptr","v":"0x0e8fcdf4"},"kids_cap":{"t":"ptr","v":"0x0e8fcdf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f480"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcde8"},"kids_end":{"t":"ptr","v":"0x0e8fcdf4"},"kids_cap":{"t":"ptr","v":"0x0e8fcdf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831aa0"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x1f346078"},"kids_end":{"t":"ptr","v":"0x1f346080"},"kids_cap":{"t":"ptr","v":"0x1f346080"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831aa0"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x1f346078"},"kids_end":{"t":"ptr","v":"0x1f346080"},"kids_cap":{"t":"ptr","v":"0x1f346080"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482e450"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e890fd0"},"kids_end":{"t":"ptr","v":"0x0e890fe4"},"kids_cap":{"t":"ptr","v":"0x0e890fe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e450"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e890fd0"},"kids_end":{"t":"ptr","v":"0x0e890fe4"},"kids_cap":{"t":"ptr","v":"0x0e890fe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482fbd0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x1f346098"},"kids_end":{"t":"ptr","v":"0x1f34609c"},"kids_cap":{"t":"ptr","v":"0x1f34609c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fbd0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x1f346098"},"kids_end":{"t":"ptr","v":"0x1f34609c"},"kids_cap":{"t":"ptr","v":"0x1f34609c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831830"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x1f3460b8"},"kids_end":{"t":"ptr","v":"0x1f3460bc"},"kids_cap":{"t":"ptr","v":"0x1f3460bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831830"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x1f3460b8"},"kids_end":{"t":"ptr","v":"0x1f3460bc"},"kids_cap":{"t":"ptr","v":"0x1f3460bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482ebf8"},"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":"0x0482ebf8"},"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":"0x04832460"},"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":"0x04832460"},"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":"0x0482fd08"},"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":"0x0482fd08"},"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":"0x0482ed30"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x1f346088"},"kids_end":{"t":"ptr","v":"0x1f34608c"},"kids_cap":{"t":"ptr","v":"0x1f34608c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ed30"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x1f346088"},"kids_end":{"t":"ptr","v":"0x1f34608c"},"kids_cap":{"t":"ptr","v":"0x1f34608c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830458"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x1f3461d8"},"kids_end":{"t":"ptr","v":"0x1f3461dc"},"kids_cap":{"t":"ptr","v":"0x1f3461dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830458"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x1f3461d8"},"kids_end":{"t":"ptr","v":"0x1f3461dc"},"kids_cap":{"t":"ptr","v":"0x1f3461dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482fa98"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x1f3460a8"},"kids_end":{"t":"ptr","v":"0x1f3460ac"},"kids_cap":{"t":"ptr","v":"0x1f3460ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fa98"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x1f3460a8"},"kids_end":{"t":"ptr","v":"0x1f3460ac"},"kids_cap":{"t":"ptr","v":"0x1f3460ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830590"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x1f346068"},"kids_end":{"t":"ptr","v":"0x1f346070"},"kids_cap":{"t":"ptr","v":"0x1f346070"},"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":"0x04830590"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x1f346068"},"kids_end":{"t":"ptr","v":"0x1f346070"},"kids_cap":{"t":"ptr","v":"0x1f346070"},"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":"0x0482eac0"},"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":"0x0482eac0"},"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":"0x0482df70"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e890c90"},"kids_end":{"t":"ptr","v":"0x0e890ca4"},"kids_cap":{"t":"ptr","v":"0x0e890ca4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0482df70"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e890c90"},"kids_end":{"t":"ptr","v":"0x0e890ca4"},"kids_cap":{"t":"ptr","v":"0x0e890ca4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0481f0c8"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x1f3461c8"},"kids_end":{"t":"ptr","v":"0x1f3461cc"},"kids_cap":{"t":"ptr","v":"0x1f3461cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f0c8"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x1f3461c8"},"kids_end":{"t":"ptr","v":"0x1f3461cc"},"kids_cap":{"t":"ptr","v":"0x1f3461cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048206b8"},"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":"0x048206b8"},"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":"0x0481fe30"},"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":"0x0481fe30"},"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":"0x0481ebe8"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x1f3460c8"},"kids_end":{"t":"ptr","v":"0x1f3460cc"},"kids_cap":{"t":"ptr","v":"0x1f3460cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ebe8"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x1f3460c8"},"kids_end":{"t":"ptr","v":"0x1f3460cc"},"kids_cap":{"t":"ptr","v":"0x1f3460cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481f818"},"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":"0x0481f818"},"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":"0x0482cab8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x1f346138"},"kids_end":{"t":"ptr","v":"0x1f34613c"},"kids_cap":{"t":"ptr","v":"0x1f34613c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cab8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x1f346138"},"kids_end":{"t":"ptr","v":"0x1f34613c"},"kids_cap":{"t":"ptr","v":"0x1f34613c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d5b0"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x1f3461e8"},"kids_end":{"t":"ptr","v":"0x1f3461f0"},"kids_cap":{"t":"ptr","v":"0x1f3461f0"},"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":"0x0482d5b0"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x1f3461e8"},"kids_end":{"t":"ptr","v":"0x1f3461f0"},"kids_cap":{"t":"ptr","v":"0x1f3461f0"},"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":"0x0481f5a8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x1f3461f8"},"kids_end":{"t":"ptr","v":"0x1f346200"},"kids_cap":{"t":"ptr","v":"0x1f346200"},"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":"0x0481f5a8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x1f3461f8"},"kids_end":{"t":"ptr","v":"0x1f346200"},"kids_cap":{"t":"ptr","v":"0x1f346200"},"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":"0x0482d6e8"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x1f346008"},"kids_end":{"t":"ptr","v":"0x1f346010"},"kids_cap":{"t":"ptr","v":"0x1f346010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d6e8"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x1f346008"},"kids_end":{"t":"ptr","v":"0x1f346010"},"kids_cap":{"t":"ptr","v":"0x1f346010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493a1d0"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x1f346658"},"kids_end":{"t":"ptr","v":"0x1f34665c"},"kids_cap":{"t":"ptr","v":"0x1f34665c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a1d0"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x1f346658"},"kids_end":{"t":"ptr","v":"0x1f34665c"},"kids_cap":{"t":"ptr","v":"0x1f34665c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e659538"},"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":"0x0e659538"},"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":"0x0e65cd48"},"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":"0x0e65cd48"},"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":"0x0e660ee0"},"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":"0x0e660ee0"},"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":"0x0e65ad98"},"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":"0x0e65ad98"},"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":"0x0e6597a8"},"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":"0x0e6597a8"},"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":"0x0e659ef8"},"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":"0x0e659ef8"},"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":"0x0e65b9c8"},"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":"0x0e65b9c8"},"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":"0x0e65bea8"},"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":"0x0e65bea8"},"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":"0x0e659b50"},"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":"0x0e659b50"},"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":"0x0e65bc38"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x1f346668"},"kids_end":{"t":"ptr","v":"0x1f34666c"},"kids_cap":{"t":"ptr","v":"0x1f34666c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bc38"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x1f346668"},"kids_end":{"t":"ptr","v":"0x1f34666c"},"kids_cap":{"t":"ptr","v":"0x1f34666c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e659058"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcdd0"},"kids_end":{"t":"ptr","v":"0x0e8fcddc"},"kids_cap":{"t":"ptr","v":"0x0e8fcddc"},"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":"0x0e659058"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcdd0"},"kids_end":{"t":"ptr","v":"0x0e8fcddc"},"kids_cap":{"t":"ptr","v":"0x0e8fcddc"},"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":"0x0e65a780"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fce00"},"kids_end":{"t":"ptr","v":"0x0e8fce0c"},"kids_cap":{"t":"ptr","v":"0x0e8fce0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a780"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fce00"},"kids_end":{"t":"ptr","v":"0x0e8fce0c"},"kids_cap":{"t":"ptr","v":"0x0e8fce0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65ce80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fce18"},"kids_end":{"t":"ptr","v":"0x0e8fce24"},"kids_cap":{"t":"ptr","v":"0x0e8fce24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ce80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fce18"},"kids_end":{"t":"ptr","v":"0x0e8fce24"},"kids_cap":{"t":"ptr","v":"0x0e8fce24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c388"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fce30"},"kids_end":{"t":"ptr","v":"0x0e8fce3c"},"kids_cap":{"t":"ptr","v":"0x0e8fce3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c388"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fce30"},"kids_end":{"t":"ptr","v":"0x0e8fce3c"},"kids_cap":{"t":"ptr","v":"0x0e8fce3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65ac60"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fce48"},"kids_end":{"t":"ptr","v":"0x0e8fce54"},"kids_cap":{"t":"ptr","v":"0x0e8fce54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ac60"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fce48"},"kids_end":{"t":"ptr","v":"0x0e8fce54"},"kids_cap":{"t":"ptr","v":"0x0e8fce54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e659670"},"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":"0x0e659670"},"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":"0x0e65b758"},"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":"0x0e65b758"},"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":"0x0e660c70"},"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":"0x0e660c70"},"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":"0x0e65c118"},"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":"0x0e65c118"},"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":"0x049511c8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e890e30"},"kids_end":{"t":"ptr","v":"0x0e890e48"},"kids_cap":{"t":"ptr","v":"0x0e890e48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x049511c8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e890e30"},"kids_end":{"t":"ptr","v":"0x0e890e48"},"kids_cap":{"t":"ptr","v":"0x0e890e48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65a8b8"},"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":"0x0e65a8b8"},"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":"0x0e65b008"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x1f346858"},"kids_end":{"t":"ptr","v":"0x1f346860"},"kids_cap":{"t":"ptr","v":"0x1f346860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b008"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x1f346858"},"kids_end":{"t":"ptr","v":"0x1f346860"},"kids_cap":{"t":"ptr","v":"0x1f346860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65cad8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x1f3469f8"},"kids_end":{"t":"ptr","v":"0x1f346a00"},"kids_cap":{"t":"ptr","v":"0x1f346a00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cad8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x1f3469f8"},"kids_end":{"t":"ptr","v":"0x1f346a00"},"kids_cap":{"t":"ptr","v":"0x1f346a00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e660520"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x1f3468e8"},"kids_end":{"t":"ptr","v":"0x1f3468f0"},"kids_cap":{"t":"ptr","v":"0x1f3468f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660520"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x1f3468e8"},"kids_end":{"t":"ptr","v":"0x1f3468f0"},"kids_cap":{"t":"ptr","v":"0x1f3468f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65a510"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x1f346808"},"kids_end":{"t":"ptr","v":"0x1f346810"},"kids_cap":{"t":"ptr","v":"0x1f346810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a510"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x1f346808"},"kids_end":{"t":"ptr","v":"0x1f346810"},"kids_cap":{"t":"ptr","v":"0x1f346810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65bd70"},"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":"0x0e65bd70"},"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":"0x0e65b140"},"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":"0x0e65b140"},"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":"0x0e6592c8"},"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":"0x0e6592c8"},"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":"0x0e65c5f8"},"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":"0x0e65c5f8"},"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":"0x0e65c730"},"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":"0x0e65c730"},"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":"0x0e659a18"},"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":"0x0e659a18"},"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":"0x0e659400"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x1f346898"},"kids_end":{"t":"ptr","v":"0x1f34689c"},"kids_cap":{"t":"ptr","v":"0x1f34689c"},"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":"0x0e659400"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x1f346898"},"kids_end":{"t":"ptr","v":"0x1f34689c"},"kids_cap":{"t":"ptr","v":"0x1f34689c"},"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":"0x0e65aed0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x1f346908"},"kids_end":{"t":"ptr","v":"0x1f34690c"},"kids_cap":{"t":"ptr","v":"0x1f34690c"},"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":"0x0e65aed0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x1f346908"},"kids_end":{"t":"ptr","v":"0x1f34690c"},"kids_cap":{"t":"ptr","v":"0x1f34690c"},"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":"0x0e65b278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x1f346998"},"kids_end":{"t":"ptr","v":"0x1f34699c"},"kids_cap":{"t":"ptr","v":"0x1f34699c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x1f346998"},"kids_end":{"t":"ptr","v":"0x1f34699c"},"kids_cap":{"t":"ptr","v":"0x1f34699c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65b3b0"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x1f346868"},"kids_end":{"t":"ptr","v":"0x1f34686c"},"kids_cap":{"t":"ptr","v":"0x1f34686c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b3b0"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x1f346868"},"kids_end":{"t":"ptr","v":"0x1f34686c"},"kids_cap":{"t":"ptr","v":"0x1f34686c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c9a0"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x1f3468a8"},"kids_end":{"t":"ptr","v":"0x1f3468ac"},"kids_cap":{"t":"ptr","v":"0x1f3468ac"},"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":"0x0e65c9a0"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x1f3468a8"},"kids_end":{"t":"ptr","v":"0x1f3468ac"},"kids_cap":{"t":"ptr","v":"0x1f3468ac"},"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":"0x0e65c4c0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x1f346928"},"kids_end":{"t":"ptr","v":"0x1f34692c"},"kids_cap":{"t":"ptr","v":"0x1f34692c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c4c0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x1f346928"},"kids_end":{"t":"ptr","v":"0x1f34692c"},"kids_cap":{"t":"ptr","v":"0x1f34692c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c250"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x1f3468b8"},"kids_end":{"t":"ptr","v":"0x1f3468bc"},"kids_cap":{"t":"ptr","v":"0x1f3468bc"},"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":"0x0e65c250"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x1f3468b8"},"kids_end":{"t":"ptr","v":"0x1f3468bc"},"kids_cap":{"t":"ptr","v":"0x1f3468bc"},"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":"0x0e65c868"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x1f3468c8"},"kids_end":{"t":"ptr","v":"0x1f3468cc"},"kids_cap":{"t":"ptr","v":"0x1f3468cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c868"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x1f3468c8"},"kids_end":{"t":"ptr","v":"0x1f3468cc"},"kids_cap":{"t":"ptr","v":"0x1f3468cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e659dc0"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x1f3469a8"},"kids_end":{"t":"ptr","v":"0x1f3469ac"},"kids_cap":{"t":"ptr","v":"0x1f3469ac"},"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":"0x0e659dc0"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x1f3469a8"},"kids_end":{"t":"ptr","v":"0x1f3469ac"},"kids_cap":{"t":"ptr","v":"0x1f3469ac"},"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":"0x0e65a030"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x1f346888"},"kids_end":{"t":"ptr","v":"0x1f34688c"},"kids_cap":{"t":"ptr","v":"0x1f34688c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a030"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x1f346888"},"kids_end":{"t":"ptr","v":"0x1f34688c"},"kids_cap":{"t":"ptr","v":"0x1f34688c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65bb00"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x1f346938"},"kids_end":{"t":"ptr","v":"0x1f34693c"},"kids_cap":{"t":"ptr","v":"0x1f34693c"},"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":"0x0e65bb00"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x1f346938"},"kids_end":{"t":"ptr","v":"0x1f34693c"},"kids_cap":{"t":"ptr","v":"0x1f34693c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"turns":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"turns":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}},"observed_techs":{"before":{"t":"struct","v":{"bytes":{"t":"i32","v":880},"vec_begin":{"t":"ptr","v":"0x1f345768"},"vec_end":{"t":"ptr","v":"0x1f345ad8"},"vec_cap":{"t":"ptr","v":"0x1f345ad8"}}},"after":{"t":"struct","v":{"bytes":{"t":"i32","v":880},"vec_begin":{"t":"ptr","v":"0x1f345768"},"vec_end":{"t":"ptr","v":"0x1f345ad8"},"vec_cap":{"t":"ptr","v":"0x1f345ad8"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a300"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x1f347a78"},"kids_end":{"t":"ptr","v":"0x1f347a7c"},"kids_cap":{"t":"ptr","v":"0x1f347a7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651648"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x1f347b28"},"kids_end":{"t":"ptr","v":"0x1f347b2c"},"kids_cap":{"t":"ptr","v":"0x1f347b2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652140"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x1f347a28"},"kids_end":{"t":"ptr","v":"0x1f347a2c"},"kids_cap":{"t":"ptr","v":"0x1f347a2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652890"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x1f347af8"},"kids_end":{"t":"ptr","v":"0x1f347b00"},"kids_cap":{"t":"ptr","v":"0x1f347b00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6512a0"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x1f347a38"},"kids_end":{"t":"ptr","v":"0x1f347a40"},"kids_cap":{"t":"ptr","v":"0x1f347a40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651510"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x1f347a68"},"kids_end":{"t":"ptr","v":"0x1f347a6c"},"kids_cap":{"t":"ptr","v":"0x1f347a6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651ed0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651b28"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x1f347b98"},"kids_end":{"t":"ptr","v":"0x1f347b9c"},"kids_cap":{"t":"ptr","v":"0x1f347b9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6529c8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x1f347ad8"},"kids_end":{"t":"ptr","v":"0x1f347adc"},"kids_cap":{"t":"ptr","v":"0x1f347adc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652278"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fec30"},"kids_end":{"t":"ptr","v":"0x0e8fec3c"},"kids_cap":{"t":"ptr","v":"0x0e8fec3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652d70"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651780"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x1f347a08"},"kids_end":{"t":"ptr","v":"0x1f347a10"},"kids_cap":{"t":"ptr","v":"0x1f347a10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652b00"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fec48"},"kids_end":{"t":"ptr","v":"0x0e8fec58"},"kids_cap":{"t":"ptr","v":"0x0e8fec58"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652ea8"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x1f347a58"},"kids_end":{"t":"ptr","v":"0x1f347a5c"},"kids_cap":{"t":"ptr","v":"0x1f347a5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04950e38"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x1f347a88"},"kids_end":{"t":"ptr","v":"0x1f347a8c"},"kids_cap":{"t":"ptr","v":"0x1f347a8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fec78"},"kids_end":{"t":"ptr","v":"0x0e8fec84"},"kids_cap":{"t":"ptr","v":"0x0e8fec84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651030"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x1f347b48"},"kids_end":{"t":"ptr","v":"0x1f347b4c"},"kids_cap":{"t":"ptr","v":"0x1f347b4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6518b8"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652758"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x1f347ab8"},"kids_end":{"t":"ptr","v":"0x1f347abc"},"kids_cap":{"t":"ptr","v":"0x1f347abc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651168"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x1f347a48"},"kids_end":{"t":"ptr","v":"0x1f347a4c"},"kids_cap":{"t":"ptr","v":"0x1f347a4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6523b0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656150"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655040"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fec90"},"kids_end":{"t":"ptr","v":"0x0e8fec9c"},"kids_cap":{"t":"ptr","v":"0x0e8fec9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b620"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fcf80"},"kids_end":{"t":"ptr","v":"0x0e8fcf90"},"kids_cap":{"t":"ptr","v":"0x0e8fcf90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659c88"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x1f347a98"},"kids_end":{"t":"ptr","v":"0x1f347a9c"},"kids_cap":{"t":"ptr","v":"0x1f347a9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a3d8"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x1f347ac8"},"kids_end":{"t":"ptr","v":"0x1f347acc"},"kids_cap":{"t":"ptr","v":"0x1f347acc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6598e0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x1f347ae8"},"kids_end":{"t":"ptr","v":"0x1f347aec"},"kids_cap":{"t":"ptr","v":"0x1f347aec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a648"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a2a0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x1f347b08"},"kids_end":{"t":"ptr","v":"0x1f347b0c"},"kids_cap":{"t":"ptr","v":"0x1f347b0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656c48"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x1f347b18"},"kids_end":{"t":"ptr","v":"0x1f347b20"},"kids_cap":{"t":"ptr","v":"0x1f347b20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655790"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fce78"},"kids_end":{"t":"ptr","v":"0x0e8fce84"},"kids_cap":{"t":"ptr","v":"0x0e8fce84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655658"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x1f345c58"},"kids_end":{"t":"ptr","v":"0x1f345c60"},"kids_cap":{"t":"ptr","v":"0x1f345c60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6552b0"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656eb8"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655ee0"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fcf38"},"kids_end":{"t":"ptr","v":"0x0e8fcf44"},"kids_cap":{"t":"ptr","v":"0x0e8fcf44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6553e8"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fcfc8"},"kids_end":{"t":"ptr","v":"0x0e8fcfd4"},"kids_cap":{"t":"ptr","v":"0x0e8fcfd4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6519f0"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x1f345cb8"},"kids_end":{"t":"ptr","v":"0x1f345cc0"},"kids_cap":{"t":"ptr","v":"0x1f345cc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655178"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x1f345c88"},"kids_end":{"t":"ptr","v":"0x1f345c8c"},"kids_cap":{"t":"ptr","v":"0x1f345c8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656018"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x1f345cf8"},"kids_end":{"t":"ptr","v":"0x1f345cfc"},"kids_cap":{"t":"ptr","v":"0x1f345cfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656630"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fcf50"},"kids_end":{"t":"ptr","v":"0x0e8fcf5c"},"kids_cap":{"t":"ptr","v":"0x0e8fcf5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6564f8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x1f345c98"},"kids_end":{"t":"ptr","v":"0x1f345c9c"},"kids_cap":{"t":"ptr","v":"0x1f345c9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655520"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655b38"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x1f345c68"},"kids_end":{"t":"ptr","v":"0x1f345c6c"},"kids_cap":{"t":"ptr","v":"0x1f345c6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04950f68"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x1f345d08"},"kids_end":{"t":"ptr","v":"0x1f345d0c"},"kids_cap":{"t":"ptr","v":"0x1f345d0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656288"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6563c0"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x1f345d68"},"kids_end":{"t":"ptr","v":"0x1f345d6c"},"kids_cap":{"t":"ptr","v":"0x1f345d6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6568a0"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655a00"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fcff8"},"kids_end":{"t":"ptr","v":"0x0e8fd004"},"kids_cap":{"t":"ptr","v":"0x0e8fd004"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a168"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x1f345d58"},"kids_end":{"t":"ptr","v":"0x1f345d5c"},"kids_cap":{"t":"ptr","v":"0x1f345d5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ab28"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x1f345db8"},"kids_end":{"t":"ptr","v":"0x1f345dbc"},"kids_cap":{"t":"ptr","v":"0x1f345dbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cc10"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x1f345d38"},"kids_end":{"t":"ptr","v":"0x1f345d3c"},"kids_cap":{"t":"ptr","v":"0x1f345d3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bfe0"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x1f345c78"},"kids_end":{"t":"ptr","v":"0x1f345c7c"},"kids_cap":{"t":"ptr","v":"0x1f345c7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b4e8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x1f345ca8"},"kids_end":{"t":"ptr","v":"0x1f345cac"},"kids_cap":{"t":"ptr","v":"0x1f345cac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b890"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x1f345cc8"},"kids_end":{"t":"ptr","v":"0x1f345ccc"},"kids_cap":{"t":"ptr","v":"0x1f345ccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656768"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657c78"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658ec0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x1f345d48"},"kids_end":{"t":"ptr","v":"0x1f345d4c"},"kids_cap":{"t":"ptr","v":"0x1f345d4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6589e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fd070"},"kids_end":{"t":"ptr","v":"0x0e8fd07c"},"kids_cap":{"t":"ptr","v":"0x0e8fd07c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6578d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fd010"},"kids_end":{"t":"ptr","v":"0x0e8fd01c"},"kids_cap":{"t":"ptr","v":"0x0e8fd01c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657ee8"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658158"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951098"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x1f345c18"},"kids_end":{"t":"ptr","v":"0x1f345c1c"},"kids_cap":{"t":"ptr","v":"0x1f345c1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658770"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x1f345d28"},"kids_end":{"t":"ptr","v":"0x1f345d30"},"kids_cap":{"t":"ptr","v":"0x1f345d30"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658020"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657db0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x1f345c28"},"kids_end":{"t":"ptr","v":"0x1f345c2c"},"kids_cap":{"t":"ptr","v":"0x1f345c2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821d00"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e890ab0"},"kids_end":{"t":"ptr","v":"0x0e890ac4"},"kids_cap":{"t":"ptr","v":"0x0e890ac4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f950"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fcfe0"},"kids_end":{"t":"ptr","v":"0x0e8fcfec"},"kids_cap":{"t":"ptr","v":"0x0e8fcfec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821478"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e9887b0"},"kids_end":{"t":"ptr","v":"0x0e9887d4"},"kids_cap":{"t":"ptr","v":"0x0e9887d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651d98"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048210d0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821340"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fd028"},"kids_end":{"t":"ptr","v":"0x0e8fd034"},"kids_cap":{"t":"ptr","v":"0x0e8fd034"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[86]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820ab8"},"tech_id":{"t":"i32","v":86},"kids_begin":{"t":"ptr","v":"0x1f345cd8"},"kids_end":{"t":"ptr","v":"0x1f345cdc"},"kids_cap":{"t":"ptr","v":"0x1f345cdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[87]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04822450"},"tech_id":{"t":"i32","v":87},"kids_begin":{"t":"ptr","v":"0x1f345da8"},"kids_end":{"t":"ptr","v":"0x1f345db0"},"kids_cap":{"t":"ptr","v":"0x1f345db0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[88]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821a90"},"tech_id":{"t":"i32","v":88},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481e978"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481e840"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x1f345c38"},"kids_end":{"t":"ptr","v":"0x1f345c3c"},"kids_cap":{"t":"ptr","v":"0x1f345c3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048216e8"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821820"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x1f345c48"},"kids_end":{"t":"ptr","v":"0x1f345c4c"},"kids_cap":{"t":"ptr","v":"0x1f345c4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821958"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a430"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x1f345dc8"},"kids_end":{"t":"ptr","v":"0x1f345dcc"},"kids_cap":{"t":"ptr","v":"0x1f345dcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048215b0"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x1f345ce8"},"kids_end":{"t":"ptr","v":"0x1f345cec"},"kids_cap":{"t":"ptr","v":"0x1f345cec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0480fde8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x1f345d18"},"kids_end":{"t":"ptr","v":"0x1f345d1c"},"kids_cap":{"t":"ptr","v":"0x1f345d1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c4d8"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482de38"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d0d0"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x1f345dd8"},"kids_end":{"t":"ptr","v":"0x1f345de0"},"kids_cap":{"t":"ptr","v":"0x1f345de0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bff8"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x1f345d78"},"kids_end":{"t":"ptr","v":"0x1f345d80"},"kids_cap":{"t":"ptr","v":"0x1f345d80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e318"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e588"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b638"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e890d30"},"kids_end":{"t":"ptr","v":"0x0e890d44"},"kids_cap":{"t":"ptr","v":"0x0e890d44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657798"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fcfb0"},"kids_end":{"t":"ptr","v":"0x0e8fcfbc"},"kids_cap":{"t":"ptr","v":"0x0e8fcfbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482c980"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482dd00"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x1f345d88"},"kids_end":{"t":"ptr","v":"0x1f345d8c"},"kids_cap":{"t":"ptr","v":"0x1f345d8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d958"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x1f345d98"},"kids_end":{"t":"ptr","v":"0x1f345d9c"},"kids_cap":{"t":"ptr","v":"0x1f345d9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c3a0"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x1f345de8"},"kids_end":{"t":"ptr","v":"0x1f345dec"},"kids_cap":{"t":"ptr","v":"0x1f345dec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658c50"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x1f345df8"},"kids_end":{"t":"ptr","v":"0x1f345dfc"},"kids_cap":{"t":"ptr","v":"0x1f345dfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cf98"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x1f345c08"},"kids_end":{"t":"ptr","v":"0x1f345c10"},"kids_cap":{"t":"ptr","v":"0x1f345c10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049517b8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482da90"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fcec0"},"kids_end":{"t":"ptr","v":"0x0e8fcecc"},"kids_cap":{"t":"ptr","v":"0x0e8fcecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951688"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x1f345f38"},"kids_end":{"t":"ptr","v":"0x1f345f40"},"kids_cap":{"t":"ptr","v":"0x1f345f40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b8a8"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x1f345e88"},"kids_end":{"t":"ptr","v":"0x1f345e90"},"kids_cap":{"t":"ptr","v":"0x1f345e90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cd28"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x1f345f08"},"kids_end":{"t":"ptr","v":"0x1f345f0c"},"kids_cap":{"t":"ptr","v":"0x1f345f0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482dbc8"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fd040"},"kids_end":{"t":"ptr","v":"0x0e8fd04c"},"kids_cap":{"t":"ptr","v":"0x0e8fd04c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d478"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d340"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fd058"},"kids_end":{"t":"ptr","v":"0x0e8fd064"},"kids_cap":{"t":"ptr","v":"0x0e8fd064"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bb18"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fce90"},"kids_end":{"t":"ptr","v":"0x0e8fcea0"},"kids_cap":{"t":"ptr","v":"0x0e8fcea0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x1f345f18"},"kids_end":{"t":"ptr","v":"0x1f345f20"},"kids_cap":{"t":"ptr","v":"0x1f345f20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657a08"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bd88"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x1f345f28"},"kids_end":{"t":"ptr","v":"0x1f345f2c"},"kids_cap":{"t":"ptr","v":"0x1f345f2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951558"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fd088"},"kids_end":{"t":"ptr","v":"0x0e8fd094"},"kids_cap":{"t":"ptr","v":"0x0e8fd094"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e5e0950"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x1f345f68"},"kids_end":{"t":"ptr","v":"0x1f345f6c"},"kids_cap":{"t":"ptr","v":"0x1f345f6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bec0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x1f345e28"},"kids_end":{"t":"ptr","v":"0x1f345e2c"},"kids_cap":{"t":"ptr","v":"0x1f345e2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bc50"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b9e0"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482c848"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x1f345e98"},"kids_end":{"t":"ptr","v":"0x1f345e9c"},"kids_cap":{"t":"ptr","v":"0x1f345e9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ce60"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049512f8"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x1f345ef8"},"kids_end":{"t":"ptr","v":"0x1f345f00"},"kids_cap":{"t":"ptr","v":"0x1f345f00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04939f70"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x1f345ee8"},"kids_end":{"t":"ptr","v":"0x1f345eec"},"kids_cap":{"t":"ptr","v":"0x1f345eec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656d80"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x1f345ea8"},"kids_end":{"t":"ptr","v":"0x1f345eb0"},"kids_cap":{"t":"ptr","v":"0x1f345eb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6558c8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fcef0"},"kids_end":{"t":"ptr","v":"0x0e8fcefc"},"kids_cap":{"t":"ptr","v":"0x0e8fcefc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658b18"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657528"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x1f345ff8"},"kids_end":{"t":"ptr","v":"0x1f345ffc"},"kids_cap":{"t":"ptr","v":"0x1f345ffc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658290"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6569d8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x1f345f48"},"kids_end":{"t":"ptr","v":"0x1f345f50"},"kids_cap":{"t":"ptr","v":"0x1f345f50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658d88"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6572b8"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x1f345f58"},"kids_end":{"t":"ptr","v":"0x1f345f5c"},"kids_cap":{"t":"ptr","v":"0x1f345f5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657b40"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x1f345f78"},"kids_end":{"t":"ptr","v":"0x1f345f80"},"kids_cap":{"t":"ptr","v":"0x1f345f80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6573f0"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655da8"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x1f345f88"},"kids_end":{"t":"ptr","v":"0x1f345f90"},"kids_cap":{"t":"ptr","v":"0x1f345f90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658500"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x1f345f98"},"kids_end":{"t":"ptr","v":"0x1f345fa0"},"kids_cap":{"t":"ptr","v":"0x1f345fa0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6583c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x1f345fa8"},"kids_end":{"t":"ptr","v":"0x1f345fb0"},"kids_cap":{"t":"ptr","v":"0x1f345fb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657180"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x1f345fb8"},"kids_end":{"t":"ptr","v":"0x1f345fbc"},"kids_cap":{"t":"ptr","v":"0x1f345fbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0480ff18"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x1f345fc8"},"kids_end":{"t":"ptr","v":"0x1f345fcc"},"kids_cap":{"t":"ptr","v":"0x1f345fcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a0a0"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x1f345eb8"},"kids_end":{"t":"ptr","v":"0x1f345ec0"},"kids_cap":{"t":"ptr","v":"0x1f345ec0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f338"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f960"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x1f345fd8"},"kids_end":{"t":"ptr","v":"0x1f345fe0"},"kids_cap":{"t":"ptr","v":"0x1f345fe0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831968"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x1f345fe8"},"kids_end":{"t":"ptr","v":"0x1f345fec"},"kids_cap":{"t":"ptr","v":"0x1f345fec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f210"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x1f345e08"},"kids_end":{"t":"ptr","v":"0x1f345e0c"},"kids_cap":{"t":"ptr","v":"0x1f345e0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831d10"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x1f345e18"},"kids_end":{"t":"ptr","v":"0x1f345e20"},"kids_cap":{"t":"ptr","v":"0x1f345e20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830e70"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ed20"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820448"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x1f345e38"},"kids_end":{"t":"ptr","v":"0x1f345e3c"},"kids_cap":{"t":"ptr","v":"0x1f345e3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831488"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fbc0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x1f345e48"},"kids_end":{"t":"ptr","v":"0x1f345e4c"},"kids_cap":{"t":"ptr","v":"0x1f345e4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ee68"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f200"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f828"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x1f345e58"},"kids_end":{"t":"ptr","v":"0x1f345e60"},"kids_cap":{"t":"ptr","v":"0x1f345e60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830990"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830c00"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x1f345ec8"},"kids_end":{"t":"ptr","v":"0x1f345ecc"},"kids_cap":{"t":"ptr","v":"0x1f345ecc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e1e0"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x1f345ed8"},"kids_end":{"t":"ptr","v":"0x1f345edc"},"kids_cap":{"t":"ptr","v":"0x1f345edc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048321f0"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fced8"},"kids_end":{"t":"ptr","v":"0x0e8fcee4"},"kids_cap":{"t":"ptr","v":"0x0e8fcee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820310"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e850"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fcf08"},"kids_end":{"t":"ptr","v":"0x0e8fcf18"},"kids_cap":{"t":"ptr","v":"0x0e8fcf18"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831f80"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x1f345e68"},"kids_end":{"t":"ptr","v":"0x1f345e70"},"kids_cap":{"t":"ptr","v":"0x1f345e70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f5b8"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x1f345e78"},"kids_end":{"t":"ptr","v":"0x1f345e80"},"kids_cap":{"t":"ptr","v":"0x1f345e80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048315c0"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x1f346188"},"kids_end":{"t":"ptr","v":"0x1f34618c"},"kids_cap":{"t":"ptr","v":"0x1f34618c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830ac8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x1f346198"},"kids_end":{"t":"ptr","v":"0x1f3461a0"},"kids_cap":{"t":"ptr","v":"0x1f3461a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830fa8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x1f346018"},"kids_end":{"t":"ptr","v":"0x1f346020"},"kids_cap":{"t":"ptr","v":"0x1f346020"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048316f8"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x1f346028"},"kids_end":{"t":"ptr","v":"0x1f346030"},"kids_cap":{"t":"ptr","v":"0x1f346030"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f6f0"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x1f346058"},"kids_end":{"t":"ptr","v":"0x1f34605c"},"kids_cap":{"t":"ptr","v":"0x1f34605c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d820"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x1f346118"},"kids_end":{"t":"ptr","v":"0x1f34611c"},"kids_cap":{"t":"ptr","v":"0x1f34611c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e0a8"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x1f346158"},"kids_end":{"t":"ptr","v":"0x1f346160"},"kids_cap":{"t":"ptr","v":"0x1f346160"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830d38"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x1f3460e8"},"kids_end":{"t":"ptr","v":"0x1f3460ec"},"kids_cap":{"t":"ptr","v":"0x1f3460ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048200a0"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8fcf68"},"kids_end":{"t":"ptr","v":"0x0e8fcf74"},"kids_cap":{"t":"ptr","v":"0x0e8fcf74"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ff78"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x1f346038"},"kids_end":{"t":"ptr","v":"0x1f34603c"},"kids_cap":{"t":"ptr","v":"0x1f34603c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481eab0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048301e8"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ef90"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e890ed0"},"kids_end":{"t":"ptr","v":"0x0e890ee4"},"kids_cap":{"t":"ptr","v":"0x0e890ee4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cbf0"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f348"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x1f3461a8"},"kids_end":{"t":"ptr","v":"0x1f3461ac"},"kids_cap":{"t":"ptr","v":"0x1f3461ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048326d0"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048300b0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x1f346178"},"kids_end":{"t":"ptr","v":"0x1f34617c"},"kids_cap":{"t":"ptr","v":"0x1f34617c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831e48"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04832328"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830858"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x1f3461b8"},"kids_end":{"t":"ptr","v":"0x1f3461bc"},"kids_cap":{"t":"ptr","v":"0x1f3461bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048310e0"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048201d8"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830320"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x1f3460f8"},"kids_end":{"t":"ptr","v":"0x1f3460fc"},"kids_cap":{"t":"ptr","v":"0x1f3460fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831350"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e6c0"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x1f346148"},"kids_end":{"t":"ptr","v":"0x1f34614c"},"kids_cap":{"t":"ptr","v":"0x1f34614c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ee58"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8fcf98"},"kids_end":{"t":"ptr","v":"0x0e8fcfa8"},"kids_cap":{"t":"ptr","v":"0x0e8fcfa8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820580"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482efa0"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8fd0a0"},"kids_end":{"t":"ptr","v":"0x0e8fd0ac"},"kids_cap":{"t":"ptr","v":"0x0e8fd0ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048306c8"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831bd8"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ff68"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fcf8"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[217]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f470"},"tech_id":{"t":"i32","v":217},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e988"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x1f346168"},"kids_end":{"t":"ptr","v":"0x1f34616c"},"kids_cap":{"t":"ptr","v":"0x1f34616c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fa88"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x1f3460d8"},"kids_end":{"t":"ptr","v":"0x1f3460dc"},"kids_cap":{"t":"ptr","v":"0x1f3460dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04832598"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fcdb8"},"kids_end":{"t":"ptr","v":"0x0e8fcdc8"},"kids_cap":{"t":"ptr","v":"0x0e8fcdc8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048320b8"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x1f346108"},"kids_end":{"t":"ptr","v":"0x1f346110"},"kids_cap":{"t":"ptr","v":"0x1f346110"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831218"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x1f346048"},"kids_end":{"t":"ptr","v":"0x1f34604c"},"kids_cap":{"t":"ptr","v":"0x1f34604c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fe40"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x1f346128"},"kids_end":{"t":"ptr","v":"0x1f34612c"},"kids_cap":{"t":"ptr","v":"0x1f34612c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f6e0"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f480"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fcde8"},"kids_end":{"t":"ptr","v":"0x0e8fcdf4"},"kids_cap":{"t":"ptr","v":"0x0e8fcdf4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831aa0"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x1f346078"},"kids_end":{"t":"ptr","v":"0x1f346080"},"kids_cap":{"t":"ptr","v":"0x1f346080"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e450"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e890fd0"},"kids_end":{"t":"ptr","v":"0x0e890fe4"},"kids_cap":{"t":"ptr","v":"0x0e890fe4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fbd0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x1f346098"},"kids_end":{"t":"ptr","v":"0x1f34609c"},"kids_cap":{"t":"ptr","v":"0x1f34609c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831830"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x1f3460b8"},"kids_end":{"t":"ptr","v":"0x1f3460bc"},"kids_cap":{"t":"ptr","v":"0x1f3460bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ebf8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04832460"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fd08"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ed30"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x1f346088"},"kids_end":{"t":"ptr","v":"0x1f34608c"},"kids_cap":{"t":"ptr","v":"0x1f34608c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830458"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x1f3461d8"},"kids_end":{"t":"ptr","v":"0x1f3461dc"},"kids_cap":{"t":"ptr","v":"0x1f3461dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fa98"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x1f3460a8"},"kids_end":{"t":"ptr","v":"0x1f3460ac"},"kids_cap":{"t":"ptr","v":"0x1f3460ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830590"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x1f346068"},"kids_end":{"t":"ptr","v":"0x1f346070"},"kids_cap":{"t":"ptr","v":"0x1f346070"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482eac0"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482df70"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e890c90"},"kids_end":{"t":"ptr","v":"0x0e890ca4"},"kids_cap":{"t":"ptr","v":"0x0e890ca4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f0c8"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x1f3461c8"},"kids_end":{"t":"ptr","v":"0x1f3461cc"},"kids_cap":{"t":"ptr","v":"0x1f3461cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048206b8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fe30"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ebe8"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x1f3460c8"},"kids_end":{"t":"ptr","v":"0x1f3460cc"},"kids_cap":{"t":"ptr","v":"0x1f3460cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f818"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cab8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x1f346138"},"kids_end":{"t":"ptr","v":"0x1f34613c"},"kids_cap":{"t":"ptr","v":"0x1f34613c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d5b0"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x1f3461e8"},"kids_end":{"t":"ptr","v":"0x1f3461f0"},"kids_cap":{"t":"ptr","v":"0x1f3461f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f5a8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x1f3461f8"},"kids_end":{"t":"ptr","v":"0x1f346200"},"kids_cap":{"t":"ptr","v":"0x1f346200"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d6e8"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x1f346008"},"kids_end":{"t":"ptr","v":"0x1f346010"},"kids_cap":{"t":"ptr","v":"0x1f346010"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a1d0"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x1f346658"},"kids_end":{"t":"ptr","v":"0x1f34665c"},"kids_cap":{"t":"ptr","v":"0x1f34665c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659538"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cd48"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660ee0"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[253]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ad98"},"tech_id":{"t":"i32","v":253},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6597a8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659ef8"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b9c8"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bea8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bc38"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x1f346668"},"kids_end":{"t":"ptr","v":"0x1f34666c"},"kids_cap":{"t":"ptr","v":"0x1f34666c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659058"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fcdd0"},"kids_end":{"t":"ptr","v":"0x0e8fcddc"},"kids_cap":{"t":"ptr","v":"0x0e8fcddc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a780"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fce00"},"kids_end":{"t":"ptr","v":"0x0e8fce0c"},"kids_cap":{"t":"ptr","v":"0x0e8fce0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ce80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fce18"},"kids_end":{"t":"ptr","v":"0x0e8fce24"},"kids_cap":{"t":"ptr","v":"0x0e8fce24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c388"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8fce30"},"kids_end":{"t":"ptr","v":"0x0e8fce3c"},"kids_cap":{"t":"ptr","v":"0x0e8fce3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ac60"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fce48"},"kids_end":{"t":"ptr","v":"0x0e8fce54"},"kids_cap":{"t":"ptr","v":"0x0e8fce54"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659670"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b758"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660c70"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[269]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c118"},"tech_id":{"t":"i32","v":269},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049511c8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e890e30"},"kids_end":{"t":"ptr","v":"0x0e890e48"},"kids_cap":{"t":"ptr","v":"0x0e890e48"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a8b8"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":80000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b008"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x1f346858"},"kids_end":{"t":"ptr","v":"0x1f346860"},"kids_cap":{"t":"ptr","v":"0x1f346860"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cad8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x1f3469f8"},"kids_end":{"t":"ptr","v":"0x1f346a00"},"kids_cap":{"t":"ptr","v":"0x1f346a00"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660520"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x1f3468e8"},"kids_end":{"t":"ptr","v":"0x1f3468f0"},"kids_cap":{"t":"ptr","v":"0x1f3468f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a510"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x1f346808"},"kids_end":{"t":"ptr","v":"0x1f346810"},"kids_cap":{"t":"ptr","v":"0x1f346810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bd70"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b140"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6592c8"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c5f8"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c730"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659a18"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659400"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x1f346898"},"kids_end":{"t":"ptr","v":"0x1f34689c"},"kids_cap":{"t":"ptr","v":"0x1f34689c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65aed0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x1f346908"},"kids_end":{"t":"ptr","v":"0x1f34690c"},"kids_cap":{"t":"ptr","v":"0x1f34690c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x1f346998"},"kids_end":{"t":"ptr","v":"0x1f34699c"},"kids_cap":{"t":"ptr","v":"0x1f34699c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b3b0"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x1f346868"},"kids_end":{"t":"ptr","v":"0x1f34686c"},"kids_cap":{"t":"ptr","v":"0x1f34686c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c9a0"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x1f3468a8"},"kids_end":{"t":"ptr","v":"0x1f3468ac"},"kids_cap":{"t":"ptr","v":"0x1f3468ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c4c0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x1f346928"},"kids_end":{"t":"ptr","v":"0x1f34692c"},"kids_cap":{"t":"ptr","v":"0x1f34692c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c250"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x1f3468b8"},"kids_end":{"t":"ptr","v":"0x1f3468bc"},"kids_cap":{"t":"ptr","v":"0x1f3468bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c868"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x1f3468c8"},"kids_end":{"t":"ptr","v":"0x1f3468cc"},"kids_cap":{"t":"ptr","v":"0x1f3468cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659dc0"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x1f3469a8"},"kids_end":{"t":"ptr","v":"0x1f3469ac"},"kids_cap":{"t":"ptr","v":"0x1f3469ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a030"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x1f346888"},"kids_end":{"t":"ptr","v":"0x1f34688c"},"kids_cap":{"t":"ptr","v":"0x1f34688c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bb00"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x1f346938"},"kids_end":{"t":"ptr","v":"0x1f34693c"},"kids_cap":{"t":"ptr","v":"0x1f34693c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"turns":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}},"observed_techs":{"after":{"t":"struct","v":{"bytes":{"t":"i32","v":880},"vec_begin":{"t":"ptr","v":"0x1f345768"},"vec_end":{"t":"ptr","v":"0x1f345ad8"},"vec_cap":{"t":"ptr","v":"0x1f345ad8"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}} {"ts":284257802,"hook":"Game::TechTree::ProcessResearch","mode":"compare","call_id":2,"thread":500,"depth":0,"args":[{"t":"ptr","v":"0x0e93edd0","n":"tree"},{"t":"ptr","v":"0x0e9091b8","n":"owner"},{"t":"i32","v":2,"n":"species"},{"t":"u32","v":293,"n":"node_count"},{"t":"ptr","v":"0x0e922d80","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"},{"t":"i32","v":3,"n":"turn"},{"t":"i32","v":0,"n":"events_next_id_in"},{"t":"u32","v":0,"n":"events_turns_in"},{"t":"bool","v":false,"n":"events_turn_bucket_exists"},{"t":"u32","v":0,"n":"events_in_turn_bucket"},{"t":"u32","v":0,"n":"events_dedup_risk"}],"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":"0x0493a300"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x1f347758"},"kids_end":{"t":"ptr","v":"0x1f34775c"},"kids_cap":{"t":"ptr","v":"0x1f34775c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a300"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x1f347758"},"kids_end":{"t":"ptr","v":"0x1f34775c"},"kids_cap":{"t":"ptr","v":"0x1f34775c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e651648"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x1f3477d8"},"kids_end":{"t":"ptr","v":"0x1f3477dc"},"kids_cap":{"t":"ptr","v":"0x1f3477dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651648"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x1f3477d8"},"kids_end":{"t":"ptr","v":"0x1f3477dc"},"kids_cap":{"t":"ptr","v":"0x1f3477dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652140"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x1f3476e8"},"kids_end":{"t":"ptr","v":"0x1f3476ec"},"kids_cap":{"t":"ptr","v":"0x1f3476ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652140"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x1f3476e8"},"kids_end":{"t":"ptr","v":"0x1f3476ec"},"kids_cap":{"t":"ptr","v":"0x1f3476ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652890"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x1f3477e8"},"kids_end":{"t":"ptr","v":"0x1f3477f0"},"kids_cap":{"t":"ptr","v":"0x1f3477f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652890"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x1f3477e8"},"kids_end":{"t":"ptr","v":"0x1f3477f0"},"kids_cap":{"t":"ptr","v":"0x1f3477f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6512a0"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x1f3476c8"},"kids_end":{"t":"ptr","v":"0x1f3476d0"},"kids_cap":{"t":"ptr","v":"0x1f3476d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6512a0"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x1f3476c8"},"kids_end":{"t":"ptr","v":"0x1f3476d0"},"kids_cap":{"t":"ptr","v":"0x1f3476d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e651510"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x1f347698"},"kids_end":{"t":"ptr","v":"0x1f34769c"},"kids_cap":{"t":"ptr","v":"0x1f34769c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651510"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x1f347698"},"kids_end":{"t":"ptr","v":"0x1f34769c"},"kids_cap":{"t":"ptr","v":"0x1f34769c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e651ed0"},"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":"0x0e651ed0"},"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":"0x0e651b28"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x1f3476f8"},"kids_end":{"t":"ptr","v":"0x1f3476fc"},"kids_cap":{"t":"ptr","v":"0x1f3476fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651b28"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x1f3476f8"},"kids_end":{"t":"ptr","v":"0x1f3476fc"},"kids_cap":{"t":"ptr","v":"0x1f3476fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6529c8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x1f3477f8"},"kids_end":{"t":"ptr","v":"0x1f3477fc"},"kids_cap":{"t":"ptr","v":"0x1f3477fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6529c8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x1f3477f8"},"kids_end":{"t":"ptr","v":"0x1f3477fc"},"kids_cap":{"t":"ptr","v":"0x1f3477fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652278"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe390"},"kids_end":{"t":"ptr","v":"0x0e8fe39c"},"kids_cap":{"t":"ptr","v":"0x0e8fe39c"},"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":"0x0e652278"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe390"},"kids_end":{"t":"ptr","v":"0x0e8fe39c"},"kids_cap":{"t":"ptr","v":"0x0e8fe39c"},"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":"0x0e652d70"},"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":"0x0e652d70"},"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":"0x0e651780"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x1f347668"},"kids_end":{"t":"ptr","v":"0x1f347670"},"kids_cap":{"t":"ptr","v":"0x1f347670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651780"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x1f347668"},"kids_end":{"t":"ptr","v":"0x1f347670"},"kids_cap":{"t":"ptr","v":"0x1f347670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652b00"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe5a0"},"kids_end":{"t":"ptr","v":"0x0e8fe5b0"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652b00"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe5a0"},"kids_end":{"t":"ptr","v":"0x0e8fe5b0"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e652ea8"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x1f347608"},"kids_end":{"t":"ptr","v":"0x1f34760c"},"kids_cap":{"t":"ptr","v":"0x1f34760c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652ea8"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x1f347608"},"kids_end":{"t":"ptr","v":"0x1f34760c"},"kids_cap":{"t":"ptr","v":"0x1f34760c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04950e38"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x1f347628"},"kids_end":{"t":"ptr","v":"0x1f34762c"},"kids_cap":{"t":"ptr","v":"0x1f34762c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04950e38"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x1f347628"},"kids_end":{"t":"ptr","v":"0x1f34762c"},"kids_cap":{"t":"ptr","v":"0x1f34762c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e652008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe4b0"},"kids_end":{"t":"ptr","v":"0x0e8fe4bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe4b0"},"kids_end":{"t":"ptr","v":"0x0e8fe4bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e651030"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x1f3476d8"},"kids_end":{"t":"ptr","v":"0x1f3476dc"},"kids_cap":{"t":"ptr","v":"0x1f3476dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651030"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x1f3476d8"},"kids_end":{"t":"ptr","v":"0x1f3476dc"},"kids_cap":{"t":"ptr","v":"0x1f3476dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6518b8"},"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":"0x0e6518b8"},"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":"0x0e652758"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x1f347678"},"kids_end":{"t":"ptr","v":"0x1f34767c"},"kids_cap":{"t":"ptr","v":"0x1f34767c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652758"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x1f347678"},"kids_end":{"t":"ptr","v":"0x1f34767c"},"kids_cap":{"t":"ptr","v":"0x1f34767c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e651168"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x1f3476a8"},"kids_end":{"t":"ptr","v":"0x1f3476ac"},"kids_cap":{"t":"ptr","v":"0x1f3476ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651168"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x1f3476a8"},"kids_end":{"t":"ptr","v":"0x1f3476ac"},"kids_cap":{"t":"ptr","v":"0x1f3476ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6523b0"},"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":"0x0e6523b0"},"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":"0x0e656150"},"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":"0x0e656150"},"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":"0x0e655040"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe2d0"},"kids_end":{"t":"ptr","v":"0x0e8fe2dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe2dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655040"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe2d0"},"kids_end":{"t":"ptr","v":"0x0e8fe2dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe2dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65b620"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe2e8"},"kids_end":{"t":"ptr","v":"0x0e8fe2f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe2f8"},"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":"0x0e65b620"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe2e8"},"kids_end":{"t":"ptr","v":"0x0e8fe2f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe2f8"},"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":"0x0e659c88"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x1f347638"},"kids_end":{"t":"ptr","v":"0x1f34763c"},"kids_cap":{"t":"ptr","v":"0x1f34763c"},"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":"0x0e659c88"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x1f347638"},"kids_end":{"t":"ptr","v":"0x1f34763c"},"kids_cap":{"t":"ptr","v":"0x1f34763c"},"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":"0x0e65a3d8"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x1f347648"},"kids_end":{"t":"ptr","v":"0x1f34764c"},"kids_cap":{"t":"ptr","v":"0x1f34764c"},"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":"0x0e65a3d8"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x1f347648"},"kids_end":{"t":"ptr","v":"0x1f34764c"},"kids_cap":{"t":"ptr","v":"0x1f34764c"},"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":"0x0e6598e0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x1f347868"},"kids_end":{"t":"ptr","v":"0x1f34786c"},"kids_cap":{"t":"ptr","v":"0x1f34786c"},"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":"0x0e6598e0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x1f347868"},"kids_end":{"t":"ptr","v":"0x1f34786c"},"kids_cap":{"t":"ptr","v":"0x1f34786c"},"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":"0x0e65a648"},"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":"0x0e65a648"},"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":"0x0e65a2a0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x1f3478e8"},"kids_end":{"t":"ptr","v":"0x1f3478ec"},"kids_cap":{"t":"ptr","v":"0x1f3478ec"},"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":"0x0e65a2a0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x1f3478e8"},"kids_end":{"t":"ptr","v":"0x1f3478ec"},"kids_cap":{"t":"ptr","v":"0x1f3478ec"},"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":"0x0e656c48"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x1f3479d8"},"kids_end":{"t":"ptr","v":"0x1f3479e0"},"kids_cap":{"t":"ptr","v":"0x1f3479e0"},"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":"0x0e656c48"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x1f3479d8"},"kids_end":{"t":"ptr","v":"0x1f3479e0"},"kids_cap":{"t":"ptr","v":"0x1f3479e0"},"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":"0x0e655790"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe300"},"kids_end":{"t":"ptr","v":"0x0e8fe30c"},"kids_cap":{"t":"ptr","v":"0x0e8fe30c"},"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":"0x0e655790"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe300"},"kids_end":{"t":"ptr","v":"0x0e8fe30c"},"kids_cap":{"t":"ptr","v":"0x0e8fe30c"},"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":"0x0e655658"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x1f347928"},"kids_end":{"t":"ptr","v":"0x1f347930"},"kids_cap":{"t":"ptr","v":"0x1f347930"},"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":"0x0e655658"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x1f347928"},"kids_end":{"t":"ptr","v":"0x1f347930"},"kids_cap":{"t":"ptr","v":"0x1f347930"},"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":"0x0e6552b0"},"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":"0x0e6552b0"},"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":"0x0e656eb8"},"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":"0x0e656eb8"},"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":"0x0e655ee0"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fe3d8"},"kids_end":{"t":"ptr","v":"0x0e8fe3e4"},"kids_cap":{"t":"ptr","v":"0x0e8fe3e4"},"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":"0x0e655ee0"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fe3d8"},"kids_end":{"t":"ptr","v":"0x0e8fe3e4"},"kids_cap":{"t":"ptr","v":"0x0e8fe3e4"},"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":"0x0e656b10"},"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":"0x0e656b10"},"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":"0x0e6553e8"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe3a8"},"kids_end":{"t":"ptr","v":"0x0e8fe3b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe3b4"},"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":"0x0e6553e8"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe3a8"},"kids_end":{"t":"ptr","v":"0x0e8fe3b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe3b4"},"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":"0x0e6519f0"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe4e0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e6519f0"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe4e0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e655178"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x1f3478f8"},"kids_end":{"t":"ptr","v":"0x1f3478fc"},"kids_cap":{"t":"ptr","v":"0x1f3478fc"},"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":"0x0e655178"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x1f3478f8"},"kids_end":{"t":"ptr","v":"0x1f3478fc"},"kids_cap":{"t":"ptr","v":"0x1f3478fc"},"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":"0x0e656018"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x1f347948"},"kids_end":{"t":"ptr","v":"0x1f34794c"},"kids_cap":{"t":"ptr","v":"0x1f34794c"},"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":"0x0e656018"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x1f347948"},"kids_end":{"t":"ptr","v":"0x1f34794c"},"kids_cap":{"t":"ptr","v":"0x1f34794c"},"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":"0x0e655c70"},"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":"0x0e655c70"},"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":"0x0e656630"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe408"},"kids_end":{"t":"ptr","v":"0x0e8fe414"},"kids_cap":{"t":"ptr","v":"0x0e8fe414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656630"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe408"},"kids_end":{"t":"ptr","v":"0x0e8fe414"},"kids_cap":{"t":"ptr","v":"0x0e8fe414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6564f8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x1f347978"},"kids_end":{"t":"ptr","v":"0x1f34797c"},"kids_cap":{"t":"ptr","v":"0x1f34797c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6564f8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x1f347978"},"kids_end":{"t":"ptr","v":"0x1f34797c"},"kids_cap":{"t":"ptr","v":"0x1f34797c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e655520"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x1f3479e8"},"kids_end":{"t":"ptr","v":"0x1f3479ec"},"kids_cap":{"t":"ptr","v":"0x1f3479ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655520"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x1f3479e8"},"kids_end":{"t":"ptr","v":"0x1f3479ec"},"kids_cap":{"t":"ptr","v":"0x1f3479ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e655b38"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x1f347938"},"kids_end":{"t":"ptr","v":"0x1f34793c"},"kids_cap":{"t":"ptr","v":"0x1f34793c"},"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":"0x0e655b38"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x1f347938"},"kids_end":{"t":"ptr","v":"0x1f34793c"},"kids_cap":{"t":"ptr","v":"0x1f34793c"},"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":"0x04950f68"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x1f347908"},"kids_end":{"t":"ptr","v":"0x1f34790c"},"kids_cap":{"t":"ptr","v":"0x1f34790c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04950f68"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x1f347908"},"kids_end":{"t":"ptr","v":"0x1f34790c"},"kids_cap":{"t":"ptr","v":"0x1f34790c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e656288"},"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":"0x0e656288"},"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":"0x0e6563c0"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x1f347958"},"kids_end":{"t":"ptr","v":"0x1f34795c"},"kids_cap":{"t":"ptr","v":"0x1f34795c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6563c0"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x1f347958"},"kids_end":{"t":"ptr","v":"0x1f34795c"},"kids_cap":{"t":"ptr","v":"0x1f34795c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6568a0"},"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":"0x0e6568a0"},"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":"0x0e655a00"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe540"},"kids_end":{"t":"ptr","v":"0x0e8fe54c"},"kids_cap":{"t":"ptr","v":"0x0e8fe54c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655a00"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe540"},"kids_end":{"t":"ptr","v":"0x0e8fe54c"},"kids_cap":{"t":"ptr","v":"0x0e8fe54c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65a168"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x1f3479a8"},"kids_end":{"t":"ptr","v":"0x1f3479ac"},"kids_cap":{"t":"ptr","v":"0x1f3479ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65a168"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x1f3479a8"},"kids_end":{"t":"ptr","v":"0x1f3479ac"},"kids_cap":{"t":"ptr","v":"0x1f3479ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65ab28"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x1f3479f8"},"kids_end":{"t":"ptr","v":"0x1f3479fc"},"kids_cap":{"t":"ptr","v":"0x1f3479fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65ab28"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x1f3479f8"},"kids_end":{"t":"ptr","v":"0x1f3479fc"},"kids_cap":{"t":"ptr","v":"0x1f3479fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65cc10"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x1f347988"},"kids_end":{"t":"ptr","v":"0x1f34798c"},"kids_cap":{"t":"ptr","v":"0x1f34798c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65cc10"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x1f347988"},"kids_end":{"t":"ptr","v":"0x1f34798c"},"kids_cap":{"t":"ptr","v":"0x1f34798c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65bfe0"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x1f347888"},"kids_end":{"t":"ptr","v":"0x1f34788c"},"kids_cap":{"t":"ptr","v":"0x1f34788c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65bfe0"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x1f347888"},"kids_end":{"t":"ptr","v":"0x1f34788c"},"kids_cap":{"t":"ptr","v":"0x1f34788c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65b4e8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x1f347968"},"kids_end":{"t":"ptr","v":"0x1f34796c"},"kids_cap":{"t":"ptr","v":"0x1f34796c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65b4e8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x1f347968"},"kids_end":{"t":"ptr","v":"0x1f34796c"},"kids_cap":{"t":"ptr","v":"0x1f34796c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65b890"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x1f347998"},"kids_end":{"t":"ptr","v":"0x1f34799c"},"kids_cap":{"t":"ptr","v":"0x1f34799c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65b890"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x1f347998"},"kids_end":{"t":"ptr","v":"0x1f34799c"},"kids_cap":{"t":"ptr","v":"0x1f34799c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e656768"},"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":"0x0e656768"},"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":"0x0e657c78"},"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":"0x0e657c78"},"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":"0x0e658ec0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x1f347918"},"kids_end":{"t":"ptr","v":"0x1f34791c"},"kids_cap":{"t":"ptr","v":"0x1f34791c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658ec0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x1f347918"},"kids_end":{"t":"ptr","v":"0x1f34791c"},"kids_cap":{"t":"ptr","v":"0x1f34791c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657048"},"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":"0x0e657048"},"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":"0x0e6589e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe420"},"kids_end":{"t":"ptr","v":"0x0e8fe42c"},"kids_cap":{"t":"ptr","v":"0x0e8fe42c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6589e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe420"},"kids_end":{"t":"ptr","v":"0x0e8fe42c"},"kids_cap":{"t":"ptr","v":"0x0e8fe42c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6578d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fe360"},"kids_end":{"t":"ptr","v":"0x0e8fe36c"},"kids_cap":{"t":"ptr","v":"0x0e8fe36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6578d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fe360"},"kids_end":{"t":"ptr","v":"0x0e8fe36c"},"kids_cap":{"t":"ptr","v":"0x0e8fe36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657ee8"},"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":"0x0e657ee8"},"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":"0x0e658158"},"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":"0x0e658158"},"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":"0x04951098"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x1f347838"},"kids_end":{"t":"ptr","v":"0x1f34783c"},"kids_cap":{"t":"ptr","v":"0x1f34783c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04951098"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x1f347838"},"kids_end":{"t":"ptr","v":"0x1f34783c"},"kids_cap":{"t":"ptr","v":"0x1f34783c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e658638"},"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":"0x0e658638"},"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":"0x0e658770"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x1f347808"},"kids_end":{"t":"ptr","v":"0x1f347810"},"kids_cap":{"t":"ptr","v":"0x1f347810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658770"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x1f347808"},"kids_end":{"t":"ptr","v":"0x1f347810"},"kids_cap":{"t":"ptr","v":"0x1f347810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658020"},"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":"0x0e658020"},"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":"0x0e657db0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x1f347898"},"kids_end":{"t":"ptr","v":"0x1f3478a0"},"kids_cap":{"t":"ptr","v":"0x1f3478a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657db0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x1f347898"},"kids_end":{"t":"ptr","v":"0x1f3478a0"},"kids_cap":{"t":"ptr","v":"0x1f3478a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04821d00"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e890e10"},"kids_end":{"t":"ptr","v":"0x0e890e24"},"kids_cap":{"t":"ptr","v":"0x0e890e24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821d00"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e890e10"},"kids_end":{"t":"ptr","v":"0x0e890e24"},"kids_cap":{"t":"ptr","v":"0x0e890e24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481f950"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe4c8"},"kids_end":{"t":"ptr","v":"0x0e8fe4d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0481f950"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe4c8"},"kids_end":{"t":"ptr","v":"0x0e8fe4d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04821478"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e9885a0"},"kids_end":{"t":"ptr","v":"0x0e9885c4"},"kids_cap":{"t":"ptr","v":"0x0e9885c4"},"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":"0x04821478"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e9885a0"},"kids_end":{"t":"ptr","v":"0x0e9885c4"},"kids_cap":{"t":"ptr","v":"0x0e9885c4"},"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":"0x04822318"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x1f3479b8"},"kids_end":{"t":"ptr","v":"0x1f3479bc"},"kids_cap":{"t":"ptr","v":"0x1f3479bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04822318"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x1f3479b8"},"kids_end":{"t":"ptr","v":"0x1f3479bc"},"kids_cap":{"t":"ptr","v":"0x1f3479bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04820f98"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x1f347878"},"kids_end":{"t":"ptr","v":"0x1f34787c"},"kids_cap":{"t":"ptr","v":"0x1f34787c"},"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":"0x04820f98"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x1f347878"},"kids_end":{"t":"ptr","v":"0x1f34787c"},"kids_cap":{"t":"ptr","v":"0x1f34787c"},"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":"0x0e651d98"},"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":"0x0e651d98"},"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":"0x048210d0"},"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":"0x048210d0"},"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":"0x04821340"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe468"},"kids_end":{"t":"ptr","v":"0x0e8fe474"},"kids_cap":{"t":"ptr","v":"0x0e8fe474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821340"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe468"},"kids_end":{"t":"ptr","v":"0x0e8fe474"},"kids_cap":{"t":"ptr","v":"0x0e8fe474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481e978"},"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":"0x0481e978"},"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":"0x0481e840"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x1f3479c8"},"kids_end":{"t":"ptr","v":"0x1f3479cc"},"kids_cap":{"t":"ptr","v":"0x1f3479cc"},"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":"0x0481e840"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x1f3479c8"},"kids_end":{"t":"ptr","v":"0x1f3479cc"},"kids_cap":{"t":"ptr","v":"0x1f3479cc"},"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":"0x048216e8"},"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":"0x048216e8"},"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":"0x04821820"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x1f3478a8"},"kids_end":{"t":"ptr","v":"0x1f3478ac"},"kids_cap":{"t":"ptr","v":"0x1f3478ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821820"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x1f3478a8"},"kids_end":{"t":"ptr","v":"0x1f3478ac"},"kids_cap":{"t":"ptr","v":"0x1f3478ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04821958"},"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":"0x04821958"},"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":"0x0493a430"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x1f347818"},"kids_end":{"t":"ptr","v":"0x1f34781c"},"kids_cap":{"t":"ptr","v":"0x1f34781c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a430"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x1f347818"},"kids_end":{"t":"ptr","v":"0x1f34781c"},"kids_cap":{"t":"ptr","v":"0x1f34781c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x048215b0"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x1f3478b8"},"kids_end":{"t":"ptr","v":"0x1f3478bc"},"kids_cap":{"t":"ptr","v":"0x1f3478bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048215b0"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x1f3478b8"},"kids_end":{"t":"ptr","v":"0x1f3478bc"},"kids_cap":{"t":"ptr","v":"0x1f3478bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048220a8"},"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":"0x048220a8"},"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":"0x0480fde8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x1f347828"},"kids_end":{"t":"ptr","v":"0x1f34782c"},"kids_cap":{"t":"ptr","v":"0x1f34782c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0480fde8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x1f347828"},"kids_end":{"t":"ptr","v":"0x1f34782c"},"kids_cap":{"t":"ptr","v":"0x1f34782c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493c4d8"},"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":"0x0493c4d8"},"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":"0x0482de38"},"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":"0x0482de38"},"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":"0x0482d0d0"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x1f3478c8"},"kids_end":{"t":"ptr","v":"0x1f3478d0"},"kids_cap":{"t":"ptr","v":"0x1f3478d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d0d0"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x1f3478c8"},"kids_end":{"t":"ptr","v":"0x1f3478d0"},"kids_cap":{"t":"ptr","v":"0x1f3478d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493bff8"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x1f347848"},"kids_end":{"t":"ptr","v":"0x1f347850"},"kids_cap":{"t":"ptr","v":"0x1f347850"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bff8"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x1f347848"},"kids_end":{"t":"ptr","v":"0x1f347850"},"kids_cap":{"t":"ptr","v":"0x1f347850"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493b770"},"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":"0x0493b770"},"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":"0x0482e318"},"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":"0x0482e318"},"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":"0x0482e588"},"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":"0x0482e588"},"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":"0x0493b638"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e890e50"},"kids_end":{"t":"ptr","v":"0x0e890e64"},"kids_cap":{"t":"ptr","v":"0x0e890e64"},"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":"0x0493b638"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e890e50"},"kids_end":{"t":"ptr","v":"0x0e890e64"},"kids_cap":{"t":"ptr","v":"0x0e890e64"},"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":"0x0e657798"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe438"},"kids_end":{"t":"ptr","v":"0x0e8fe444"},"kids_cap":{"t":"ptr","v":"0x0e8fe444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657798"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe438"},"kids_end":{"t":"ptr","v":"0x0e8fe444"},"kids_cap":{"t":"ptr","v":"0x0e8fe444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482c980"},"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":"0x0482c980"},"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":"0x0482dd00"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x1f347858"},"kids_end":{"t":"ptr","v":"0x1f34785c"},"kids_cap":{"t":"ptr","v":"0x1f34785c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482dd00"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x1f347858"},"kids_end":{"t":"ptr","v":"0x1f34785c"},"kids_cap":{"t":"ptr","v":"0x1f34785c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d958"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x1f3478d8"},"kids_end":{"t":"ptr","v":"0x1f3478dc"},"kids_cap":{"t":"ptr","v":"0x1f3478dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d958"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x1f3478d8"},"kids_end":{"t":"ptr","v":"0x1f3478dc"},"kids_cap":{"t":"ptr","v":"0x1f3478dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493c3a0"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e930e18"},"kids_end":{"t":"ptr","v":"0x0e930e1c"},"kids_cap":{"t":"ptr","v":"0x0e930e1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c3a0"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e930e18"},"kids_end":{"t":"ptr","v":"0x0e930e1c"},"kids_cap":{"t":"ptr","v":"0x0e930e1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658c50"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e930e48"},"kids_end":{"t":"ptr","v":"0x0e930e4c"},"kids_cap":{"t":"ptr","v":"0x0e930e4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658c50"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e930e48"},"kids_end":{"t":"ptr","v":"0x0e930e4c"},"kids_cap":{"t":"ptr","v":"0x0e930e4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482cf98"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e930e68"},"kids_end":{"t":"ptr","v":"0x0e930e70"},"kids_cap":{"t":"ptr","v":"0x0e930e70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cf98"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e930e68"},"kids_end":{"t":"ptr","v":"0x0e930e70"},"kids_cap":{"t":"ptr","v":"0x0e930e70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x049517b8"},"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":"0x049517b8"},"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":"0x0482d208"},"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":"0x0482d208"},"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":"0x0482da90"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe450"},"kids_end":{"t":"ptr","v":"0x0e8fe45c"},"kids_cap":{"t":"ptr","v":"0x0e8fe45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482da90"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe450"},"kids_end":{"t":"ptr","v":"0x0e8fe45c"},"kids_cap":{"t":"ptr","v":"0x0e8fe45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04951688"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e930e98"},"kids_end":{"t":"ptr","v":"0x0e930ea0"},"kids_cap":{"t":"ptr","v":"0x0e930ea0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951688"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e930e98"},"kids_end":{"t":"ptr","v":"0x0e930ea0"},"kids_cap":{"t":"ptr","v":"0x0e930ea0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493b8a8"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e930e38"},"kids_end":{"t":"ptr","v":"0x0e930e40"},"kids_cap":{"t":"ptr","v":"0x0e930e40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b8a8"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e930e38"},"kids_end":{"t":"ptr","v":"0x0e930e40"},"kids_cap":{"t":"ptr","v":"0x0e930e40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482cd28"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e930e28"},"kids_end":{"t":"ptr","v":"0x0e930e2c"},"kids_cap":{"t":"ptr","v":"0x0e930e2c"},"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":"0x0482cd28"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e930e28"},"kids_end":{"t":"ptr","v":"0x0e930e2c"},"kids_cap":{"t":"ptr","v":"0x0e930e2c"},"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":"0x0482dbc8"},"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":"0x0482dbc8"},"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":"0x0493c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe480"},"kids_end":{"t":"ptr","v":"0x0e8fe48c"},"kids_cap":{"t":"ptr","v":"0x0e8fe48c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe480"},"kids_end":{"t":"ptr","v":"0x0e8fe48c"},"kids_cap":{"t":"ptr","v":"0x0e8fe48c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d478"},"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":"0x0482d478"},"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":"0x0482d340"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe498"},"kids_end":{"t":"ptr","v":"0x0e8fe4a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4a4"},"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":"0x0482d340"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe498"},"kids_end":{"t":"ptr","v":"0x0e8fe4a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4a4"},"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":"0x0493bb18"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe858"},"kids_end":{"t":"ptr","v":"0x0e8fe868"},"kids_cap":{"t":"ptr","v":"0x0e8fe868"},"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":"0x0493bb18"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe858"},"kids_end":{"t":"ptr","v":"0x0e8fe868"},"kids_cap":{"t":"ptr","v":"0x0e8fe868"},"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":"0x0493c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e930e58"},"kids_end":{"t":"ptr","v":"0x0e930e60"},"kids_cap":{"t":"ptr","v":"0x0e930e60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e930e58"},"kids_end":{"t":"ptr","v":"0x0e930e60"},"kids_cap":{"t":"ptr","v":"0x0e930e60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657a08"},"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":"0x0e657a08"},"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":"0x0493bd88"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e930d78"},"kids_end":{"t":"ptr","v":"0x0e930d7c"},"kids_cap":{"t":"ptr","v":"0x0e930d7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bd88"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e930d78"},"kids_end":{"t":"ptr","v":"0x0e930d7c"},"kids_cap":{"t":"ptr","v":"0x0e930d7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04951558"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe690"},"kids_end":{"t":"ptr","v":"0x0e8fe69c"},"kids_cap":{"t":"ptr","v":"0x0e8fe69c"},"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":"0x04951558"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe690"},"kids_end":{"t":"ptr","v":"0x0e8fe69c"},"kids_cap":{"t":"ptr","v":"0x0e8fe69c"},"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":"0x0e5e0950"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e930cd8"},"kids_end":{"t":"ptr","v":"0x0e930cdc"},"kids_cap":{"t":"ptr","v":"0x0e930cdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e5e0950"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e930cd8"},"kids_end":{"t":"ptr","v":"0x0e930cdc"},"kids_cap":{"t":"ptr","v":"0x0e930cdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493bec0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e930cc8"},"kids_end":{"t":"ptr","v":"0x0e930ccc"},"kids_cap":{"t":"ptr","v":"0x0e930ccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bec0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e930cc8"},"kids_end":{"t":"ptr","v":"0x0e930ccc"},"kids_cap":{"t":"ptr","v":"0x0e930ccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493bc50"},"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":"0x0493bc50"},"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":"0x0493b9e0"},"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":"0x0493b9e0"},"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":"0x0482c848"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e930d68"},"kids_end":{"t":"ptr","v":"0x0e930d6c"},"kids_cap":{"t":"ptr","v":"0x0e930d6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482c848"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e930d68"},"kids_end":{"t":"ptr","v":"0x0e930d6c"},"kids_cap":{"t":"ptr","v":"0x0e930d6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04951428"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e930cf8"},"kids_end":{"t":"ptr","v":"0x0e930cfc"},"kids_cap":{"t":"ptr","v":"0x0e930cfc"},"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":"0x04951428"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e930cf8"},"kids_end":{"t":"ptr","v":"0x0e930cfc"},"kids_cap":{"t":"ptr","v":"0x0e930cfc"},"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":"0x0482ce60"},"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":"0x0482ce60"},"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":"0x049512f8"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe5e8"},"kids_end":{"t":"ptr","v":"0x0e8fe5f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5f4"},"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":"0x049512f8"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe5e8"},"kids_end":{"t":"ptr","v":"0x0e8fe5f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5f4"},"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":"0x04939f70"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e930d28"},"kids_end":{"t":"ptr","v":"0x0e930d2c"},"kids_cap":{"t":"ptr","v":"0x0e930d2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04939f70"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e930d28"},"kids_end":{"t":"ptr","v":"0x0e930d2c"},"kids_cap":{"t":"ptr","v":"0x0e930d2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e656d80"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e930ce8"},"kids_end":{"t":"ptr","v":"0x0e930cf0"},"kids_cap":{"t":"ptr","v":"0x0e930cf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656d80"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e930ce8"},"kids_end":{"t":"ptr","v":"0x0e930cf0"},"kids_cap":{"t":"ptr","v":"0x0e930cf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6558c8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fea98"},"kids_end":{"t":"ptr","v":"0x0e8feaa4"},"kids_cap":{"t":"ptr","v":"0x0e8feaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6558c8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fea98"},"kids_end":{"t":"ptr","v":"0x0e8feaa4"},"kids_cap":{"t":"ptr","v":"0x0e8feaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658b18"},"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":"0x0e658b18"},"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":"0x0e657528"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e930dc8"},"kids_end":{"t":"ptr","v":"0x0e930dcc"},"kids_cap":{"t":"ptr","v":"0x0e930dcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657528"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e930dc8"},"kids_end":{"t":"ptr","v":"0x0e930dcc"},"kids_cap":{"t":"ptr","v":"0x0e930dcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658290"},"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":"0x0e658290"},"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":"0x0e6569d8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e930dd8"},"kids_end":{"t":"ptr","v":"0x0e930de0"},"kids_cap":{"t":"ptr","v":"0x0e930de0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6569d8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e930dd8"},"kids_end":{"t":"ptr","v":"0x0e930de0"},"kids_cap":{"t":"ptr","v":"0x0e930de0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658d88"},"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":"0x0e658d88"},"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":"0x0e6572b8"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e930d08"},"kids_end":{"t":"ptr","v":"0x0e930d0c"},"kids_cap":{"t":"ptr","v":"0x0e930d0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6572b8"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e930d08"},"kids_end":{"t":"ptr","v":"0x0e930d0c"},"kids_cap":{"t":"ptr","v":"0x0e930d0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657b40"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e930e78"},"kids_end":{"t":"ptr","v":"0x0e930e80"},"kids_cap":{"t":"ptr","v":"0x0e930e80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657b40"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e930e78"},"kids_end":{"t":"ptr","v":"0x0e930e80"},"kids_cap":{"t":"ptr","v":"0x0e930e80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6573f0"},"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":"0x0e6573f0"},"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":"0x0e655da8"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e930d18"},"kids_end":{"t":"ptr","v":"0x0e930d20"},"kids_cap":{"t":"ptr","v":"0x0e930d20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655da8"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e930d18"},"kids_end":{"t":"ptr","v":"0x0e930d20"},"kids_cap":{"t":"ptr","v":"0x0e930d20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e658500"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e930da8"},"kids_end":{"t":"ptr","v":"0x0e930db0"},"kids_cap":{"t":"ptr","v":"0x0e930db0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658500"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e930da8"},"kids_end":{"t":"ptr","v":"0x0e930db0"},"kids_cap":{"t":"ptr","v":"0x0e930db0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e6583c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e930e88"},"kids_end":{"t":"ptr","v":"0x0e930e90"},"kids_cap":{"t":"ptr","v":"0x0e930e90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6583c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e930e88"},"kids_end":{"t":"ptr","v":"0x0e930e90"},"kids_cap":{"t":"ptr","v":"0x0e930e90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e657180"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e930d88"},"kids_end":{"t":"ptr","v":"0x0e930d8c"},"kids_cap":{"t":"ptr","v":"0x0e930d8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657180"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e930d88"},"kids_end":{"t":"ptr","v":"0x0e930d8c"},"kids_cap":{"t":"ptr","v":"0x0e930d8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0480ff18"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e930d48"},"kids_end":{"t":"ptr","v":"0x0e930d4c"},"kids_cap":{"t":"ptr","v":"0x0e930d4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0480ff18"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e930d48"},"kids_end":{"t":"ptr","v":"0x0e930d4c"},"kids_cap":{"t":"ptr","v":"0x0e930d4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a0a0"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e930d98"},"kids_end":{"t":"ptr","v":"0x0e930da0"},"kids_cap":{"t":"ptr","v":"0x0e930da0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a0a0"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e930d98"},"kids_end":{"t":"ptr","v":"0x0e930da0"},"kids_cap":{"t":"ptr","v":"0x0e930da0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0481f338"},"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":"0x0481f338"},"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":"0x0482f960"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e930ea8"},"kids_end":{"t":"ptr","v":"0x0e930eb0"},"kids_cap":{"t":"ptr","v":"0x0e930eb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f960"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e930ea8"},"kids_end":{"t":"ptr","v":"0x0e930eb0"},"kids_cap":{"t":"ptr","v":"0x0e930eb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831968"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e930db8"},"kids_end":{"t":"ptr","v":"0x0e930dbc"},"kids_cap":{"t":"ptr","v":"0x0e930dbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831968"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e930db8"},"kids_end":{"t":"ptr","v":"0x0e930dbc"},"kids_cap":{"t":"ptr","v":"0x0e930dbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482f210"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e930de8"},"kids_end":{"t":"ptr","v":"0x0e930dec"},"kids_cap":{"t":"ptr","v":"0x0e930dec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f210"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e930de8"},"kids_end":{"t":"ptr","v":"0x0e930dec"},"kids_cap":{"t":"ptr","v":"0x0e930dec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831d10"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e930d58"},"kids_end":{"t":"ptr","v":"0x0e930d60"},"kids_cap":{"t":"ptr","v":"0x0e930d60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831d10"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e930d58"},"kids_end":{"t":"ptr","v":"0x0e930d60"},"kids_cap":{"t":"ptr","v":"0x0e930d60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830e70"},"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":"0x04830e70"},"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":"0x0481ed20"},"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":"0x0481ed20"},"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":"0x04820448"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e930d38"},"kids_end":{"t":"ptr","v":"0x0e930d3c"},"kids_cap":{"t":"ptr","v":"0x0e930d3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820448"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e930d38"},"kids_end":{"t":"ptr","v":"0x0e930d3c"},"kids_cap":{"t":"ptr","v":"0x0e930d3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831488"},"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":"0x04831488"},"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":"0x0481fbc0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e930df8"},"kids_end":{"t":"ptr","v":"0x0e930dfc"},"kids_cap":{"t":"ptr","v":"0x0e930dfc"},"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":"0x0481fbc0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e930df8"},"kids_end":{"t":"ptr","v":"0x0e930dfc"},"kids_cap":{"t":"ptr","v":"0x0e930dfc"},"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":"0x0482ee68"},"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":"0x0482ee68"},"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":"0x0481f200"},"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":"0x0481f200"},"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":"0x0482f828"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e930cb8"},"kids_end":{"t":"ptr","v":"0x0e930cc0"},"kids_cap":{"t":"ptr","v":"0x0e930cc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f828"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e930cb8"},"kids_end":{"t":"ptr","v":"0x0e930cc0"},"kids_cap":{"t":"ptr","v":"0x0e930cc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830990"},"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":"0x04830990"},"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":"0x04830c00"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e930e08"},"kids_end":{"t":"ptr","v":"0x0e930e0c"},"kids_cap":{"t":"ptr","v":"0x0e930e0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830c00"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e930e08"},"kids_end":{"t":"ptr","v":"0x0e930e0c"},"kids_cap":{"t":"ptr","v":"0x0e930e0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482e1e0"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e931798"},"kids_end":{"t":"ptr","v":"0x0e93179c"},"kids_cap":{"t":"ptr","v":"0x0e93179c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e1e0"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e931798"},"kids_end":{"t":"ptr","v":"0x0e93179c"},"kids_cap":{"t":"ptr","v":"0x0e93179c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048321f0"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe978"},"kids_end":{"t":"ptr","v":"0x0e8fe984"},"kids_cap":{"t":"ptr","v":"0x0e8fe984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048321f0"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe978"},"kids_end":{"t":"ptr","v":"0x0e8fe984"},"kids_cap":{"t":"ptr","v":"0x0e8fe984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04820310"},"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":"0x04820310"},"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":"0x0482e850"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe948"},"kids_end":{"t":"ptr","v":"0x0e8fe958"},"kids_cap":{"t":"ptr","v":"0x0e8fe958"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e850"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe948"},"kids_end":{"t":"ptr","v":"0x0e8fe958"},"kids_cap":{"t":"ptr","v":"0x0e8fe958"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831f80"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9316e8"},"kids_end":{"t":"ptr","v":"0x0e9316f0"},"kids_cap":{"t":"ptr","v":"0x0e9316f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831f80"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9316e8"},"kids_end":{"t":"ptr","v":"0x0e9316f0"},"kids_cap":{"t":"ptr","v":"0x0e9316f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482f5b8"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e931768"},"kids_end":{"t":"ptr","v":"0x0e931770"},"kids_cap":{"t":"ptr","v":"0x0e931770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f5b8"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e931768"},"kids_end":{"t":"ptr","v":"0x0e931770"},"kids_cap":{"t":"ptr","v":"0x0e931770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048315c0"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e931778"},"kids_end":{"t":"ptr","v":"0x0e93177c"},"kids_cap":{"t":"ptr","v":"0x0e93177c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048315c0"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e931778"},"kids_end":{"t":"ptr","v":"0x0e93177c"},"kids_cap":{"t":"ptr","v":"0x0e93177c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830ac8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9316f8"},"kids_end":{"t":"ptr","v":"0x0e931700"},"kids_cap":{"t":"ptr","v":"0x0e931700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830ac8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9316f8"},"kids_end":{"t":"ptr","v":"0x0e931700"},"kids_cap":{"t":"ptr","v":"0x0e931700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830fa8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9318a8"},"kids_end":{"t":"ptr","v":"0x0e9318b0"},"kids_cap":{"t":"ptr","v":"0x0e9318b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830fa8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9318a8"},"kids_end":{"t":"ptr","v":"0x0e9318b0"},"kids_cap":{"t":"ptr","v":"0x0e9318b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048316f8"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e931828"},"kids_end":{"t":"ptr","v":"0x0e931830"},"kids_cap":{"t":"ptr","v":"0x0e931830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048316f8"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e931828"},"kids_end":{"t":"ptr","v":"0x0e931830"},"kids_cap":{"t":"ptr","v":"0x0e931830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482f6f0"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e931708"},"kids_end":{"t":"ptr","v":"0x0e93170c"},"kids_cap":{"t":"ptr","v":"0x0e93170c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f6f0"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e931708"},"kids_end":{"t":"ptr","v":"0x0e93170c"},"kids_cap":{"t":"ptr","v":"0x0e93170c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d820"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e931858"},"kids_end":{"t":"ptr","v":"0x0e93185c"},"kids_cap":{"t":"ptr","v":"0x0e93185c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d820"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e931858"},"kids_end":{"t":"ptr","v":"0x0e93185c"},"kids_cap":{"t":"ptr","v":"0x0e93185c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482e0a8"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9316b8"},"kids_end":{"t":"ptr","v":"0x0e9316c0"},"kids_cap":{"t":"ptr","v":"0x0e9316c0"},"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":"0x0482e0a8"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9316b8"},"kids_end":{"t":"ptr","v":"0x0e9316c0"},"kids_cap":{"t":"ptr","v":"0x0e9316c0"},"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":"0x04830d38"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e931968"},"kids_end":{"t":"ptr","v":"0x0e93196c"},"kids_cap":{"t":"ptr","v":"0x0e93196c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830d38"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e931968"},"kids_end":{"t":"ptr","v":"0x0e93196c"},"kids_cap":{"t":"ptr","v":"0x0e93196c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048200a0"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8feb28"},"kids_end":{"t":"ptr","v":"0x0e8feb34"},"kids_cap":{"t":"ptr","v":"0x0e8feb34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x048200a0"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8feb28"},"kids_end":{"t":"ptr","v":"0x0e8feb34"},"kids_cap":{"t":"ptr","v":"0x0e8feb34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0482ff78"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e931a38"},"kids_end":{"t":"ptr","v":"0x0e931a3c"},"kids_cap":{"t":"ptr","v":"0x0e931a3c"},"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":"0x0482ff78"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e931a38"},"kids_end":{"t":"ptr","v":"0x0e931a3c"},"kids_cap":{"t":"ptr","v":"0x0e931a3c"},"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":"0x0481eab0"},"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":"0x0481eab0"},"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":"0x048301e8"},"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":"0x048301e8"},"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":"0x0481ef90"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e890f70"},"kids_end":{"t":"ptr","v":"0x0e890f84"},"kids_cap":{"t":"ptr","v":"0x0e890f84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ef90"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e890f70"},"kids_end":{"t":"ptr","v":"0x0e890f84"},"kids_cap":{"t":"ptr","v":"0x0e890f84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482cbf0"},"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":"0x0482cbf0"},"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":"0x0482f348"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e931978"},"kids_end":{"t":"ptr","v":"0x0e93197c"},"kids_cap":{"t":"ptr","v":"0x0e93197c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f348"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e931978"},"kids_end":{"t":"ptr","v":"0x0e93197c"},"kids_cap":{"t":"ptr","v":"0x0e93197c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048326d0"},"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":"0x048326d0"},"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":"0x048300b0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9318b8"},"kids_end":{"t":"ptr","v":"0x0e9318bc"},"kids_cap":{"t":"ptr","v":"0x0e9318bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048300b0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9318b8"},"kids_end":{"t":"ptr","v":"0x0e9318bc"},"kids_cap":{"t":"ptr","v":"0x0e9318bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831e48"},"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":"0x04831e48"},"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":"0x04832328"},"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":"0x04832328"},"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":"0x04830858"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9318c8"},"kids_end":{"t":"ptr","v":"0x0e9318cc"},"kids_cap":{"t":"ptr","v":"0x0e9318cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830858"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9318c8"},"kids_end":{"t":"ptr","v":"0x0e9318cc"},"kids_cap":{"t":"ptr","v":"0x0e9318cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048310e0"},"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":"0x048310e0"},"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":"0x048201d8"},"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":"0x048201d8"},"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":"0x04830320"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e931988"},"kids_end":{"t":"ptr","v":"0x0e93198c"},"kids_cap":{"t":"ptr","v":"0x0e93198c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830320"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e931988"},"kids_end":{"t":"ptr","v":"0x0e93198c"},"kids_cap":{"t":"ptr","v":"0x0e93198c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831350"},"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":"0x04831350"},"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":"0x0482e6c0"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e932a68"},"kids_end":{"t":"ptr","v":"0x0e932a6c"},"kids_cap":{"t":"ptr","v":"0x0e932a6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e6c0"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e932a68"},"kids_end":{"t":"ptr","v":"0x0e932a6c"},"kids_cap":{"t":"ptr","v":"0x0e932a6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481ee58"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8feba0"},"kids_end":{"t":"ptr","v":"0x0e8febb0"},"kids_cap":{"t":"ptr","v":"0x0e8febb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ee58"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8feba0"},"kids_end":{"t":"ptr","v":"0x0e8febb0"},"kids_cap":{"t":"ptr","v":"0x0e8febb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04820580"},"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":"0x04820580"},"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":"0x0482efa0"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8feb58"},"kids_end":{"t":"ptr","v":"0x0e8feb64"},"kids_cap":{"t":"ptr","v":"0x0e8feb64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482efa0"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8feb58"},"kids_end":{"t":"ptr","v":"0x0e8feb64"},"kids_cap":{"t":"ptr","v":"0x0e8feb64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048306c8"},"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":"0x048306c8"},"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":"0x04831bd8"},"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":"0x04831bd8"},"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":"0x0481ff68"},"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":"0x0481ff68"},"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":"0x0481fcf8"},"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":"0x0481fcf8"},"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":"0x0482e988"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e932a88"},"kids_end":{"t":"ptr","v":"0x0e932a8c"},"kids_cap":{"t":"ptr","v":"0x0e932a8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e988"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e932a88"},"kids_end":{"t":"ptr","v":"0x0e932a8c"},"kids_cap":{"t":"ptr","v":"0x0e932a8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481fa88"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e932a18"},"kids_end":{"t":"ptr","v":"0x0e932a1c"},"kids_cap":{"t":"ptr","v":"0x0e932a1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fa88"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e932a18"},"kids_end":{"t":"ptr","v":"0x0e932a1c"},"kids_cap":{"t":"ptr","v":"0x0e932a1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04832598"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe960"},"kids_end":{"t":"ptr","v":"0x0e8fe970"},"kids_cap":{"t":"ptr","v":"0x0e8fe970"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x04832598"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe960"},"kids_end":{"t":"ptr","v":"0x0e8fe970"},"kids_cap":{"t":"ptr","v":"0x0e8fe970"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x048320b8"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e932968"},"kids_end":{"t":"ptr","v":"0x0e932970"},"kids_cap":{"t":"ptr","v":"0x0e932970"},"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":"0x048320b8"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e932968"},"kids_end":{"t":"ptr","v":"0x0e932970"},"kids_cap":{"t":"ptr","v":"0x0e932970"},"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":"0x04831218"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e932958"},"kids_end":{"t":"ptr","v":"0x0e93295c"},"kids_cap":{"t":"ptr","v":"0x0e93295c"},"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":"0x04831218"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e932958"},"kids_end":{"t":"ptr","v":"0x0e93295c"},"kids_cap":{"t":"ptr","v":"0x0e93295c"},"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":"0x0482fe40"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9329e8"},"kids_end":{"t":"ptr","v":"0x0e9329ec"},"kids_cap":{"t":"ptr","v":"0x0e9329ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fe40"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9329e8"},"kids_end":{"t":"ptr","v":"0x0e9329ec"},"kids_cap":{"t":"ptr","v":"0x0e9329ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481f6e0"},"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":"0x0481f6e0"},"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":"0x0482f480"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fea20"},"kids_end":{"t":"ptr","v":"0x0e8fea2c"},"kids_cap":{"t":"ptr","v":"0x0e8fea2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f480"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fea20"},"kids_end":{"t":"ptr","v":"0x0e8fea2c"},"kids_cap":{"t":"ptr","v":"0x0e8fea2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831aa0"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e932a08"},"kids_end":{"t":"ptr","v":"0x0e932a10"},"kids_cap":{"t":"ptr","v":"0x0e932a10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831aa0"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e932a08"},"kids_end":{"t":"ptr","v":"0x0e932a10"},"kids_cap":{"t":"ptr","v":"0x0e932a10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482e450"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e890d10"},"kids_end":{"t":"ptr","v":"0x0e890d24"},"kids_cap":{"t":"ptr","v":"0x0e890d24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e450"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e890d10"},"kids_end":{"t":"ptr","v":"0x0e890d24"},"kids_cap":{"t":"ptr","v":"0x0e890d24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482fbd0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9328f8"},"kids_end":{"t":"ptr","v":"0x0e9328fc"},"kids_cap":{"t":"ptr","v":"0x0e9328fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fbd0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9328f8"},"kids_end":{"t":"ptr","v":"0x0e9328fc"},"kids_cap":{"t":"ptr","v":"0x0e9328fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04831830"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e932a38"},"kids_end":{"t":"ptr","v":"0x0e932a3c"},"kids_cap":{"t":"ptr","v":"0x0e932a3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831830"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e932a38"},"kids_end":{"t":"ptr","v":"0x0e932a3c"},"kids_cap":{"t":"ptr","v":"0x0e932a3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482ebf8"},"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":"0x0482ebf8"},"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":"0x04832460"},"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":"0x04832460"},"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":"0x0482fd08"},"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":"0x0482fd08"},"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":"0x0482ed30"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e932a48"},"kids_end":{"t":"ptr","v":"0x0e932a4c"},"kids_cap":{"t":"ptr","v":"0x0e932a4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ed30"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e932a48"},"kids_end":{"t":"ptr","v":"0x0e932a4c"},"kids_cap":{"t":"ptr","v":"0x0e932a4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830458"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e932a98"},"kids_end":{"t":"ptr","v":"0x0e932a9c"},"kids_cap":{"t":"ptr","v":"0x0e932a9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830458"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e932a98"},"kids_end":{"t":"ptr","v":"0x0e932a9c"},"kids_cap":{"t":"ptr","v":"0x0e932a9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482fa98"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e932988"},"kids_end":{"t":"ptr","v":"0x0e93298c"},"kids_cap":{"t":"ptr","v":"0x0e93298c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fa98"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e932988"},"kids_end":{"t":"ptr","v":"0x0e93298c"},"kids_cap":{"t":"ptr","v":"0x0e93298c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x04830590"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e932aa8"},"kids_end":{"t":"ptr","v":"0x0e932ab0"},"kids_cap":{"t":"ptr","v":"0x0e932ab0"},"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":"0x04830590"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e932aa8"},"kids_end":{"t":"ptr","v":"0x0e932ab0"},"kids_cap":{"t":"ptr","v":"0x0e932ab0"},"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":"0x0482eac0"},"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":"0x0482eac0"},"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":"0x0482df70"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e890df0"},"kids_end":{"t":"ptr","v":"0x0e890e04"},"kids_cap":{"t":"ptr","v":"0x0e890e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0482df70"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e890df0"},"kids_end":{"t":"ptr","v":"0x0e890e04"},"kids_cap":{"t":"ptr","v":"0x0e890e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0481f0c8"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e932908"},"kids_end":{"t":"ptr","v":"0x0e93290c"},"kids_cap":{"t":"ptr","v":"0x0e93290c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f0c8"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e932908"},"kids_end":{"t":"ptr","v":"0x0e93290c"},"kids_cap":{"t":"ptr","v":"0x0e93290c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x048206b8"},"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":"0x048206b8"},"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":"0x0481fe30"},"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":"0x0481fe30"},"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":"0x0481ebe8"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9328b8"},"kids_end":{"t":"ptr","v":"0x0e9328bc"},"kids_cap":{"t":"ptr","v":"0x0e9328bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ebe8"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9328b8"},"kids_end":{"t":"ptr","v":"0x0e9328bc"},"kids_cap":{"t":"ptr","v":"0x0e9328bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0481f818"},"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":"0x0481f818"},"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":"0x0482cab8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e932928"},"kids_end":{"t":"ptr","v":"0x0e93292c"},"kids_cap":{"t":"ptr","v":"0x0e93292c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cab8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e932928"},"kids_end":{"t":"ptr","v":"0x0e93292c"},"kids_cap":{"t":"ptr","v":"0x0e93292c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0482d5b0"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e932918"},"kids_end":{"t":"ptr","v":"0x0e932920"},"kids_cap":{"t":"ptr","v":"0x0e932920"},"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":"0x0482d5b0"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e932918"},"kids_end":{"t":"ptr","v":"0x0e932920"},"kids_cap":{"t":"ptr","v":"0x0e932920"},"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":"0x0481f5a8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9328c8"},"kids_end":{"t":"ptr","v":"0x0e9328d0"},"kids_cap":{"t":"ptr","v":"0x0e9328d0"},"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":"0x0481f5a8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9328c8"},"kids_end":{"t":"ptr","v":"0x0e9328d0"},"kids_cap":{"t":"ptr","v":"0x0e9328d0"},"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":"0x0482d6e8"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e932b48"},"kids_end":{"t":"ptr","v":"0x0e932b50"},"kids_cap":{"t":"ptr","v":"0x0e932b50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d6e8"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e932b48"},"kids_end":{"t":"ptr","v":"0x0e932b50"},"kids_cap":{"t":"ptr","v":"0x0e932b50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0493a1d0"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e932bf8"},"kids_end":{"t":"ptr","v":"0x0e932bfc"},"kids_cap":{"t":"ptr","v":"0x0e932bfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0493a1d0"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e932bf8"},"kids_end":{"t":"ptr","v":"0x0e932bfc"},"kids_cap":{"t":"ptr","v":"0x0e932bfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e659190"},"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":"0x0e659190"},"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":"0x0e659538"},"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":"0x0e659538"},"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":"0x0e65cd48"},"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":"0x0e65cd48"},"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":"0x0e660ee0"},"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":"0x0e660ee0"},"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":"0x0e6597a8"},"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":"0x0e6597a8"},"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":"0x0e659ef8"},"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":"0x0e659ef8"},"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":"0x0e65b9c8"},"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":"0x0e65b9c8"},"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":"0x0e65bea8"},"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":"0x0e65bea8"},"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":"0x0e659b50"},"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":"0x0e659b50"},"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":"0x0e65bc38"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e932be8"},"kids_end":{"t":"ptr","v":"0x0e932bec"},"kids_cap":{"t":"ptr","v":"0x0e932bec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bc38"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e932be8"},"kids_end":{"t":"ptr","v":"0x0e932bec"},"kids_cap":{"t":"ptr","v":"0x0e932bec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e659058"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe8b8"},"kids_end":{"t":"ptr","v":"0x0e8fe8c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe8c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659058"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe8b8"},"kids_end":{"t":"ptr","v":"0x0e8fe8c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe8c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65a780"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fea38"},"kids_end":{"t":"ptr","v":"0x0e8fea44"},"kids_cap":{"t":"ptr","v":"0x0e8fea44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a780"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fea38"},"kids_end":{"t":"ptr","v":"0x0e8fea44"},"kids_cap":{"t":"ptr","v":"0x0e8fea44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65ce80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe9f0"},"kids_end":{"t":"ptr","v":"0x0e8fe9fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ce80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe9f0"},"kids_end":{"t":"ptr","v":"0x0e8fe9fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c388"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8feae0"},"kids_end":{"t":"ptr","v":"0x0e8feaec"},"kids_cap":{"t":"ptr","v":"0x0e8feaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c388"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8feae0"},"kids_end":{"t":"ptr","v":"0x0e8feaec"},"kids_cap":{"t":"ptr","v":"0x0e8feaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65ac60"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe990"},"kids_end":{"t":"ptr","v":"0x0e8fe99c"},"kids_cap":{"t":"ptr","v":"0x0e8fe99c"},"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":"0x0e65ac60"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe990"},"kids_end":{"t":"ptr","v":"0x0e8fe99c"},"kids_cap":{"t":"ptr","v":"0x0e8fe99c"},"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":"0x0e65a9f0"},"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":"0x0e65a9f0"},"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":"0x0e659670"},"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":"0x0e659670"},"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":"0x0e65b758"},"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":"0x0e65b758"},"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":"0x0e660c70"},"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":"0x0e660c70"},"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":"0x049511c8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e890e70"},"kids_end":{"t":"ptr","v":"0x0e890e88"},"kids_cap":{"t":"ptr","v":"0x0e890e88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x049511c8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e890e70"},"kids_end":{"t":"ptr","v":"0x0e890e88"},"kids_cap":{"t":"ptr","v":"0x0e890e88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"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":"0x0e65a8b8"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e932bc8"},"kids_end":{"t":"ptr","v":"0x0e932bd0"},"kids_cap":{"t":"ptr","v":"0x0e932bd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a8b8"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e932bc8"},"kids_end":{"t":"ptr","v":"0x0e932bd0"},"kids_cap":{"t":"ptr","v":"0x0e932bd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65b008"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e932ac8"},"kids_end":{"t":"ptr","v":"0x0e932ad0"},"kids_cap":{"t":"ptr","v":"0x0e932ad0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b008"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e932ac8"},"kids_end":{"t":"ptr","v":"0x0e932ad0"},"kids_cap":{"t":"ptr","v":"0x0e932ad0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65cad8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e932c38"},"kids_end":{"t":"ptr","v":"0x0e932c40"},"kids_cap":{"t":"ptr","v":"0x0e932c40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cad8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e932c38"},"kids_end":{"t":"ptr","v":"0x0e932c40"},"kids_cap":{"t":"ptr","v":"0x0e932c40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e660520"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e932b38"},"kids_end":{"t":"ptr","v":"0x0e932b40"},"kids_cap":{"t":"ptr","v":"0x0e932b40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660520"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e932b38"},"kids_end":{"t":"ptr","v":"0x0e932b40"},"kids_cap":{"t":"ptr","v":"0x0e932b40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65a510"},"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":"0x0e65a510"},"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":"0x0e65bd70"},"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":"0x0e65bd70"},"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":"0x0e65b140"},"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":"0x0e65b140"},"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":"0x0e6592c8"},"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":"0x0e6592c8"},"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":"0x0e65c5f8"},"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":"0x0e65c5f8"},"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":"0x0e65c730"},"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":"0x0e65c730"},"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":"0x0e659a18"},"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":"0x0e659a18"},"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":"0x0e659400"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e932ad8"},"kids_end":{"t":"ptr","v":"0x0e932adc"},"kids_cap":{"t":"ptr","v":"0x0e932adc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659400"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e932ad8"},"kids_end":{"t":"ptr","v":"0x0e932adc"},"kids_cap":{"t":"ptr","v":"0x0e932adc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65aed0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e932af8"},"kids_end":{"t":"ptr","v":"0x0e932afc"},"kids_cap":{"t":"ptr","v":"0x0e932afc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65aed0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e932af8"},"kids_end":{"t":"ptr","v":"0x0e932afc"},"kids_cap":{"t":"ptr","v":"0x0e932afc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65b278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e932c08"},"kids_end":{"t":"ptr","v":"0x0e932c0c"},"kids_cap":{"t":"ptr","v":"0x0e932c0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e932c08"},"kids_end":{"t":"ptr","v":"0x0e932c0c"},"kids_cap":{"t":"ptr","v":"0x0e932c0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65b3b0"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e932ab8"},"kids_end":{"t":"ptr","v":"0x0e932abc"},"kids_cap":{"t":"ptr","v":"0x0e932abc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b3b0"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e932ab8"},"kids_end":{"t":"ptr","v":"0x0e932abc"},"kids_cap":{"t":"ptr","v":"0x0e932abc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c9a0"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e932bd8"},"kids_end":{"t":"ptr","v":"0x0e932bdc"},"kids_cap":{"t":"ptr","v":"0x0e932bdc"},"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":"0x0e65c9a0"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e932bd8"},"kids_end":{"t":"ptr","v":"0x0e932bdc"},"kids_cap":{"t":"ptr","v":"0x0e932bdc"},"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":"0x0e65c4c0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e932b58"},"kids_end":{"t":"ptr","v":"0x0e932b5c"},"kids_cap":{"t":"ptr","v":"0x0e932b5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c4c0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e932b58"},"kids_end":{"t":"ptr","v":"0x0e932b5c"},"kids_cap":{"t":"ptr","v":"0x0e932b5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e65c250"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e932c18"},"kids_end":{"t":"ptr","v":"0x0e932c1c"},"kids_cap":{"t":"ptr","v":"0x0e932c1c"},"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":"0x0e65c250"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e932c18"},"kids_end":{"t":"ptr","v":"0x0e932c1c"},"kids_cap":{"t":"ptr","v":"0x0e932c1c"},"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":"0x0e65c868"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e932b68"},"kids_end":{"t":"ptr","v":"0x0e932b6c"},"kids_cap":{"t":"ptr","v":"0x0e932b6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c868"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e932b68"},"kids_end":{"t":"ptr","v":"0x0e932b6c"},"kids_cap":{"t":"ptr","v":"0x0e932b6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","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":"0x0e659dc0"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e932b78"},"kids_end":{"t":"ptr","v":"0x0e932b7c"},"kids_cap":{"t":"ptr","v":"0x0e932b7c"},"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":"0x0e659dc0"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e932b78"},"kids_end":{"t":"ptr","v":"0x0e932b7c"},"kids_cap":{"t":"ptr","v":"0x0e932b7c"},"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":"0x0e65a030"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e932c28"},"kids_end":{"t":"ptr","v":"0x0e932c2c"},"kids_cap":{"t":"ptr","v":"0x0e932c2c"},"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":"0x0e65a030"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e932c28"},"kids_end":{"t":"ptr","v":"0x0e932c2c"},"kids_cap":{"t":"ptr","v":"0x0e932c2c"},"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":"0x0e65bb00"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e932b88"},"kids_end":{"t":"ptr","v":"0x0e932b8c"},"kids_cap":{"t":"ptr","v":"0x0e932b8c"},"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":"0x0e65bb00"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e932b88"},"kids_end":{"t":"ptr","v":"0x0e932b8c"},"kids_cap":{"t":"ptr","v":"0x0e932b8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"before":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"turns":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}},"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"turns":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}},"observed_techs":{"before":{"t":"struct","v":{"bytes":{"t":"i32","v":880},"vec_begin":{"t":"ptr","v":"0x1f3488e8"},"vec_end":{"t":"ptr","v":"0x1f348c58"},"vec_cap":{"t":"ptr","v":"0x1f348c58"}}},"after":{"t":"struct","v":{"bytes":{"t":"i32","v":880},"vec_begin":{"t":"ptr","v":"0x1f3488e8"},"vec_end":{"t":"ptr","v":"0x1f348c58"},"vec_cap":{"t":"ptr","v":"0x1f348c58"}}}}},"ours":{"ret":null,"side":{"rng":{"after":{"t":"struct","v":{"vptr":{"t":"ptr","v":"0x01469aec"},"mt":{"t":"bytes","n":2496,"sha256":"d3276c7c5a722f1d9d5aae6910e38c4dcaef2977f1a1e0d99f6713f5baf5a374","head":"ede6ec054b3bba46406928b96167c23482fc2d74ede5eef5f50fc21e7260d829"},"left":{"t":"i32","v":431},"next_index":{"t":"i64","v":193}}}},"overbudget":{"after":{"t":"struct","v":{"v":{"t":"i32","v":0}}}},"node[0]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a300"},"tech_id":{"t":"i32","v":0},"kids_begin":{"t":"ptr","v":"0x1f347758"},"kids_end":{"t":"ptr","v":"0x1f34775c"},"kids_cap":{"t":"ptr","v":"0x1f34775c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":9},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[1]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651648"},"tech_id":{"t":"i32","v":1},"kids_begin":{"t":"ptr","v":"0x1f3477d8"},"kids_end":{"t":"ptr","v":"0x1f3477dc"},"kids_cap":{"t":"ptr","v":"0x1f3477dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[2]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652140"},"tech_id":{"t":"i32","v":2},"kids_begin":{"t":"ptr","v":"0x1f3476e8"},"kids_end":{"t":"ptr","v":"0x1f3476ec"},"kids_cap":{"t":"ptr","v":"0x1f3476ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[3]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652890"},"tech_id":{"t":"i32","v":3},"kids_begin":{"t":"ptr","v":"0x1f3477e8"},"kids_end":{"t":"ptr","v":"0x1f3477f0"},"kids_cap":{"t":"ptr","v":"0x1f3477f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[4]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6512a0"},"tech_id":{"t":"i32","v":4},"kids_begin":{"t":"ptr","v":"0x1f3476c8"},"kids_end":{"t":"ptr","v":"0x1f3476d0"},"kids_cap":{"t":"ptr","v":"0x1f3476d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[5]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651510"},"tech_id":{"t":"i32","v":5},"kids_begin":{"t":"ptr","v":"0x1f347698"},"kids_end":{"t":"ptr","v":"0x1f34769c"},"kids_cap":{"t":"ptr","v":"0x1f34769c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[6]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651ed0"},"tech_id":{"t":"i32","v":6},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[7]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651b28"},"tech_id":{"t":"i32","v":7},"kids_begin":{"t":"ptr","v":"0x1f3476f8"},"kids_end":{"t":"ptr","v":"0x1f3476fc"},"kids_cap":{"t":"ptr","v":"0x1f3476fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[8]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6529c8"},"tech_id":{"t":"i32","v":8},"kids_begin":{"t":"ptr","v":"0x1f3477f8"},"kids_end":{"t":"ptr","v":"0x1f3477fc"},"kids_cap":{"t":"ptr","v":"0x1f3477fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[9]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652278"},"tech_id":{"t":"i32","v":9},"kids_begin":{"t":"ptr","v":"0x0e8fe390"},"kids_end":{"t":"ptr","v":"0x0e8fe39c"},"kids_cap":{"t":"ptr","v":"0x0e8fe39c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":3},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[10]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652d70"},"tech_id":{"t":"i32","v":10},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[11]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651780"},"tech_id":{"t":"i32","v":11},"kids_begin":{"t":"ptr","v":"0x1f347668"},"kids_end":{"t":"ptr","v":"0x1f347670"},"kids_cap":{"t":"ptr","v":"0x1f347670"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[12]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652b00"},"tech_id":{"t":"i32","v":12},"kids_begin":{"t":"ptr","v":"0x0e8fe5a0"},"kids_end":{"t":"ptr","v":"0x0e8fe5b0"},"kids_cap":{"t":"ptr","v":"0x0e8fe5b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[13]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652ea8"},"tech_id":{"t":"i32","v":13},"kids_begin":{"t":"ptr","v":"0x1f347608"},"kids_end":{"t":"ptr","v":"0x1f34760c"},"kids_cap":{"t":"ptr","v":"0x1f34760c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[14]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04950e38"},"tech_id":{"t":"i32","v":14},"kids_begin":{"t":"ptr","v":"0x1f347628"},"kids_end":{"t":"ptr","v":"0x1f34762c"},"kids_cap":{"t":"ptr","v":"0x1f34762c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":13},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[15]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652008"},"tech_id":{"t":"i32","v":15},"kids_begin":{"t":"ptr","v":"0x0e8fe4b0"},"kids_end":{"t":"ptr","v":"0x0e8fe4bc"},"kids_cap":{"t":"ptr","v":"0x0e8fe4bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[16]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651030"},"tech_id":{"t":"i32","v":16},"kids_begin":{"t":"ptr","v":"0x1f3476d8"},"kids_end":{"t":"ptr","v":"0x1f3476dc"},"kids_cap":{"t":"ptr","v":"0x1f3476dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[17]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6518b8"},"tech_id":{"t":"i32","v":17},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[18]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e652758"},"tech_id":{"t":"i32","v":18},"kids_begin":{"t":"ptr","v":"0x1f347678"},"kids_end":{"t":"ptr","v":"0x1f34767c"},"kids_cap":{"t":"ptr","v":"0x1f34767c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[19]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651168"},"tech_id":{"t":"i32","v":19},"kids_begin":{"t":"ptr","v":"0x1f3476a8"},"kids_end":{"t":"ptr","v":"0x1f3476ac"},"kids_cap":{"t":"ptr","v":"0x1f3476ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[20]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6523b0"},"tech_id":{"t":"i32","v":20},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[21]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656150"},"tech_id":{"t":"i32","v":21},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[22]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655040"},"tech_id":{"t":"i32","v":22},"kids_begin":{"t":"ptr","v":"0x0e8fe2d0"},"kids_end":{"t":"ptr","v":"0x0e8fe2dc"},"kids_cap":{"t":"ptr","v":"0x0e8fe2dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[23]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b620"},"tech_id":{"t":"i32","v":23},"kids_begin":{"t":"ptr","v":"0x0e8fe2e8"},"kids_end":{"t":"ptr","v":"0x0e8fe2f8"},"kids_cap":{"t":"ptr","v":"0x0e8fe2f8"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":140000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":33},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[24]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659c88"},"tech_id":{"t":"i32","v":24},"kids_begin":{"t":"ptr","v":"0x1f347638"},"kids_end":{"t":"ptr","v":"0x1f34763c"},"kids_cap":{"t":"ptr","v":"0x1f34763c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":34},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[25]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a3d8"},"tech_id":{"t":"i32","v":25},"kids_begin":{"t":"ptr","v":"0x1f347648"},"kids_end":{"t":"ptr","v":"0x1f34764c"},"kids_cap":{"t":"ptr","v":"0x1f34764c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":35},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[26]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6598e0"},"tech_id":{"t":"i32","v":26},"kids_begin":{"t":"ptr","v":"0x1f347868"},"kids_end":{"t":"ptr","v":"0x1f34786c"},"kids_cap":{"t":"ptr","v":"0x1f34786c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":110000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":36},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[27]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a648"},"tech_id":{"t":"i32","v":27},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":180000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":38},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[28]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a2a0"},"tech_id":{"t":"i32","v":28},"kids_begin":{"t":"ptr","v":"0x1f3478e8"},"kids_end":{"t":"ptr","v":"0x1f3478ec"},"kids_cap":{"t":"ptr","v":"0x1f3478ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":37},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[29]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656c48"},"tech_id":{"t":"i32","v":29},"kids_begin":{"t":"ptr","v":"0x1f3479d8"},"kids_end":{"t":"ptr","v":"0x1f3479e0"},"kids_cap":{"t":"ptr","v":"0x1f3479e0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":125000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[30]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655790"},"tech_id":{"t":"i32","v":30},"kids_begin":{"t":"ptr","v":"0x0e8fe300"},"kids_end":{"t":"ptr","v":"0x0e8fe30c"},"kids_cap":{"t":"ptr","v":"0x0e8fe30c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":30},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[31]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655658"},"tech_id":{"t":"i32","v":31},"kids_begin":{"t":"ptr","v":"0x1f347928"},"kids_end":{"t":"ptr","v":"0x1f347930"},"kids_cap":{"t":"ptr","v":"0x1f347930"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":70000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":32},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[32]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6552b0"},"tech_id":{"t":"i32","v":32},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":41},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[33]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656eb8"},"tech_id":{"t":"i32","v":33},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[34]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655ee0"},"tech_id":{"t":"i32","v":34},"kids_begin":{"t":"ptr","v":"0x0e8fe3d8"},"kids_end":{"t":"ptr","v":"0x0e8fe3e4"},"kids_cap":{"t":"ptr","v":"0x0e8fe3e4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":31},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[35]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656b10"},"tech_id":{"t":"i32","v":35},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[36]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6553e8"},"tech_id":{"t":"i32","v":36},"kids_begin":{"t":"ptr","v":"0x0e8fe3a8"},"kids_end":{"t":"ptr","v":"0x0e8fe3b4"},"kids_cap":{"t":"ptr","v":"0x0e8fe3b4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":4000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":39},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[37]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6519f0"},"tech_id":{"t":"i32","v":37},"kids_begin":{"t":"ptr","v":"0x0e8fe4e0"},"kids_end":{"t":"ptr","v":"0x0e8fe4ec"},"kids_cap":{"t":"ptr","v":"0x0e8fe4ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":15},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[38]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655178"},"tech_id":{"t":"i32","v":38},"kids_begin":{"t":"ptr","v":"0x1f3478f8"},"kids_end":{"t":"ptr","v":"0x1f3478fc"},"kids_cap":{"t":"ptr","v":"0x1f3478fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":40},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[39]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656018"},"tech_id":{"t":"i32","v":39},"kids_begin":{"t":"ptr","v":"0x1f347948"},"kids_end":{"t":"ptr","v":"0x1f34794c"},"kids_cap":{"t":"ptr","v":"0x1f34794c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":75000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[40]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655c70"},"tech_id":{"t":"i32","v":40},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[41]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656630"},"tech_id":{"t":"i32","v":41},"kids_begin":{"t":"ptr","v":"0x0e8fe408"},"kids_end":{"t":"ptr","v":"0x0e8fe414"},"kids_cap":{"t":"ptr","v":"0x0e8fe414"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[42]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6564f8"},"tech_id":{"t":"i32","v":42},"kids_begin":{"t":"ptr","v":"0x1f347978"},"kids_end":{"t":"ptr","v":"0x1f34797c"},"kids_cap":{"t":"ptr","v":"0x1f34797c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[43]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655520"},"tech_id":{"t":"i32","v":43},"kids_begin":{"t":"ptr","v":"0x1f3479e8"},"kids_end":{"t":"ptr","v":"0x1f3479ec"},"kids_cap":{"t":"ptr","v":"0x1f3479ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[44]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655b38"},"tech_id":{"t":"i32","v":44},"kids_begin":{"t":"ptr","v":"0x1f347938"},"kids_end":{"t":"ptr","v":"0x1f34793c"},"kids_cap":{"t":"ptr","v":"0x1f34793c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[45]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04950f68"},"tech_id":{"t":"i32","v":45},"kids_begin":{"t":"ptr","v":"0x1f347908"},"kids_end":{"t":"ptr","v":"0x1f34790c"},"kids_cap":{"t":"ptr","v":"0x1f34790c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":14},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[46]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656288"},"tech_id":{"t":"i32","v":46},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[47]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6563c0"},"tech_id":{"t":"i32","v":47},"kids_begin":{"t":"ptr","v":"0x1f347958"},"kids_end":{"t":"ptr","v":"0x1f34795c"},"kids_cap":{"t":"ptr","v":"0x1f34795c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[48]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6568a0"},"tech_id":{"t":"i32","v":48},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[49]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655a00"},"tech_id":{"t":"i32","v":49},"kids_begin":{"t":"ptr","v":"0x0e8fe540"},"kids_end":{"t":"ptr","v":"0x0e8fe54c"},"kids_cap":{"t":"ptr","v":"0x0e8fe54c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[50]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a168"},"tech_id":{"t":"i32","v":50},"kids_begin":{"t":"ptr","v":"0x1f3479a8"},"kids_end":{"t":"ptr","v":"0x1f3479ac"},"kids_cap":{"t":"ptr","v":"0x1f3479ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":22},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[51]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ab28"},"tech_id":{"t":"i32","v":51},"kids_begin":{"t":"ptr","v":"0x1f3479f8"},"kids_end":{"t":"ptr","v":"0x1f3479fc"},"kids_cap":{"t":"ptr","v":"0x1f3479fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":23},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[52]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cc10"},"tech_id":{"t":"i32","v":52},"kids_begin":{"t":"ptr","v":"0x1f347988"},"kids_end":{"t":"ptr","v":"0x1f34798c"},"kids_cap":{"t":"ptr","v":"0x1f34798c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":24},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[53]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bfe0"},"tech_id":{"t":"i32","v":53},"kids_begin":{"t":"ptr","v":"0x1f347888"},"kids_end":{"t":"ptr","v":"0x1f34788c"},"kids_cap":{"t":"ptr","v":"0x1f34788c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":26},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[54]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b4e8"},"tech_id":{"t":"i32","v":54},"kids_begin":{"t":"ptr","v":"0x1f347968"},"kids_end":{"t":"ptr","v":"0x1f34796c"},"kids_cap":{"t":"ptr","v":"0x1f34796c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":18},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[55]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b890"},"tech_id":{"t":"i32","v":55},"kids_begin":{"t":"ptr","v":"0x1f347998"},"kids_end":{"t":"ptr","v":"0x1f34799c"},"kids_cap":{"t":"ptr","v":"0x1f34799c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":25},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[56]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656768"},"tech_id":{"t":"i32","v":56},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[57]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657c78"},"tech_id":{"t":"i32","v":57},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[58]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658ec0"},"tech_id":{"t":"i32","v":58},"kids_begin":{"t":"ptr","v":"0x1f347918"},"kids_end":{"t":"ptr","v":"0x1f34791c"},"kids_cap":{"t":"ptr","v":"0x1f34791c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[60]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657048"},"tech_id":{"t":"i32","v":60},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[61]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6589e0"},"tech_id":{"t":"i32","v":61},"kids_begin":{"t":"ptr","v":"0x0e8fe420"},"kids_end":{"t":"ptr","v":"0x0e8fe42c"},"kids_cap":{"t":"ptr","v":"0x0e8fe42c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[62]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6578d0"},"tech_id":{"t":"i32","v":62},"kids_begin":{"t":"ptr","v":"0x0e8fe360"},"kids_end":{"t":"ptr","v":"0x0e8fe36c"},"kids_cap":{"t":"ptr","v":"0x0e8fe36c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[63]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657ee8"},"tech_id":{"t":"i32","v":63},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[64]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658158"},"tech_id":{"t":"i32","v":64},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[65]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951098"},"tech_id":{"t":"i32","v":65},"kids_begin":{"t":"ptr","v":"0x1f347838"},"kids_end":{"t":"ptr","v":"0x1f34783c"},"kids_cap":{"t":"ptr","v":"0x1f34783c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":16},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[66]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658638"},"tech_id":{"t":"i32","v":66},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[67]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658770"},"tech_id":{"t":"i32","v":67},"kids_begin":{"t":"ptr","v":"0x1f347808"},"kids_end":{"t":"ptr","v":"0x1f347810"},"kids_cap":{"t":"ptr","v":"0x1f347810"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[68]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658020"},"tech_id":{"t":"i32","v":68},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[69]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657db0"},"tech_id":{"t":"i32","v":69},"kids_begin":{"t":"ptr","v":"0x1f347898"},"kids_end":{"t":"ptr","v":"0x1f3478a0"},"kids_cap":{"t":"ptr","v":"0x1f3478a0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[70]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821d00"},"tech_id":{"t":"i32","v":70},"kids_begin":{"t":"ptr","v":"0x0e890e10"},"kids_end":{"t":"ptr","v":"0x0e890e24"},"kids_cap":{"t":"ptr","v":"0x0e890e24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[72]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f950"},"tech_id":{"t":"i32","v":72},"kids_begin":{"t":"ptr","v":"0x0e8fe4c8"},"kids_end":{"t":"ptr","v":"0x0e8fe4d4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4d4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":5},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[74]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821478"},"tech_id":{"t":"i32","v":74},"kids_begin":{"t":"ptr","v":"0x0e9885a0"},"kids_end":{"t":"ptr","v":"0x0e9885c4"},"kids_cap":{"t":"ptr","v":"0x0e9885c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":85000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[77]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04822318"},"tech_id":{"t":"i32","v":77},"kids_begin":{"t":"ptr","v":"0x1f3479b8"},"kids_end":{"t":"ptr","v":"0x1f3479bc"},"kids_cap":{"t":"ptr","v":"0x1f3479bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":12},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[78]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820f98"},"tech_id":{"t":"i32","v":78},"kids_begin":{"t":"ptr","v":"0x1f347878"},"kids_end":{"t":"ptr","v":"0x1f34787c"},"kids_cap":{"t":"ptr","v":"0x1f34787c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[80]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e651d98"},"tech_id":{"t":"i32","v":80},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[81]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048210d0"},"tech_id":{"t":"i32","v":81},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[85]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821340"},"tech_id":{"t":"i32","v":85},"kids_begin":{"t":"ptr","v":"0x0e8fe468"},"kids_end":{"t":"ptr","v":"0x0e8fe474"},"kids_cap":{"t":"ptr","v":"0x0e8fe474"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[89]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481e978"},"tech_id":{"t":"i32","v":89},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[90]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481e840"},"tech_id":{"t":"i32","v":90},"kids_begin":{"t":"ptr","v":"0x1f3479c8"},"kids_end":{"t":"ptr","v":"0x1f3479cc"},"kids_cap":{"t":"ptr","v":"0x1f3479cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[91]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048216e8"},"tech_id":{"t":"i32","v":91},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[92]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821820"},"tech_id":{"t":"i32","v":92},"kids_begin":{"t":"ptr","v":"0x1f3478a8"},"kids_end":{"t":"ptr","v":"0x1f3478ac"},"kids_cap":{"t":"ptr","v":"0x1f3478ac"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[94]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04821958"},"tech_id":{"t":"i32","v":94},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[98]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a430"},"tech_id":{"t":"i32","v":98},"kids_begin":{"t":"ptr","v":"0x1f347818"},"kids_end":{"t":"ptr","v":"0x1f34781c"},"kids_cap":{"t":"ptr","v":"0x1f34781c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":11},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[99]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048215b0"},"tech_id":{"t":"i32","v":99},"kids_begin":{"t":"ptr","v":"0x1f3478b8"},"kids_end":{"t":"ptr","v":"0x1f3478bc"},"kids_cap":{"t":"ptr","v":"0x1f3478bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[105]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048220a8"},"tech_id":{"t":"i32","v":105},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[106]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0480fde8"},"tech_id":{"t":"i32","v":106},"kids_begin":{"t":"ptr","v":"0x1f347828"},"kids_end":{"t":"ptr","v":"0x1f34782c"},"kids_cap":{"t":"ptr","v":"0x1f34782c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[107]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c4d8"},"tech_id":{"t":"i32","v":107},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[108]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482de38"},"tech_id":{"t":"i32","v":108},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[109]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d0d0"},"tech_id":{"t":"i32","v":109},"kids_begin":{"t":"ptr","v":"0x1f3478c8"},"kids_end":{"t":"ptr","v":"0x1f3478d0"},"kids_cap":{"t":"ptr","v":"0x1f3478d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[110]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bff8"},"tech_id":{"t":"i32","v":110},"kids_begin":{"t":"ptr","v":"0x1f347848"},"kids_end":{"t":"ptr","v":"0x1f347850"},"kids_cap":{"t":"ptr","v":"0x1f347850"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[111]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b770"},"tech_id":{"t":"i32","v":111},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[112]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e318"},"tech_id":{"t":"i32","v":112},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[113]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e588"},"tech_id":{"t":"i32","v":113},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[114]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b638"},"tech_id":{"t":"i32","v":114},"kids_begin":{"t":"ptr","v":"0x0e890e50"},"kids_end":{"t":"ptr","v":"0x0e890e64"},"kids_cap":{"t":"ptr","v":"0x0e890e64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":29},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[115]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657798"},"tech_id":{"t":"i32","v":115},"kids_begin":{"t":"ptr","v":"0x0e8fe438"},"kids_end":{"t":"ptr","v":"0x0e8fe444"},"kids_cap":{"t":"ptr","v":"0x0e8fe444"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[116]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482c980"},"tech_id":{"t":"i32","v":116},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[117]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482dd00"},"tech_id":{"t":"i32","v":117},"kids_begin":{"t":"ptr","v":"0x1f347858"},"kids_end":{"t":"ptr","v":"0x1f34785c"},"kids_cap":{"t":"ptr","v":"0x1f34785c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[118]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d958"},"tech_id":{"t":"i32","v":118},"kids_begin":{"t":"ptr","v":"0x1f3478d8"},"kids_end":{"t":"ptr","v":"0x1f3478dc"},"kids_cap":{"t":"ptr","v":"0x1f3478dc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[119]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c3a0"},"tech_id":{"t":"i32","v":119},"kids_begin":{"t":"ptr","v":"0x0e930e18"},"kids_end":{"t":"ptr","v":"0x0e930e1c"},"kids_cap":{"t":"ptr","v":"0x0e930e1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[120]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658c50"},"tech_id":{"t":"i32","v":120},"kids_begin":{"t":"ptr","v":"0x0e930e48"},"kids_end":{"t":"ptr","v":"0x0e930e4c"},"kids_cap":{"t":"ptr","v":"0x0e930e4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[121]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cf98"},"tech_id":{"t":"i32","v":121},"kids_begin":{"t":"ptr","v":"0x0e930e68"},"kids_end":{"t":"ptr","v":"0x0e930e70"},"kids_cap":{"t":"ptr","v":"0x0e930e70"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[122]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049517b8"},"tech_id":{"t":"i32","v":122},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[123]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d208"},"tech_id":{"t":"i32","v":123},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[124]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482da90"},"tech_id":{"t":"i32","v":124},"kids_begin":{"t":"ptr","v":"0x0e8fe450"},"kids_end":{"t":"ptr","v":"0x0e8fe45c"},"kids_cap":{"t":"ptr","v":"0x0e8fe45c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[125]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951688"},"tech_id":{"t":"i32","v":125},"kids_begin":{"t":"ptr","v":"0x0e930e98"},"kids_end":{"t":"ptr","v":"0x0e930ea0"},"kids_cap":{"t":"ptr","v":"0x0e930ea0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[126]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b8a8"},"tech_id":{"t":"i32","v":126},"kids_begin":{"t":"ptr","v":"0x0e930e38"},"kids_end":{"t":"ptr","v":"0x0e930e40"},"kids_cap":{"t":"ptr","v":"0x0e930e40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[127]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cd28"},"tech_id":{"t":"i32","v":127},"kids_begin":{"t":"ptr","v":"0x0e930e28"},"kids_end":{"t":"ptr","v":"0x0e930e2c"},"kids_cap":{"t":"ptr","v":"0x0e930e2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":50000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[128]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482dbc8"},"tech_id":{"t":"i32","v":128},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[129]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c130"},"tech_id":{"t":"i32","v":129},"kids_begin":{"t":"ptr","v":"0x0e8fe480"},"kids_end":{"t":"ptr","v":"0x0e8fe48c"},"kids_cap":{"t":"ptr","v":"0x0e8fe48c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[130]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d478"},"tech_id":{"t":"i32","v":130},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[131]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d340"},"tech_id":{"t":"i32","v":131},"kids_begin":{"t":"ptr","v":"0x0e8fe498"},"kids_end":{"t":"ptr","v":"0x0e8fe4a4"},"kids_cap":{"t":"ptr","v":"0x0e8fe4a4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[132]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bb18"},"tech_id":{"t":"i32","v":132},"kids_begin":{"t":"ptr","v":"0x0e8fe858"},"kids_end":{"t":"ptr","v":"0x0e8fe868"},"kids_cap":{"t":"ptr","v":"0x0e8fe868"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":28},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[133]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493c268"},"tech_id":{"t":"i32","v":133},"kids_begin":{"t":"ptr","v":"0x0e930e58"},"kids_end":{"t":"ptr","v":"0x0e930e60"},"kids_cap":{"t":"ptr","v":"0x0e930e60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[134]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657a08"},"tech_id":{"t":"i32","v":134},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[135]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bd88"},"tech_id":{"t":"i32","v":135},"kids_begin":{"t":"ptr","v":"0x0e930d78"},"kids_end":{"t":"ptr","v":"0x0e930d7c"},"kids_cap":{"t":"ptr","v":"0x0e930d7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[136]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951558"},"tech_id":{"t":"i32","v":136},"kids_begin":{"t":"ptr","v":"0x0e8fe690"},"kids_end":{"t":"ptr","v":"0x0e8fe69c"},"kids_cap":{"t":"ptr","v":"0x0e8fe69c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[137]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e5e0950"},"tech_id":{"t":"i32","v":137},"kids_begin":{"t":"ptr","v":"0x0e930cd8"},"kids_end":{"t":"ptr","v":"0x0e930cdc"},"kids_cap":{"t":"ptr","v":"0x0e930cdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":0},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[138]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bec0"},"tech_id":{"t":"i32","v":138},"kids_begin":{"t":"ptr","v":"0x0e930cc8"},"kids_end":{"t":"ptr","v":"0x0e930ccc"},"kids_cap":{"t":"ptr","v":"0x0e930ccc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":12000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[139]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493bc50"},"tech_id":{"t":"i32","v":139},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":1},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[140]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493b9e0"},"tech_id":{"t":"i32","v":140},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[141]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482c848"},"tech_id":{"t":"i32","v":141},"kids_begin":{"t":"ptr","v":"0x0e930d68"},"kids_end":{"t":"ptr","v":"0x0e930d6c"},"kids_cap":{"t":"ptr","v":"0x0e930d6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[142]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04951428"},"tech_id":{"t":"i32","v":142},"kids_begin":{"t":"ptr","v":"0x0e930cf8"},"kids_end":{"t":"ptr","v":"0x0e930cfc"},"kids_cap":{"t":"ptr","v":"0x0e930cfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":8000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[143]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ce60"},"tech_id":{"t":"i32","v":143},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[144]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049512f8"},"tech_id":{"t":"i32","v":144},"kids_begin":{"t":"ptr","v":"0x0e8fe5e8"},"kids_end":{"t":"ptr","v":"0x0e8fe5f4"},"kids_cap":{"t":"ptr","v":"0x0e8fe5f4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":27},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[145]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04939f70"},"tech_id":{"t":"i32","v":145},"kids_begin":{"t":"ptr","v":"0x0e930d28"},"kids_end":{"t":"ptr","v":"0x0e930d2c"},"kids_cap":{"t":"ptr","v":"0x0e930d2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":4},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[146]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e656d80"},"tech_id":{"t":"i32","v":146},"kids_begin":{"t":"ptr","v":"0x0e930ce8"},"kids_end":{"t":"ptr","v":"0x0e930cf0"},"kids_cap":{"t":"ptr","v":"0x0e930cf0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[147]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6558c8"},"tech_id":{"t":"i32","v":147},"kids_begin":{"t":"ptr","v":"0x0e8fea98"},"kids_end":{"t":"ptr","v":"0x0e8feaa4"},"kids_cap":{"t":"ptr","v":"0x0e8feaa4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[148]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658b18"},"tech_id":{"t":"i32","v":148},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[149]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657528"},"tech_id":{"t":"i32","v":149},"kids_begin":{"t":"ptr","v":"0x0e930dc8"},"kids_end":{"t":"ptr","v":"0x0e930dcc"},"kids_cap":{"t":"ptr","v":"0x0e930dcc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[151]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658290"},"tech_id":{"t":"i32","v":151},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[152]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6569d8"},"tech_id":{"t":"i32","v":152},"kids_begin":{"t":"ptr","v":"0x0e930dd8"},"kids_end":{"t":"ptr","v":"0x0e930de0"},"kids_cap":{"t":"ptr","v":"0x0e930de0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[153]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658d88"},"tech_id":{"t":"i32","v":153},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[154]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6572b8"},"tech_id":{"t":"i32","v":154},"kids_begin":{"t":"ptr","v":"0x0e930d08"},"kids_end":{"t":"ptr","v":"0x0e930d0c"},"kids_cap":{"t":"ptr","v":"0x0e930d0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[155]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657b40"},"tech_id":{"t":"i32","v":155},"kids_begin":{"t":"ptr","v":"0x0e930e78"},"kids_end":{"t":"ptr","v":"0x0e930e80"},"kids_cap":{"t":"ptr","v":"0x0e930e80"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[156]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6573f0"},"tech_id":{"t":"i32","v":156},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[157]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e655da8"},"tech_id":{"t":"i32","v":157},"kids_begin":{"t":"ptr","v":"0x0e930d18"},"kids_end":{"t":"ptr","v":"0x0e930d20"},"kids_cap":{"t":"ptr","v":"0x0e930d20"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[158]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e658500"},"tech_id":{"t":"i32","v":158},"kids_begin":{"t":"ptr","v":"0x0e930da8"},"kids_end":{"t":"ptr","v":"0x0e930db0"},"kids_cap":{"t":"ptr","v":"0x0e930db0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[159]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6583c8"},"tech_id":{"t":"i32","v":159},"kids_begin":{"t":"ptr","v":"0x0e930e88"},"kids_end":{"t":"ptr","v":"0x0e930e90"},"kids_cap":{"t":"ptr","v":"0x0e930e90"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[160]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e657180"},"tech_id":{"t":"i32","v":160},"kids_begin":{"t":"ptr","v":"0x0e930d88"},"kids_end":{"t":"ptr","v":"0x0e930d8c"},"kids_cap":{"t":"ptr","v":"0x0e930d8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[161]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0480ff18"},"tech_id":{"t":"i32","v":161},"kids_begin":{"t":"ptr","v":"0x0e930d48"},"kids_end":{"t":"ptr","v":"0x0e930d4c"},"kids_cap":{"t":"ptr","v":"0x0e930d4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":3},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[162]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a0a0"},"tech_id":{"t":"i32","v":162},"kids_begin":{"t":"ptr","v":"0x0e930d98"},"kids_end":{"t":"ptr","v":"0x0e930da0"},"kids_cap":{"t":"ptr","v":"0x0e930da0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":6},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[163]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f338"},"tech_id":{"t":"i32","v":163},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[164]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f960"},"tech_id":{"t":"i32","v":164},"kids_begin":{"t":"ptr","v":"0x0e930ea8"},"kids_end":{"t":"ptr","v":"0x0e930eb0"},"kids_cap":{"t":"ptr","v":"0x0e930eb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[165]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831968"},"tech_id":{"t":"i32","v":165},"kids_begin":{"t":"ptr","v":"0x0e930db8"},"kids_end":{"t":"ptr","v":"0x0e930dbc"},"kids_cap":{"t":"ptr","v":"0x0e930dbc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[166]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f210"},"tech_id":{"t":"i32","v":166},"kids_begin":{"t":"ptr","v":"0x0e930de8"},"kids_end":{"t":"ptr","v":"0x0e930dec"},"kids_cap":{"t":"ptr","v":"0x0e930dec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[167]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831d10"},"tech_id":{"t":"i32","v":167},"kids_begin":{"t":"ptr","v":"0x0e930d58"},"kids_end":{"t":"ptr","v":"0x0e930d60"},"kids_cap":{"t":"ptr","v":"0x0e930d60"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[168]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830e70"},"tech_id":{"t":"i32","v":168},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[169]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ed20"},"tech_id":{"t":"i32","v":169},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[170]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820448"},"tech_id":{"t":"i32","v":170},"kids_begin":{"t":"ptr","v":"0x0e930d38"},"kids_end":{"t":"ptr","v":"0x0e930d3c"},"kids_cap":{"t":"ptr","v":"0x0e930d3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[171]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831488"},"tech_id":{"t":"i32","v":171},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[172]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fbc0"},"tech_id":{"t":"i32","v":172},"kids_begin":{"t":"ptr","v":"0x0e930df8"},"kids_end":{"t":"ptr","v":"0x0e930dfc"},"kids_cap":{"t":"ptr","v":"0x0e930dfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[173]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ee68"},"tech_id":{"t":"i32","v":173},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[174]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f200"},"tech_id":{"t":"i32","v":174},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":11000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[175]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f828"},"tech_id":{"t":"i32","v":175},"kids_begin":{"t":"ptr","v":"0x0e930cb8"},"kids_end":{"t":"ptr","v":"0x0e930cc0"},"kids_cap":{"t":"ptr","v":"0x0e930cc0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[177]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830990"},"tech_id":{"t":"i32","v":177},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[178]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830c00"},"tech_id":{"t":"i32","v":178},"kids_begin":{"t":"ptr","v":"0x0e930e08"},"kids_end":{"t":"ptr","v":"0x0e930e0c"},"kids_cap":{"t":"ptr","v":"0x0e930e0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[179]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e1e0"},"tech_id":{"t":"i32","v":179},"kids_begin":{"t":"ptr","v":"0x0e931798"},"kids_end":{"t":"ptr","v":"0x0e93179c"},"kids_cap":{"t":"ptr","v":"0x0e93179c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[180]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048321f0"},"tech_id":{"t":"i32","v":180},"kids_begin":{"t":"ptr","v":"0x0e8fe978"},"kids_end":{"t":"ptr","v":"0x0e8fe984"},"kids_cap":{"t":"ptr","v":"0x0e8fe984"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[181]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820310"},"tech_id":{"t":"i32","v":181},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[182]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e850"},"tech_id":{"t":"i32","v":182},"kids_begin":{"t":"ptr","v":"0x0e8fe948"},"kids_end":{"t":"ptr","v":"0x0e8fe958"},"kids_cap":{"t":"ptr","v":"0x0e8fe958"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[183]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831f80"},"tech_id":{"t":"i32","v":183},"kids_begin":{"t":"ptr","v":"0x0e9316e8"},"kids_end":{"t":"ptr","v":"0x0e9316f0"},"kids_cap":{"t":"ptr","v":"0x0e9316f0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[184]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f5b8"},"tech_id":{"t":"i32","v":184},"kids_begin":{"t":"ptr","v":"0x0e931768"},"kids_end":{"t":"ptr","v":"0x0e931770"},"kids_cap":{"t":"ptr","v":"0x0e931770"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[185]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048315c0"},"tech_id":{"t":"i32","v":185},"kids_begin":{"t":"ptr","v":"0x0e931778"},"kids_end":{"t":"ptr","v":"0x0e93177c"},"kids_cap":{"t":"ptr","v":"0x0e93177c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[186]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830ac8"},"tech_id":{"t":"i32","v":186},"kids_begin":{"t":"ptr","v":"0x0e9316f8"},"kids_end":{"t":"ptr","v":"0x0e931700"},"kids_cap":{"t":"ptr","v":"0x0e931700"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[187]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830fa8"},"tech_id":{"t":"i32","v":187},"kids_begin":{"t":"ptr","v":"0x0e9318a8"},"kids_end":{"t":"ptr","v":"0x0e9318b0"},"kids_cap":{"t":"ptr","v":"0x0e9318b0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[188]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048316f8"},"tech_id":{"t":"i32","v":188},"kids_begin":{"t":"ptr","v":"0x0e931828"},"kids_end":{"t":"ptr","v":"0x0e931830"},"kids_cap":{"t":"ptr","v":"0x0e931830"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[189]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f6f0"},"tech_id":{"t":"i32","v":189},"kids_begin":{"t":"ptr","v":"0x0e931708"},"kids_end":{"t":"ptr","v":"0x0e93170c"},"kids_cap":{"t":"ptr","v":"0x0e93170c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[190]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d820"},"tech_id":{"t":"i32","v":190},"kids_begin":{"t":"ptr","v":"0x0e931858"},"kids_end":{"t":"ptr","v":"0x0e93185c"},"kids_cap":{"t":"ptr","v":"0x0e93185c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[191]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e0a8"},"tech_id":{"t":"i32","v":191},"kids_begin":{"t":"ptr","v":"0x0e9316b8"},"kids_end":{"t":"ptr","v":"0x0e9316c0"},"kids_cap":{"t":"ptr","v":"0x0e9316c0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":5000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[192]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830d38"},"tech_id":{"t":"i32","v":192},"kids_begin":{"t":"ptr","v":"0x0e931968"},"kids_end":{"t":"ptr","v":"0x0e93196c"},"kids_cap":{"t":"ptr","v":"0x0e93196c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[193]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048200a0"},"tech_id":{"t":"i32","v":193},"kids_begin":{"t":"ptr","v":"0x0e8feb28"},"kids_end":{"t":"ptr","v":"0x0e8feb34"},"kids_cap":{"t":"ptr","v":"0x0e8feb34"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":10},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[194]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ff78"},"tech_id":{"t":"i32","v":194},"kids_begin":{"t":"ptr","v":"0x0e931a38"},"kids_end":{"t":"ptr","v":"0x0e931a3c"},"kids_cap":{"t":"ptr","v":"0x0e931a3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":20000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[195]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481eab0"},"tech_id":{"t":"i32","v":195},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[196]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048301e8"},"tech_id":{"t":"i32","v":196},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[197]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ef90"},"tech_id":{"t":"i32","v":197},"kids_begin":{"t":"ptr","v":"0x0e890f70"},"kids_end":{"t":"ptr","v":"0x0e890f84"},"kids_cap":{"t":"ptr","v":"0x0e890f84"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[198]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cbf0"},"tech_id":{"t":"i32","v":198},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[199]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f348"},"tech_id":{"t":"i32","v":199},"kids_begin":{"t":"ptr","v":"0x0e931978"},"kids_end":{"t":"ptr","v":"0x0e93197c"},"kids_cap":{"t":"ptr","v":"0x0e93197c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[200]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048326d0"},"tech_id":{"t":"i32","v":200},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[201]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048300b0"},"tech_id":{"t":"i32","v":201},"kids_begin":{"t":"ptr","v":"0x0e9318b8"},"kids_end":{"t":"ptr","v":"0x0e9318bc"},"kids_cap":{"t":"ptr","v":"0x0e9318bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[202]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831e48"},"tech_id":{"t":"i32","v":202},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[203]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04832328"},"tech_id":{"t":"i32","v":203},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[204]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830858"},"tech_id":{"t":"i32","v":204},"kids_begin":{"t":"ptr","v":"0x0e9318c8"},"kids_end":{"t":"ptr","v":"0x0e9318cc"},"kids_cap":{"t":"ptr","v":"0x0e9318cc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[205]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048310e0"},"tech_id":{"t":"i32","v":205},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[206]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048201d8"},"tech_id":{"t":"i32","v":206},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[207]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830320"},"tech_id":{"t":"i32","v":207},"kids_begin":{"t":"ptr","v":"0x0e931988"},"kids_end":{"t":"ptr","v":"0x0e93198c"},"kids_cap":{"t":"ptr","v":"0x0e93198c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[208]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831350"},"tech_id":{"t":"i32","v":208},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[209]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e6c0"},"tech_id":{"t":"i32","v":209},"kids_begin":{"t":"ptr","v":"0x0e932a68"},"kids_end":{"t":"ptr","v":"0x0e932a6c"},"kids_cap":{"t":"ptr","v":"0x0e932a6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[210]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ee58"},"tech_id":{"t":"i32","v":210},"kids_begin":{"t":"ptr","v":"0x0e8feba0"},"kids_end":{"t":"ptr","v":"0x0e8febb0"},"kids_cap":{"t":"ptr","v":"0x0e8febb0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[211]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04820580"},"tech_id":{"t":"i32","v":211},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[212]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482efa0"},"tech_id":{"t":"i32","v":212},"kids_begin":{"t":"ptr","v":"0x0e8feb58"},"kids_end":{"t":"ptr","v":"0x0e8feb64"},"kids_cap":{"t":"ptr","v":"0x0e8feb64"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[213]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048306c8"},"tech_id":{"t":"i32","v":213},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[214]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831bd8"},"tech_id":{"t":"i32","v":214},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[215]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ff68"},"tech_id":{"t":"i32","v":215},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[216]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fcf8"},"tech_id":{"t":"i32","v":216},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[218]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e988"},"tech_id":{"t":"i32","v":218},"kids_begin":{"t":"ptr","v":"0x0e932a88"},"kids_end":{"t":"ptr","v":"0x0e932a8c"},"kids_cap":{"t":"ptr","v":"0x0e932a8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[219]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fa88"},"tech_id":{"t":"i32","v":219},"kids_begin":{"t":"ptr","v":"0x0e932a18"},"kids_end":{"t":"ptr","v":"0x0e932a1c"},"kids_cap":{"t":"ptr","v":"0x0e932a1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[220]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04832598"},"tech_id":{"t":"i32","v":220},"kids_begin":{"t":"ptr","v":"0x0e8fe960"},"kids_end":{"t":"ptr","v":"0x0e8fe970"},"kids_cap":{"t":"ptr","v":"0x0e8fe970"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":8},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[221]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048320b8"},"tech_id":{"t":"i32","v":221},"kids_begin":{"t":"ptr","v":"0x0e932968"},"kids_end":{"t":"ptr","v":"0x0e932970"},"kids_cap":{"t":"ptr","v":"0x0e932970"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[222]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831218"},"tech_id":{"t":"i32","v":222},"kids_begin":{"t":"ptr","v":"0x0e932958"},"kids_end":{"t":"ptr","v":"0x0e93295c"},"kids_cap":{"t":"ptr","v":"0x0e93295c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":9000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[223]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fe40"},"tech_id":{"t":"i32","v":223},"kids_begin":{"t":"ptr","v":"0x0e9329e8"},"kids_end":{"t":"ptr","v":"0x0e9329ec"},"kids_cap":{"t":"ptr","v":"0x0e9329ec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[224]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f6e0"},"tech_id":{"t":"i32","v":224},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[225]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482f480"},"tech_id":{"t":"i32","v":225},"kids_begin":{"t":"ptr","v":"0x0e8fea20"},"kids_end":{"t":"ptr","v":"0x0e8fea2c"},"kids_cap":{"t":"ptr","v":"0x0e8fea2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[226]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831aa0"},"tech_id":{"t":"i32","v":226},"kids_begin":{"t":"ptr","v":"0x0e932a08"},"kids_end":{"t":"ptr","v":"0x0e932a10"},"kids_cap":{"t":"ptr","v":"0x0e932a10"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[227]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482e450"},"tech_id":{"t":"i32","v":227},"kids_begin":{"t":"ptr","v":"0x0e890d10"},"kids_end":{"t":"ptr","v":"0x0e890d24"},"kids_cap":{"t":"ptr","v":"0x0e890d24"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":10000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[228]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fbd0"},"tech_id":{"t":"i32","v":228},"kids_begin":{"t":"ptr","v":"0x0e9328f8"},"kids_end":{"t":"ptr","v":"0x0e9328fc"},"kids_cap":{"t":"ptr","v":"0x0e9328fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[229]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04831830"},"tech_id":{"t":"i32","v":229},"kids_begin":{"t":"ptr","v":"0x0e932a38"},"kids_end":{"t":"ptr","v":"0x0e932a3c"},"kids_cap":{"t":"ptr","v":"0x0e932a3c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[230]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ebf8"},"tech_id":{"t":"i32","v":230},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[231]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04832460"},"tech_id":{"t":"i32","v":231},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[232]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fd08"},"tech_id":{"t":"i32","v":232},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[233]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482ed30"},"tech_id":{"t":"i32","v":233},"kids_begin":{"t":"ptr","v":"0x0e932a48"},"kids_end":{"t":"ptr","v":"0x0e932a4c"},"kids_cap":{"t":"ptr","v":"0x0e932a4c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[234]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830458"},"tech_id":{"t":"i32","v":234},"kids_begin":{"t":"ptr","v":"0x0e932a98"},"kids_end":{"t":"ptr","v":"0x0e932a9c"},"kids_cap":{"t":"ptr","v":"0x0e932a9c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[235]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482fa98"},"tech_id":{"t":"i32","v":235},"kids_begin":{"t":"ptr","v":"0x0e932988"},"kids_end":{"t":"ptr","v":"0x0e93298c"},"kids_cap":{"t":"ptr","v":"0x0e93298c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[236]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x04830590"},"tech_id":{"t":"i32","v":236},"kids_begin":{"t":"ptr","v":"0x0e932aa8"},"kids_end":{"t":"ptr","v":"0x0e932ab0"},"kids_cap":{"t":"ptr","v":"0x0e932ab0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":18000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[237]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482eac0"},"tech_id":{"t":"i32","v":237},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[238]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482df70"},"tech_id":{"t":"i32","v":238},"kids_begin":{"t":"ptr","v":"0x0e890df0"},"kids_end":{"t":"ptr","v":"0x0e890e04"},"kids_cap":{"t":"ptr","v":"0x0e890e04"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":0},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":2},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[239]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f0c8"},"tech_id":{"t":"i32","v":239},"kids_begin":{"t":"ptr","v":"0x0e932908"},"kids_end":{"t":"ptr","v":"0x0e93290c"},"kids_cap":{"t":"ptr","v":"0x0e93290c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[240]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x048206b8"},"tech_id":{"t":"i32","v":240},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[241]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481fe30"},"tech_id":{"t":"i32","v":241},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[242]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481ebe8"},"tech_id":{"t":"i32","v":242},"kids_begin":{"t":"ptr","v":"0x0e9328b8"},"kids_end":{"t":"ptr","v":"0x0e9328bc"},"kids_cap":{"t":"ptr","v":"0x0e9328bc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[243]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f818"},"tech_id":{"t":"i32","v":243},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[244]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482cab8"},"tech_id":{"t":"i32","v":244},"kids_begin":{"t":"ptr","v":"0x0e932928"},"kids_end":{"t":"ptr","v":"0x0e93292c"},"kids_cap":{"t":"ptr","v":"0x0e93292c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[245]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d5b0"},"tech_id":{"t":"i32","v":245},"kids_begin":{"t":"ptr","v":"0x0e932918"},"kids_end":{"t":"ptr","v":"0x0e932920"},"kids_cap":{"t":"ptr","v":"0x0e932920"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[246]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0481f5a8"},"tech_id":{"t":"i32","v":246},"kids_begin":{"t":"ptr","v":"0x0e9328c8"},"kids_end":{"t":"ptr","v":"0x0e9328d0"},"kids_cap":{"t":"ptr","v":"0x0e9328d0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":7000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[247]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0482d6e8"},"tech_id":{"t":"i32","v":247},"kids_begin":{"t":"ptr","v":"0x0e932b48"},"kids_end":{"t":"ptr","v":"0x0e932b50"},"kids_cap":{"t":"ptr","v":"0x0e932b50"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[248]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0493a1d0"},"tech_id":{"t":"i32","v":248},"kids_begin":{"t":"ptr","v":"0x0e932bf8"},"kids_end":{"t":"ptr","v":"0x0e932bfc"},"kids_cap":{"t":"ptr","v":"0x0e932bfc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":7},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[249]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659190"},"tech_id":{"t":"i32","v":249},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[250]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659538"},"tech_id":{"t":"i32","v":250},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[251]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cd48"},"tech_id":{"t":"i32","v":251},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[252]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660ee0"},"tech_id":{"t":"i32","v":252},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[254]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6597a8"},"tech_id":{"t":"i32","v":254},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[255]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659ef8"},"tech_id":{"t":"i32","v":255},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[256]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b9c8"},"tech_id":{"t":"i32","v":256},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[257]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bea8"},"tech_id":{"t":"i32","v":257},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[258]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659b50"},"tech_id":{"t":"i32","v":258},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":90000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[259]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bc38"},"tech_id":{"t":"i32","v":259},"kids_begin":{"t":"ptr","v":"0x0e932be8"},"kids_end":{"t":"ptr","v":"0x0e932bec"},"kids_cap":{"t":"ptr","v":"0x0e932bec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[260]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659058"},"tech_id":{"t":"i32","v":260},"kids_begin":{"t":"ptr","v":"0x0e8fe8b8"},"kids_end":{"t":"ptr","v":"0x0e8fe8c4"},"kids_cap":{"t":"ptr","v":"0x0e8fe8c4"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[261]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a780"},"tech_id":{"t":"i32","v":261},"kids_begin":{"t":"ptr","v":"0x0e8fea38"},"kids_end":{"t":"ptr","v":"0x0e8fea44"},"kids_cap":{"t":"ptr","v":"0x0e8fea44"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[262]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ce80"},"tech_id":{"t":"i32","v":262},"kids_begin":{"t":"ptr","v":"0x0e8fe9f0"},"kids_end":{"t":"ptr","v":"0x0e8fe9fc"},"kids_cap":{"t":"ptr","v":"0x0e8fe9fc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[263]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c388"},"tech_id":{"t":"i32","v":263},"kids_begin":{"t":"ptr","v":"0x0e8feae0"},"kids_end":{"t":"ptr","v":"0x0e8feaec"},"kids_cap":{"t":"ptr","v":"0x0e8feaec"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[264]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65ac60"},"tech_id":{"t":"i32","v":264},"kids_begin":{"t":"ptr","v":"0x0e8fe990"},"kids_end":{"t":"ptr","v":"0x0e8fe99c"},"kids_cap":{"t":"ptr","v":"0x0e8fe99c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":22000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":20},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[265]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a9f0"},"tech_id":{"t":"i32","v":265},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[266]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659670"},"tech_id":{"t":"i32","v":266},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[267]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b758"},"tech_id":{"t":"i32","v":267},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[268]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660c70"},"tech_id":{"t":"i32","v":268},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[270]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x049511c8"},"tech_id":{"t":"i32","v":270},"kids_begin":{"t":"ptr","v":"0x0e890e70"},"kids_end":{"t":"ptr","v":"0x0e890e88"},"kids_cap":{"t":"ptr","v":"0x0e890e88"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":17},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[271]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a8b8"},"tech_id":{"t":"i32","v":271},"kids_begin":{"t":"ptr","v":"0x0e932bc8"},"kids_end":{"t":"ptr","v":"0x0e932bd0"},"kids_cap":{"t":"ptr","v":"0x0e932bd0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[272]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b008"},"tech_id":{"t":"i32","v":272},"kids_begin":{"t":"ptr","v":"0x0e932ac8"},"kids_end":{"t":"ptr","v":"0x0e932ad0"},"kids_cap":{"t":"ptr","v":"0x0e932ad0"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[273]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65cad8"},"tech_id":{"t":"i32","v":273},"kids_begin":{"t":"ptr","v":"0x0e932c38"},"kids_end":{"t":"ptr","v":"0x0e932c40"},"kids_cap":{"t":"ptr","v":"0x0e932c40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[274]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e660520"},"tech_id":{"t":"i32","v":274},"kids_begin":{"t":"ptr","v":"0x0e932b38"},"kids_end":{"t":"ptr","v":"0x0e932b40"},"kids_cap":{"t":"ptr","v":"0x0e932b40"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[275]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a510"},"tech_id":{"t":"i32","v":275},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":60000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[276]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bd70"},"tech_id":{"t":"i32","v":276},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[277]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b140"},"tech_id":{"t":"i32","v":277},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[278]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e6592c8"},"tech_id":{"t":"i32","v":278},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[279]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c5f8"},"tech_id":{"t":"i32","v":279},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[280]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c730"},"tech_id":{"t":"i32","v":280},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[281]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659a18"},"tech_id":{"t":"i32","v":281},"kids_begin":{"t":"ptr","v":"0x00000000"},"kids_end":{"t":"ptr","v":"0x00000000"},"kids_cap":{"t":"ptr","v":"0x00000000"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":35000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[282]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659400"},"tech_id":{"t":"i32","v":282},"kids_begin":{"t":"ptr","v":"0x0e932ad8"},"kids_end":{"t":"ptr","v":"0x0e932adc"},"kids_cap":{"t":"ptr","v":"0x0e932adc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[283]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65aed0"},"tech_id":{"t":"i32","v":283},"kids_begin":{"t":"ptr","v":"0x0e932af8"},"kids_end":{"t":"ptr","v":"0x0e932afc"},"kids_cap":{"t":"ptr","v":"0x0e932afc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[284]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b278"},"tech_id":{"t":"i32","v":284},"kids_begin":{"t":"ptr","v":"0x0e932c08"},"kids_end":{"t":"ptr","v":"0x0e932c0c"},"kids_cap":{"t":"ptr","v":"0x0e932c0c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":15000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[285]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65b3b0"},"tech_id":{"t":"i32","v":285},"kids_begin":{"t":"ptr","v":"0x0e932ab8"},"kids_end":{"t":"ptr","v":"0x0e932abc"},"kids_cap":{"t":"ptr","v":"0x0e932abc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[286]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c9a0"},"tech_id":{"t":"i32","v":286},"kids_begin":{"t":"ptr","v":"0x0e932bd8"},"kids_end":{"t":"ptr","v":"0x0e932bdc"},"kids_cap":{"t":"ptr","v":"0x0e932bdc"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":25000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[287]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c4c0"},"tech_id":{"t":"i32","v":287},"kids_begin":{"t":"ptr","v":"0x0e932b58"},"kids_end":{"t":"ptr","v":"0x0e932b5c"},"kids_cap":{"t":"ptr","v":"0x0e932b5c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[288]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c250"},"tech_id":{"t":"i32","v":288},"kids_begin":{"t":"ptr","v":"0x0e932c18"},"kids_end":{"t":"ptr","v":"0x0e932c1c"},"kids_cap":{"t":"ptr","v":"0x0e932c1c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":16000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[289]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65c868"},"tech_id":{"t":"i32","v":289},"kids_begin":{"t":"ptr","v":"0x0e932b68"},"kids_end":{"t":"ptr","v":"0x0e932b6c"},"kids_cap":{"t":"ptr","v":"0x0e932b6c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":0},"cost_rp":{"t":"i32","v":2147483647},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":-1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[290]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e659dc0"},"tech_id":{"t":"i32","v":290},"kids_begin":{"t":"ptr","v":"0x0e932b78"},"kids_end":{"t":"ptr","v":"0x0e932b7c"},"kids_cap":{"t":"ptr","v":"0x0e932b7c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":13000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":19},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[291]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65a030"},"tech_id":{"t":"i32","v":291},"kids_begin":{"t":"ptr","v":"0x0e932c28"},"kids_end":{"t":"ptr","v":"0x0e932c2c"},"kids_cap":{"t":"ptr","v":"0x0e932c2c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":4},"cost_rp":{"t":"i32","v":40000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":1},"order":{"t":"i32","v":21},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"node[292]":{"after":{"t":"struct","v":{"def":{"t":"ptr","v":"0x0e65bb00"},"tech_id":{"t":"i32","v":292},"kids_begin":{"t":"ptr","v":"0x0e932b88"},"kids_end":{"t":"ptr","v":"0x0e932b8c"},"kids_cap":{"t":"ptr","v":"0x0e932b8c"},"unk10":{"t":"ptr","v":"0x00000000"},"state":{"t":"i32","v":2},"cost_rp":{"t":"i32","v":30000},"progress":{"t":"i32","v":0},"turn_available":{"t":"i32","v":1},"turn_researched":{"t":"i32","v":-1},"order":{"t":"i32","v":-1},"flag":{"t":"i32","v":1},"unk30":{"t":"ptr","v":"0x00000000"}}}},"events":{"after":{"t":"struct","v":{"turns_bytes":{"t":"i32","v":0},"turns":{"t":"i32","v":0},"next_id":{"t":"i32","v":0},"vec_begin":{"t":"ptr","v":"0x00000000"},"vec_end":{"t":"ptr","v":"0x00000000"},"vec_cap":{"t":"ptr","v":"0x00000000"}}}},"observed_techs":{"after":{"t":"struct","v":{"bytes":{"t":"i32","v":880},"vec_begin":{"t":"ptr","v":"0x1f3488e8"},"vec_end":{"t":"ptr","v":"0x1f348c58"},"vec_cap":{"t":"ptr","v":"0x1f348c58"}}}}}},"diverged":false,"diff":[],"coverage":{"guards":["player","tree_header"],"undeclared":[],"n":0}}