From a7d2cd4fa6cf4d2e39a8fa236d4f653c034d90f0 Mon Sep 17 00:00:00 2001 From: avitasia Date: Tue, 10 Feb 2026 20:54:49 -0800 Subject: [PATCH] include spellId in UPDATE_DURATION events to indicate refreshes fix guid in GetCastInfo --- EVENTS.md | 10 +- SCRIPTS.md | 2 +- nampower.map | 8046 ++++++++++++++++++------------------- nampower/auras.cpp | 14 +- nampower/main.hpp | 2 +- nampower/misc_scripts.cpp | 2 +- nampower/spellcast.cpp | 5 +- 7 files changed, 4046 insertions(+), 4035 deletions(-) diff --git a/EVENTS.md b/EVENTS.md index dc1267c..3f3df06 100644 --- a/EVENTS.md +++ b/EVENTS.md @@ -278,7 +278,7 @@ end ### BUFF_UPDATE_DURATION_SELF and DEBUFF_UPDATE_DURATION_SELF Fire when the client updates the duration of a buff or debuff on the active player. This happens when the server refreshes an aura's duration (e.g., reapplying a buff that already exists). Only fires for the active player's own auras. -**Note:** This event fires before the aura is actually added to the unit fields, so for newly added auras the spellId will not yet be present in the unit data at the time of the event. Use the BUFF/DEBUFF_ADDED_SELF events or `GetPlayerAuraDuration(auraSlot)` after the aura is applied to look up the spellId. +**Note:** This event fires before the aura is actually added to the unit fields, so for newly added auras the spellId will be 0. It will only have a value for auras that are being refreshed (i.e., the aura already exists in the slot). Use the BUFF/DEBUFF_ADDED_SELF events for tracking newly applied auras. Events: ``` @@ -290,15 +290,17 @@ Parameters: 1. int auraSlot - the raw 0-based aura slot index (0-31 for buffs, 32-47 for debuffs). This is not the slot used by GetPlayerBuff that has its own sorting, this is the raw aura slot index which is consistent with the unit data fields and the internal aura storage. 2. int durationMs - the updated duration in milliseconds 3. int expirationTimeMs - the calculated expiration time (GetWowTimeMs() + durationMs), or 0 if no duration +4. int spellId - the spell ID of the aura in this slot. Will be 0 for newly added buffs/debuffs (the slot hasn't been populated yet). Will only have a value for refreshed auras that already exist in the slot. Example: ```lua -local function onDurationUpdate(auraSlot, durationMs, expirationTimeMs) +local function onDurationUpdate(auraSlot, durationMs, expirationTimeMs, spellId) local isBuff = auraSlot < 32 local type = isBuff and "Buff" or "Debuff" + local refreshed = spellId > 0 DEFAULT_CHAT_FRAME:AddMessage(string.format( - "[%s] slot=%d duration=%dms expires=%d", - type, auraSlot, durationMs, expirationTimeMs + "[%s] slot=%d duration=%dms expires=%d spellId=%d refreshed=%s", + type, auraSlot, durationMs, expirationTimeMs, spellId, tostring(refreshed) )) end diff --git a/SCRIPTS.md b/SCRIPTS.md index 138089e..1889ee4 100644 --- a/SCRIPTS.md +++ b/SCRIPTS.md @@ -760,7 +760,7 @@ A Lua table reference with the following fields, or nil if no cast is active: - `castId` (number): Unique identifier for this cast - `spellId` (number): The spell ID being cast -- `guid` (number): Target GUID (0 if no explicit target) +- `guid` (string): Target GUID as a hex string e.g. "0x0000000000000000" ("0x0000000000000000" if no explicit target) - `castType` (number): Type of cast - 0=NORMAL, 3=CHANNEL, 4=TARGETING - `castStartS` (number): When the cast started in WoW time (seconds with decimals, e.g., 1234567.890) - `castEndS` (number): When the cast will end in WoW time (seconds with decimals) diff --git a/nampower.map b/nampower.map index b431509..567fb4a 100644 --- a/nampower.map +++ b/nampower.map @@ -1,14 +1,14 @@ nampower - Timestamp is 698b7226 (Tue Feb 10 10:00:06 2026) + Timestamp is 698c0a2f (Tue Feb 10 20:48:47 2026) Preferred load address is 10000000 Start Length Name Class 0001:00000000 000009e0H .text$di CODE - 0001:000009e0 00080150H .text$mn CODE - 0001:00080b30 000052e0H .text$x CODE - 0001:00085e10 00000a7eH .text$yd CODE + 0001:000009e0 000801a0H .text$mn CODE + 0001:00080b80 000052e0H .text$x CODE + 0001:00085e60 00000a7eH .text$yd CODE 0002:00000000 000001e0H .idata$5 DATA 0002:000001e0 00000008H .00cfg DATA 0002:000001e8 00000004H .CRT$XCA DATA @@ -1674,1089 +1674,1089 @@ 0001:000445d0 ?CastQueuedNormalSpell@Nampower@@YAXXZ 100455d0 f spellcast.cpp.obj 0001:000447c0 ?SendCastHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z 100457c0 f spellcast.cpp.obj 0001:000447f0 ?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 100457f0 f spellcast.cpp.obj - 0001:00045ec0 ?Spell_C_HandleTerrainClickHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z 10046ec0 f spellcast.cpp.obj - 0001:00045ee0 ?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 10046ee0 f spellcast.cpp.obj - 0001:00046060 ?TriggerQuickcast@Nampower@@YAXXZ 10047060 f spellcast.cpp.obj - 0001:000461c0 ?TriggerSpellCastEvent@Nampower@@YAX_NIW4CastType@@_KI@Z 100471c0 f spellcast.cpp.obj - 0001:00046210 ?TriggerSpellQueuedEvent@Nampower@@YAXW4QueueEvents@@I@Z 10047210 f spellcast.cpp.obj - 0001:00046230 ?findSpellId@CastQueue@Nampower@@QAEPAUCastSpellParams@@I@Z 10047230 f i spellcast.cpp.obj - 0001:00046270 ?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 10047270 f i spellcast.cpp.obj - 0001:00046450 ?pushFront@CastQueue@Nampower@@QAEXABUCastSpellParams@@@Z 10047450 f i spellcast.cpp.obj - 0001:00046570 ??$Get@H@CDataStore@Nampower@@QAEXAAH@Z 10047570 f i spellevents.cpp.obj - 0001:00046570 ??$Get@I@CDataStore@Nampower@@QAEXAAI@Z 10047570 f i spellchannel.cpp.obj - 0001:000465d0 ?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100475d0 f spellchannel.cpp.obj - 0001:00046be0 ?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10047be0 f spellchannel.cpp.obj - 0001:00046e90 ??$Get@F@CDataStore@Nampower@@QAEXAAF@Z 10047e90 f i spellevents.cpp.obj - 0001:00046ef0 ??$Get@_K@CDataStore@Nampower@@QAEXAA_K@Z 10047ef0 f i spellevents.cpp.obj - 0001:00046f60 ?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10047f60 f spellevents.cpp.obj - 0001:00047490 ?PeriodicAuraLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 10048490 f spellevents.cpp.obj - 0001:000476a0 ?ProcResistHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100486a0 f spellevents.cpp.obj - 0001:00047720 ?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 10048720 f spellevents.cpp.obj - 0001:00047890 ?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10048890 f spellevents.cpp.obj - 0001:00047a90 ?SpellEnergizeLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10048a90 f spellevents.cpp.obj - 0001:00047b30 ?SpellFailedOtherHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10048b30 f spellevents.cpp.obj - 0001:00047ba0 ?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 10048ba0 f spellevents.cpp.obj - 0001:000482c0 ?SpellHealingLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100492c0 f spellevents.cpp.obj - 0001:00048360 ?SpellLogMissHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10049360 f spellevents.cpp.obj - 0001:00048400 ?SpellNonMeleeDmgLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 10049400 f spellevents.cpp.obj - 0001:00048500 ?SpellOrDamageImmuneHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10049500 f spellevents.cpp.obj - 0001:00048580 ?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 10049580 f spellevents.cpp.obj - 0001:00048ab0 ?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 10049ab0 f spellevents.cpp.obj - 0001:00049720 ?TriggerAuraCastEvent@Nampower@@YAXPBUSpellRec@game@@_KQA_KE1_N@Z 1004a720 f spellevents.cpp.obj - 0001:000499f0 ?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 1004a9f0 f spellevents.cpp.obj - 0001:00049d70 ?TriggerSpellEnergizeEvent@Nampower@@YAX_K0IIIE@Z 1004ad70 f spellevents.cpp.obj - 0001:00049e30 ?TriggerSpellHealEvent@Nampower@@YAX_K0IIEE@Z 1004ae30 f spellevents.cpp.obj - 0001:00049ef0 ?TriggerSpellMissEvent@Nampower@@YAX_K0II@Z 1004aef0 f spellevents.cpp.obj - 0001:00049f60 ?findOldestWaitingForServerSpellId@CastQueue@Nampower@@QAEPAUCastSpellParams@@I@Z 1004af60 f i spellevents.cpp.obj - 0001:00049fb0 ?triggerAuraCastEventOnTarget@Nampower@@YAXPBUSpellRec@game@@HPAD1_K2II@Z 1004afb0 f spellevents.cpp.obj - 0001:0004a0a0 ??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1004b0a0 f i misc_scripts.cpp.obj - 0001:0004a0a0 ??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1004b0a0 f i spell_scripts.cpp.obj - 0001:0004a0a0 ??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1004b0a0 f i misc_scripts.cpp.obj - 0001:0004a310 ??$_Free_non_head@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@1@PAU01@@Z 1004b310 f i misc_scripts.cpp.obj - 0001:0004a310 ??$_Free_non_head@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@1@PAU01@@Z 1004b310 f i items.cpp.obj - 0001:0004a390 ??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 1004b390 f i misc_scripts.cpp.obj - 0001:0004a390 ??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 1004b390 f i dbc_fields.cpp.obj - 0001:0004a5d0 ??$destroy@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@?$_Default_allocator_traits@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@1@QAU?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@1@@Z 1004b5d0 f i misc_scripts.cpp.obj - 0001:0004a5d0 ??$destroy@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@?$_Default_allocator_traits@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@1@QAU?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@1@@Z 1004b5d0 f i items.cpp.obj - 0001:0004a620 ??$find@X@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@QAE?AV?$_List_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 1004b620 f i misc_scripts.cpp.obj - 0001:0004a720 ??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 1004b720 f i misc_scripts.cpp.obj - 0001:0004a720 ??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 1004b720 f i items.cpp.obj - 0001:0004a7d0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@QAE@XZ 1004b7d0 f i misc_scripts.cpp.obj - 0001:0004a7d0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@QAE@XZ 1004b7d0 f i items.cpp.obj - 0001:0004a7f0 ??1?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@QAE@XZ 1004b7f0 f i misc_scripts.cpp.obj - 0001:0004a7f0 ??1?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@QAE@XZ 1004b7f0 f i items.cpp.obj - 0001:0004a860 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@QAE@XZ 1004b860 f i misc_scripts.cpp.obj - 0001:0004a860 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@QAE@XZ 1004b860 f i items.cpp.obj - 0001:0004a890 ??1?$list@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 1004b890 f i misc_scripts.cpp.obj - 0001:0004a890 ??1?$list@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 1004b890 f i items.cpp.obj - 0001:0004a8b0 ?CSimpleFrame_GetNameHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1004b8b0 f misc_scripts.cpp.obj - 0001:0004aa00 ?PushTableValue@Nampower@@YAXPAIPADI@Z 1004ba00 f i misc_scripts.cpp.obj - 0001:0004aa50 ?RunQueuedScript@Nampower@@YA_NH@Z 1004ba50 f misc_scripts.cpp.obj - 0001:0004ab90 ?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 1004bb90 f misc_scripts.cpp.obj - 0001:0004ac90 ?Script_DisenchantAll@Nampower@@YAIPAI@Z 1004bc90 f misc_scripts.cpp.obj - 0001:0004b080 ?Script_GetCastInfo@Nampower@@YAIPAI@Z 1004c080 f misc_scripts.cpp.obj - 0001:0004b3e0 ?Script_GetCurrentCastingInfo@Nampower@@YAIPAI@Z 1004c3e0 f misc_scripts.cpp.obj - 0001:0004b530 ?Script_GetItemIconTexture@Nampower@@YAIPAI@Z 1004c530 f misc_scripts.cpp.obj - 0001:0004b5d0 ?Script_GetItemLevel@Nampower@@YAIPAI@Z 1004c5d0 f misc_scripts.cpp.obj - 0001:0004b680 ?Script_GetItemStats@Nampower@@YAIPAI@Z 1004c680 f misc_scripts.cpp.obj - 0001:0004ba30 ?Script_GetItemStatsField@Nampower@@YAIPAI@Z 1004ca30 f misc_scripts.cpp.obj - 0001:0004be90 ?Script_GetNampowerVersion@Nampower@@YAIPAI@Z 1004ce90 f misc_scripts.cpp.obj - 0001:0004bef0 ?Script_GetPlayerAuraDuration@Nampower@@YAIPAI@Z 1004cef0 f misc_scripts.cpp.obj - 0001:0004c010 ?Script_GetSpellIconTexture@Nampower@@YAIPAI@Z 1004d010 f misc_scripts.cpp.obj - 0001:0004c0c0 ?Script_GetUnitData@Nampower@@YAIPAI@Z 1004d0c0 f misc_scripts.cpp.obj - 0001:0004c430 ?Script_GetUnitField@Nampower@@YAIPAI@Z 1004d430 f misc_scripts.cpp.obj - 0001:0004c780 ?Script_QueueScript@Nampower@@YAIPAI@Z 1004d780 f misc_scripts.cpp.obj - 0001:0004ca80 ?Script_StartItemExport@Nampower@@YAIPAI@Z 1004da80 f misc_scripts.cpp.obj - 0001:0004ca90 ?TryDisenchant@Nampower@@YA_NXZ 1004da90 f misc_scripts.cpp.obj - 0001:0004ce20 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAEXI@Z 1004de20 f i misc_scripts.cpp.obj - 0001:0004ce20 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAEXI@Z 1004de20 f i items.cpp.obj - 0001:0004d0e0 ??$_Find_hint@I@?$_Tree@V?$_Tset_traits@IU?$less@I@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Tree_find_hint_result@PAU?$_Tree_node@IPAX@std@@@1@QAU?$_Tree_node@IPAX@1@ABI@Z 1004e0e0 f i spell_scripts.cpp.obj - 0001:0004d320 ??$_Find_lower_bound@I@?$_Tree@V?$_Tset_traits@IU?$less@I@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Tree_find_result@PAU?$_Tree_node@IPAX@std@@@1@ABI@Z 1004e320 f i spell_scripts.cpp.obj - 0001:0004d370 ?GetSpellSlotFromLuaHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@HPAI1@Z 1004e370 f spell_scripts.cpp.obj - 0001:0004d4c0 ?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 1004e4c0 f spell_scripts.cpp.obj - 0001:0004d5d0 ?Script_GetSpellIdForName@Nampower@@YAIPAI@Z 1004e5d0 f spell_scripts.cpp.obj - 0001:0004d640 ?Script_GetSpellModifiers@Nampower@@YAIPAI@Z 1004e640 f spell_scripts.cpp.obj - 0001:0004d7c0 ?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 1004e7c0 f spell_scripts.cpp.obj - 0001:0004d910 ?Script_GetSpellPower@Nampower@@YAIPAI@Z 1004e910 f spell_scripts.cpp.obj - 0001:0004da80 ?Script_GetSpellRec@Nampower@@YAIPAI@Z 1004ea80 f spell_scripts.cpp.obj - 0001:0004dec0 ?Script_GetSpellRecField@Nampower@@YAIPAI@Z 1004eec0 f spell_scripts.cpp.obj - 0001:0004e3c0 ?Script_GetSpellSlotTypeIdForName@Nampower@@YAIPAI@Z 1004f3c0 f spell_scripts.cpp.obj - 0001:0004e540 ?Script_IsSpellInRange@Nampower@@YAIPAI@Z 1004f540 f spell_scripts.cpp.obj - 0001:0004e800 ?Script_IsSpellUsable@Nampower@@YAIPAI@Z 1004f800 f spell_scripts.cpp.obj - 0001:0004e940 ?Script_QueueSpellByName@Nampower@@YAIPAI@Z 1004f940 f spell_scripts.cpp.obj - 0001:0004ea50 ?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1004fa50 f spell_scripts.cpp.obj - 0001:0004eb70 ?GetCooldownFromSpellHistory@Nampower@@YA?AUCooldownDetail@1@III@Z 1004fb70 f cooldown_scripts.cpp.obj - 0001:0004ee30 ?GetItemCooldownDetail@Nampower@@YA?AUCooldownDetail@1@I@Z 1004fe30 f cooldown_scripts.cpp.obj - 0001:0004efd0 ?PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@1@@Z 1004ffd0 f cooldown_scripts.cpp.obj - 0001:0004f500 ?Script_GetItemIdCooldown@Nampower@@YAIPAI@Z 10050500 f cooldown_scripts.cpp.obj - 0001:0004f5e0 ?Script_GetSpellIdCooldown@Nampower@@YAIPAI@Z 100505e0 f cooldown_scripts.cpp.obj - 0001:0004f6a0 ?Script_GetTrinketCooldown@Nampower@@YAIPAI@Z 100506a0 f cooldown_scripts.cpp.obj - 0001:0004f8c0 ??0CachedItemData@Nampower@@QAE@XZ 100508c0 f i item_scripts.cpp.obj - 0001:0004fd30 ?ClearBagSlot@Nampower@@YAXPAIHI@Z 10050d30 f item_scripts.cpp.obj - 0001:0004fe10 ?CreateBasicItemInfoTable@Nampower@@YAXPAIPAUCGItem@game@@@Z 10050e10 f item_scripts.cpp.obj - 0001:0004ff00 ?CreateItemInfoTable@Nampower@@YAXPAIPAUCGItem_C@game@@@Z 10050f00 f item_scripts.cpp.obj - 0001:000501b0 ?GetSingleBagItems@Nampower@@YAIPAIH@Z 100511b0 f item_scripts.cpp.obj - 0001:000505a0 ?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 100515a0 f item_scripts.cpp.obj - 0001:00050ad0 ?Script_FindPlayerItemSlot@Nampower@@YAIPAI@Z 10051ad0 f item_scripts.cpp.obj - 0001:00050c40 ?Script_GetAmmo@Nampower@@YAIPAI@Z 10051c40 f item_scripts.cpp.obj - 0001:00050dd0 ?Script_GetBagItem@Nampower@@YAIPAI@Z 10051dd0 f item_scripts.cpp.obj - 0001:000510a0 ?Script_GetBagItems@Nampower@@YAIPAI@Z 100520a0 f item_scripts.cpp.obj - 0001:00051240 ?Script_GetEquippedItem@Nampower@@YAIPAI@Z 10052240 f item_scripts.cpp.obj - 0001:000513c0 ?Script_GetEquippedItems@Nampower@@YAIPAI@Z 100523c0 f item_scripts.cpp.obj - 0001:00051540 ?Script_GetTrinkets@Nampower@@YAIPAI@Z 10052540 f item_scripts.cpp.obj - 0001:000519f0 ?Script_UseItemIdOrName@Nampower@@YAIPAI@Z 100529f0 f item_scripts.cpp.obj - 0001:00051b70 ?Script_UseTrinket@Nampower@@YAIPAI@Z 10052b70 f item_scripts.cpp.obj - 0001:00051da0 ??$_Find_last@I@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@1@ABII@Z 10052da0 f i items.cpp.obj - 0001:00051da0 ??$_Find_last@I@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@IPAX@std@@@1@ABII@Z 10052da0 f i items.cpp.obj - 0001:00051e10 ??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 10052e10 f i items.cpp.obj - 0001:00052010 ??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10053010 f i items.cpp.obj - 0001:00052200 ??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 10053200 f i items.cpp.obj - 0001:000523f0 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@IPAX@std@@@std@@@std@@QAE@XZ 100533f0 f i items.cpp.obj - 0001:000523f0 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@IPAX@std@@@std@@@std@@QAE@XZ 100533f0 f i items.cpp.obj - 0001:00052410 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@std@@@std@@QAE@XZ 10053410 f i items.cpp.obj - 0001:00052410 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@std@@@std@@QAE@XZ 10053410 f i items.cpp.obj - 0001:00052430 ??1?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@QAE@XZ 10053430 f i items.cpp.obj - 0001:000524c0 ??1?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE@XZ 100534c0 f i items.cpp.obj - 0001:00052550 ??1?$list@IV?$allocator@I@std@@@std@@QAE@XZ 10053550 f i items.cpp.obj - 0001:00052590 ??1?$list@U?$pair@$$CBIPAUItemStats_C@game@@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@2@@std@@QAE@XZ 10053590 f i items.cpp.obj - 0001:000525d0 ??_H@YGXPAXIIP6EPAX0@Z@Z 100535d0 f i items.cpp.obj - 0001:00052600 ?CacheItemNameToId@Nampower@@YAXPBDI@Z 10053600 f items.cpp.obj - 0001:00052690 ?ClearItemCaches@Nampower@@YAXXZ 10053690 f items.cpp.obj - 0001:000527f0 ?DoesItemMatch@Nampower@@YA_NIIPBD@Z 100537f0 f items.cpp.obj - 0001:000528c0 ?FindPlayerDisenchantItem@Nampower@@YA?AUPlayerItemSearchResult@1@I_N@Z 100538c0 f items.cpp.obj - 0001:00052ad0 ?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 10053ad0 f items.cpp.obj - 0001:00053110 ?GetBagPtrFromContainer@Nampower@@YAPAIPAI@Z 10054110 f items.cpp.obj - 0001:00053130 ?GetItemIdFromCache@Nampower@@YAIPBD@Z 10054130 f items.cpp.obj - 0001:00053220 ?GetItemStats@Nampower@@YAPAUItemStats_C@game@@I@Z 10054220 f items.cpp.obj - 0001:000532a0 ?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 100542a0 f items.cpp.obj - 0001:000534c0 ?LoadItem@Nampower@@YA_NI@Z 100544c0 f items.cpp.obj - 0001:00053590 ?StartItemExport@Nampower@@YAXXZ 10054590 f items.cpp.obj - 0001:000535b0 ?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 100545b0 f items.cpp.obj - 0001:00053780 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAEXI@Z 10054780 f i items.cpp.obj - 0001:000538e0 ?_Forced_rehash@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@IAEXI@Z 100548e0 f i items.cpp.obj - 0001:00053a40 ?_Unchecked_erase@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@AAEPAU?$_List_node@IPAX@2@PAU32@QAU32@@Z 10054a40 f i items.cpp.obj - 0001:00053bf0 ?clear@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAEXXZ 10054bf0 f i items.cpp.obj - 0001:00053c70 ?InitializeFieldMaps@Nampower@@YAXXZ 10054c70 f dbc_fields.cpp.obj - 0001:00053f70 ?InitializeUnitFieldMaps@Nampower@@YAXXZ 10054f70 f unit_fields.cpp.obj - 0001:00054120 ?CGBuffBar_UpdateDurationHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@EH@Z 10055120 f auras.cpp.obj - 0001:00054180 ?CGUnit_C_OnAuraAddedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z 10055180 f auras.cpp.obj - 0001:000541c0 ?CGUnit_C_OnAuraRemovedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z 100551c0 f auras.cpp.obj - 0001:00054200 ?CGUnit_C_OnAuraStacksChangedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z 10055200 f auras.cpp.obj - 0001:00054260 ?TriggerAuraEvent@Nampower@@YAXPAIII_NI@Z 10055260 f auras.cpp.obj - 0001:00054480 ?UnitCombatLogUnitDeadHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_K@Z 10055480 f auras.cpp.obj - 0001:000544d0 ??$_Emplace_reallocate@ABQAH@?$vector@PAHV?$allocator@PAH@std@@@std@@AAEPAPAHQAPAHABQAH@Z 100554d0 f i lua_refs.cpp.obj - 0001:00054630 ?CleanupAllLuaTableRefs@Nampower@@YAXXZ 10055630 f lua_refs.cpp.obj - 0001:000547a0 ?GetTableRef@Nampower@@YAXPAIAAH@Z 100557a0 f lua_refs.cpp.obj - 0001:00054820 ?AttackRoundInfo_ReadPacketHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@1@@Z 10055820 f autoattack.cpp.obj - 0001:00054bd8 __get_purecall_handler 10055bd8 f libvcruntime:purevirt.obj - 0001:00054bdf __purecall 10055bdf f libvcruntime:purevirt.obj - 0001:00054bfb ___DestructExceptionObject 10055bfb f libvcruntime:ehhelpers.obj - 0001:00054c9c ?_CallMemberFunction0@@YGXQAX0@Z 10055c9c f i libvcruntime:ehhelpers.obj - 0001:00054d01 __IsExceptionObjectToBeDestroyed 10055d01 f libvcruntime:ehhelpers.obj - 0001:00054d27 ___AdjustPointer 10055d27 f libvcruntime:ehhelpers.obj - 0001:00054d4c ___FrameUnwindFilter 10055d4c f libvcruntime:ehhelpers.obj - 0001:00054da2 ___std_terminate 10055da2 f libvcruntime:ehhelpers.obj - 0001:00054da7 ___std_exception_copy 10055da7 f libvcruntime:std_exception.obj - 0001:00054e0a ___std_exception_destroy 10055e0a f libvcruntime:std_exception.obj - 0001:00054e29 __CxxThrowException@8 10055e29 f libvcruntime:throw.obj - 0001:00054e95 ?GetRangeOfTrysToCheck@__FrameHandler3@@SA?AU?$pair@Viterator@TryBlockMap@__FrameHandler3@@V123@@std@@AAVTryBlockMap@1@HPAXPBU_s_FuncInfo@@H@Z 10055e95 f libvcruntime:trnsctrl.obj - 0001:00054f04 ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@PAXHK@Z 10055f04 f libvcruntime:trnsctrl.obj - 0001:00054f61 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PBU_s_FuncInfo@@H1@Z 10055f61 f libvcruntime:trnsctrl.obj - 0001:00055051 ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 10056051 f libvcruntime:trnsctrl.obj - 0001:00055081 ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 10056081 f libvcruntime:trnsctrl.obj - 0001:000550d5 __CatchGuardHandler 100560d5 f libvcruntime:trnsctrl.obj - 0001:00055106 __CreateFrameInfo 10056106 f libvcruntime:trnsctrl.obj - 0001:0005512a __FindAndUnlinkFrame 1005612a f libvcruntime:trnsctrl.obj - 0001:00055172 __TranslatorGuardHandler 10056172 f libvcruntime:trnsctrl.obj - 0001:00055211 ___CxxFrameHandler3 10056211 f libvcruntime:trnsctrl.obj - 0001:00055250 _memcpy 10056250 f libvcruntime:memcpy.obj - 0001:00055250 _memmove 10056250 f libvcruntime:memmove.obj - 0001:000557d0 ??0__non_rtti_object@std@@QAE@ABV01@@Z 100567d0 f i libvcruntime:rtti.obj - 0001:000557eb ??0bad_typeid@std@@QAE@ABV01@@Z 100567eb f i libvcruntime:rtti.obj - 0001:00055806 ??_E__non_rtti_object@std@@UAEPAXI@Z 10056806 f i libvcruntime:rtti.obj - 0001:00055806 ??_Ebad_function_call@std@@UAEPAXI@Z 10056806 f i libcpmt:xthrow.obj - 0001:00055806 ??_Ebad_typeid@std@@UAEPAXI@Z 10056806 f i libvcruntime:rtti.obj - 0001:00055806 ??_Einvalid_argument@std@@UAEPAXI@Z 10056806 f i libcpmt:xthrow.obj - 0001:00055806 ??_Elength_error@std@@UAEPAXI@Z 10056806 f i libcpmt:xthrow.obj - 0001:00055806 ??_Elogic_error@std@@UAEPAXI@Z 10056806 f i libcpmt:xthrow.obj - 0001:00055806 ??_Eout_of_range@std@@UAEPAXI@Z 10056806 f i libcpmt:xthrow.obj - 0001:00055806 ??_G__non_rtti_object@std@@UAEPAXI@Z 10056806 f i libvcruntime:rtti.obj - 0001:00055806 ??_Gbad_function_call@std@@UAEPAXI@Z 10056806 f i libcpmt:xthrow.obj - 0001:00055806 ??_Gbad_typeid@std@@UAEPAXI@Z 10056806 f i libvcruntime:rtti.obj - 0001:00055806 ??_Ginvalid_argument@std@@UAEPAXI@Z 10056806 f i libcpmt:xthrow.obj - 0001:00055806 ??_Glength_error@std@@UAEPAXI@Z 10056806 f i libcpmt:xthrow.obj - 0001:00055806 ??_Glogic_error@std@@UAEPAXI@Z 10056806 f i libcpmt:xthrow.obj - 0001:00055806 ??_Gout_of_range@std@@UAEPAXI@Z 10056806 f i libcpmt:xthrow.obj - 0001:00055bd7 ?__construct_from_string_literal@__non_rtti_object@std@@SA?AV12@QBD@Z 10056bd7 f i libvcruntime:rtti.obj - 0001:00055bf3 ?__construct_from_string_literal@bad_cast@std@@SA?AV12@QBD@Z 10056bf3 f i libvcruntime:rtti.obj - 0001:00055c0f ?__construct_from_string_literal@bad_typeid@std@@SA?AV12@QBD@Z 10056c0f f i libvcruntime:rtti.obj - 0001:00055c2b ___RTDynamicCast 10056c2b f libvcruntime:rtti.obj - 0001:00055d1e ___RTtypeid 10056d1e f libvcruntime:rtti.obj - 0001:00055db4 ??3@YAXPAX@Z 10056db4 f LIBCMT:delete_scalar.obj - 0001:00055db9 ___std_type_info_compare 10056db9 f libvcruntime:std_type_info.obj - 0001:00055df5 ___std_type_info_destroy_list 10056df5 f libvcruntime:std_type_info.obj - 0001:00055e18 ___std_type_info_name 10056e18 f libvcruntime:std_type_info.obj - 0001:00055ee0 _memset 10056ee0 f libvcruntime:memset.obj - 0001:00056040 _strstr 10057040 f libvcruntime:strstr.obj - 0001:000562b0 _memchr 100572b0 f libvcruntime:memchr.obj - 0001:0005635d ___vcrt_freefls@4 1005735d f libvcruntime:per_thread_data.obj - 0001:00056379 ___vcrt_freeptd_for_this_thread 10057379 f libvcruntime:per_thread_data.obj - 0001:000563a4 ___vcrt_getptd 100573a4 f libvcruntime:per_thread_data.obj - 0001:000563b2 ___vcrt_getptd_noexit 100573b2 f libvcruntime:per_thread_data.obj - 0001:00056444 ___vcrt_getptd_noinit 10057444 f libvcruntime:per_thread_data.obj - 0001:0005647b ___vcrt_initialize_ptd 1005747b f libvcruntime:per_thread_data.obj - 0001:000564ae ___vcrt_uninitialize_ptd 100574ae f libvcruntime:per_thread_data.obj - 0001:00056510 __except_handler4 10057510 f libvcruntime:chandler4.obj - 0001:00056da0 ??$TypeMatchHelper@V__FrameHandler3@@@@YAHPBU_s_HandlerType@@PBU_s_CatchableType@@PBU_s_ThrowInfo@@@Z 10057da0 f i libvcruntime:frame.obj - 0001:00056e2e ??$__InternalCxxFrameHandler@V__FrameHandler3@@@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@H1E@Z 10057e2e f i libvcruntime:frame.obj - 0001:00056f30 ??$__InternalCxxFrameHandlerWrapper@V__FrameHandler3@@@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@H1E@Z 10057f30 f i libvcruntime:frame.obj - 0001:00057191 ?FrameUnwindToEmptyState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@@Z 10058191 f libvcruntime:frame.obj - 0001:000571a9 ?FrameUnwindToState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@H@Z 100581a9 f libvcruntime:frame.obj - 0001:0005732b ?_CallMemberFunction1@@YGXQAX00@Z 1005832b f i libvcruntime:frame.obj - 0001:0005733b ?_CallMemberFunction2@@YGXQAX00H@Z 1005833b f i libvcruntime:frame.obj - 0001:0005734e ?getESTypes@__FrameHandler3@@SAPBU_s_ESTypeList@@PBU_s_FuncInfo@@@Z 1005834e f i libvcruntime:frame.obj - 0001:00057360 __CallSettingFrame@12 10058360 f libvcruntime:lowhelpr.obj - 0001:00057387 __NLG_Return 10058387 libvcruntime:lowhelpr.obj - 0001:000573ac ___except_validate_context_record 100583ac f libvcruntime:jbcxrval.obj - 0001:000573dc ??$?0$00@DName@@QAE@PBDU?$StringLifeSelector@$00@@@Z 100583dc f i libvcruntime:undname.obj - 0001:0005740f ??$?0$01@DName@@QAE@PBDU?$StringLifeSelector@$01@@@Z 1005840f f i libvcruntime:undname.obj - 0001:0005740f ??$?0$0A@@DName@@QAE@PBDU?$StringLifeSelector@$0A@@@@Z 1005840f f i libvcruntime:undname.obj - 0001:00057442 ??$?0$01@pcharNode@@QAE@PBDHU?$StringLifeSelector@$01@@@Z 10058442 f i libvcruntime:undname.obj - 0001:00057442 ??$?0$0A@@pcharNode@@QAE@PBDHU?$StringLifeSelector@$0A@@@@Z 10058442 f i libvcruntime:undname.obj - 0001:00057482 ??$append@VDNameNode@@@DName@@AAEXPBVDNameNode@@@Z 10058482 f i libvcruntime:undname.obj - 0001:00057482 ??$append@VDNameStatusNode@@@DName@@AAEXPBVDNameStatusNode@@@Z 10058482 f i libvcruntime:undname.obj - 0001:00057482 ??$append@VcharNode@@@DName@@AAEXPBVcharNode@@@Z 10058482 f i libvcruntime:undname.obj - 0001:00057482 ??$append@VpcharNode@@@DName@@AAEXPBVpcharNode@@@Z 10058482 f i libvcruntime:undname.obj - 0001:000574c3 ??$doPchar@$00@DName@@AAEXPBDH@Z 100584c3 f i libvcruntime:undname.obj - 0001:0005752f ??$doPchar@$01@DName@@AAEXPBDH@Z 1005852f f i libvcruntime:undname.obj - 0001:0005752f ??$doPchar@$0A@@DName@@AAEXPBDH@Z 1005852f f i libvcruntime:undname.obj - 0001:0005765c ??0DName@@QAE@AAPBDD@Z 1005865c f libvcruntime:undname.obj - 0001:000576e5 ??0DName@@QAE@ABUStringLiteral@@@Z 100586e5 f libvcruntime:undname.obj - 0001:0005770c ??0DName@@QAE@PAV0@@Z 1005870c f libvcruntime:undname.obj - 0001:00057753 ??0DName@@QAE@W4DNameStatus@@@Z 10058753 f libvcruntime:undname.obj - 0001:00057793 ??0DName@@QAE@_J@Z 10058793 f libvcruntime:undname.obj - 0001:0005781d ??0DName@@QAE@_K@Z 1005881d f libvcruntime:undname.obj - 0001:00057881 ??0DNameNode@@IAE@XZ 10058881 f i libvcruntime:undname.obj - 0001:0005788a ??0UnDecorator@@QAE@PBDP6APADJ@ZK@Z 1005888a f i libvcruntime:undname.obj - 0001:000578ee ??0pDNameNode@@QAE@PAVDName@@@Z 100588ee f libvcruntime:undname.obj - 0001:00057916 ??0pairNode@@QAE@PBVDNameNode@@0@Z 10058916 f i libvcruntime:undname.obj - 0001:0005793c ??2@YAPAXIAAV_HeapManager@@H@Z 1005893c f libvcruntime:undname.obj - 0001:0005795b ??4DName@@QAEAAV0@ABUStringLiteral@@@Z 1005895b f libvcruntime:undname.obj - 0001:0005797c ??4DName@@QAEAAV0@W4DNameStatus@@@Z 1005897c f libvcruntime:undname.obj - 0001:000579ae ??AReplicator@@QBE?AVDName@@H@Z 100589ae f libvcruntime:undname.obj - 0001:000579ea ??H@YA?AVDName@@ABUStringLiteral@@ABV0@@Z 100589ea f i libvcruntime:undname.obj - 0001:00057a0c ??H@YA?AVDName@@DABV0@@Z 10058a0c f i libvcruntime:undname.obj - 0001:00057a37 ??H@YA?AVDName@@W4DNameStatus@@ABV0@@Z 10058a37 f i libvcruntime:undname.obj - 0001:00057a59 ??HDName@@QBE?AV0@ABUStringLiteral@@@Z 10058a59 f libvcruntime:undname.obj - 0001:00057a7b ??HDName@@QBE?AV0@ABV0@@Z 10058a7b f libvcruntime:undname.obj - 0001:00057a9d ??HDName@@QBE?AV0@D@Z 10058a9d f libvcruntime:undname.obj - 0001:00057abf ??HDName@@QBE?AV0@W4DNameStatus@@@Z 10058abf f libvcruntime:undname.obj - 0001:00057ae1 ??YDName@@QAEAAV0@ABUStringLiteral@@@Z 10058ae1 f libvcruntime:undname.obj - 0001:00057b39 ??YDName@@QAEAAV0@ABV0@@Z 10058b39 f libvcruntime:undname.obj - 0001:00057b90 ??YDName@@QAEAAV0@D@Z 10058b90 f libvcruntime:undname.obj - 0001:00057be5 ??YDName@@QAEAAV0@W4DNameStatus@@@Z 10058be5 f libvcruntime:undname.obj - 0001:00057c25 ??YReplicator@@QAEAAV0@ABVDName@@@Z 10058c25 f libvcruntime:undname.obj - 0001:00057c65 ??_5DName@@QAEAAV0@ABV0@@Z 10058c65 f libvcruntime:undname.obj - 0001:00057c84 ?Destructor@_HeapManager@@QAEXXZ 10058c84 f i libvcruntime:undname.obj - 0001:00057cb9 ?UScore@UnDecorator@@SA?AUStringLiteral@@W4Tokens@@@Z 10058cb9 f libvcruntime:undname.obj - 0001:00057ce0 ?composeDeclaration@UnDecorator@@CA?AVDName@@ABV2@@Z 10058ce0 f i libvcruntime:undname.obj - 0001:00058a66 ?doPchar@DName@@AAEXD@Z 10059a66 f libvcruntime:undname.obj - 0001:00058a9e ?getAddressOf@UnDecorator@@CA?AVDName@@XZ 10059a9e f libvcruntime:undname.obj - 0001:00058b06 ?getArgumentList@UnDecorator@@CA?AVDName@@XZ 10059b06 f libvcruntime:undname.obj - 0001:00058c13 ?getArgumentTypes@UnDecorator@@CA?AVDName@@XZ 10059c13 f libvcruntime:undname.obj - 0001:00058d1b ?getArrayAccess@UnDecorator@@CA?AVDName@@XZ 10059d1b f libvcruntime:undname.obj - 0001:00058d8f ?getArrayObject@UnDecorator@@CA?AVDName@@XZ 10059d8f f libvcruntime:undname.obj - 0001:00058e2d ?getArrayType@UnDecorator@@CA?AVDName@@ABV2@@Z 10059e2d f i libvcruntime:undname.obj - 0001:00058fca ?getBasedType@UnDecorator@@CA?AVDName@@XZ 10059fca f libvcruntime:undname.obj - 0001:00059079 ?getBasicDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005a079 f libvcruntime:undname.obj - 0001:000595d5 ?getCallingConvention@UnDecorator@@CA?AVDName@@XZ 1005a5d5 f libvcruntime:undname.obj - 0001:0005969f ?getDataIndirectType@UnDecorator@@CA?AVDName@@ABV2@W4IndirectionKind@@0H@Z 1005a69f f libvcruntime:undname.obj - 0001:00059d5e ?getDataIndirectType@UnDecorator@@CA?AVDName@@XZ 1005ad5e f i libvcruntime:undname.obj - 0001:00059d8c ?getDataType@UnDecorator@@CA?AVDName@@PAV2@@Z 1005ad8c f libvcruntime:undname.obj - 0001:00059e63 ?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 1005ae63 f libvcruntime:undname.obj - 0001:0005a0b7 ?getDimension@UnDecorator@@CA?AVDName@@_N@Z 1005b0b7 f libvcruntime:undname.obj - 0001:0005a1be ?getDispatchTarget@UnDecorator@@CA?AVDName@@XZ 1005b1be f libvcruntime:undname.obj - 0001:0005a20f ?getECSUDataType@UnDecorator@@CA?AVDName@@XZ 1005b20f f libvcruntime:undname.obj - 0001:0005a3b9 ?getEnumType@UnDecorator@@CA?AVDName@@XZ 1005b3b9 f i libvcruntime:undname.obj - 0001:0005a4cd ?getExtendedDataIndirectType@UnDecorator@@CA?AVDName@@AAW4IndirectionKind@@AA_NH@Z 1005b4cd f libvcruntime:undname.obj - 0001:0005a6d0 ?getExternalDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005b6d0 f i libvcruntime:undname.obj - 0001:0005a735 ?getFloatingPoint@UnDecorator@@CA?AVDName@@H@Z 1005b735 f libvcruntime:undname.obj - 0001:0005a7f8 ?getFunctionIndirectType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005b7f8 f libvcruntime:undname.obj - 0001:0005aba2 ?getLastChar@DName@@QBEDXZ 1005bba2 f i libvcruntime:undname.obj - 0001:0005abc2 ?getLastChar@DNameStatusNode@@UBEDXZ 1005bbc2 f i libvcruntime:undname.obj - 0001:0005abce ?getLastChar@charNode@@UBEDXZ 1005bbce f i libvcruntime:undname.obj - 0001:0005abd2 ?getLastChar@pDNameNode@@UBEDXZ 1005bbd2 f i libvcruntime:undname.obj - 0001:0005abe0 ?getLastChar@pairNode@@UBEDXZ 1005bbe0 f i libvcruntime:undname.obj - 0001:0005ac15 ?getLastChar@pcharNode@@UBEDXZ 1005bc15 f i libvcruntime:undname.obj - 0001:0005ac27 ?getLexicalFrame@UnDecorator@@CA?AVDName@@XZ 1005bc27 f i libvcruntime:undname.obj - 0001:0005ac58 ?getMemberAccess@UnDecorator@@CA?AVDName@@XZ 1005bc58 f libvcruntime:undname.obj - 0001:0005acc8 ?getMemoryWithBuffer@_HeapManager@@QAEPAXI@Z 1005bcc8 f libvcruntime:undname.obj - 0001:0005ad32 ?getMemoryWithoutBuffer@_HeapManager@@QAEPAXI@Z 1005bd32 f libvcruntime:undname.obj - 0001:0005ad52 ?getNoexcept@UnDecorator@@CA?AVDName@@XZ 1005bd52 f libvcruntime:undname.obj - 0001:0005ad9a ?getNumberOfDimensions@UnDecorator@@CAHXZ 1005bd9a f libvcruntime:undname.obj - 0001:0005adf4 ?getOperatorName@UnDecorator@@CA?AVDName@@_NPA_N@Z 1005bdf4 f i libvcruntime:undname.obj - 0001:0005b6ba ?getPointerToMember@UnDecorator@@CA?AVDName@@XZ 1005c6ba f libvcruntime:undname.obj - 0001:0005b776 ?getPrimaryDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005c776 f libvcruntime:undname.obj - 0001:0005b9c4 ?getPtrRefDataType@UnDecorator@@CA?AVDName@@ABV2@H@Z 1005c9c4 f libvcruntime:undname.obj - 0001:0005bb31 ?getPtrRefType@UnDecorator@@CA?AVDName@@ABV2@0W4IndirectionKind@@@Z 1005cb31 f libvcruntime:undname.obj - 0001:0005bc42 ?getRestrictionSpec@UnDecorator@@CA?AVDName@@XZ 1005cc42 f libvcruntime:undname.obj - 0001:0005bd5b ?getReturnType@UnDecorator@@CA?AVDName@@PAV2@@Z 1005cd5b f libvcruntime:undname.obj - 0001:0005bd8a ?getScope@UnDecorator@@CA?AVDName@@XZ 1005cd8a f libvcruntime:undname.obj - 0001:0005c148 ?getScopedName@UnDecorator@@CA?AVDName@@XZ 1005d148 f libvcruntime:undname.obj - 0001:0005c23d ?getSignedDimension@UnDecorator@@CA?AVDName@@XZ 1005d23d f libvcruntime:undname.obj - 0001:0005c28e ?getString@DName@@QBEPADPAD0@Z 1005d28e f i libvcruntime:undname.obj - 0001:0005c2bb ?getString@DName@@QBEPADPADH@Z 1005d2bb f i libvcruntime:undname.obj - 0001:0005c310 ?getString@DNameStatusNode@@UBEPADPAD0@Z 1005d310 f i libvcruntime:undname.obj - 0001:0005c357 ?getString@charNode@@UBEPADPAD0@Z 1005d357 f i libvcruntime:undname.obj - 0001:0005c36c ?getString@pDNameNode@@UBEPADPAD0@Z 1005d36c f i libvcruntime:undname.obj - 0001:0005c383 ?getString@pairNode@@UBEPADPAD0@Z 1005d383 f i libvcruntime:undname.obj - 0001:0005c3c9 ?getString@pcharNode@@UBEPADPAD0@Z 1005d3c9 f i libvcruntime:undname.obj - 0001:0005c3e4 ?getStringEncoding@UnDecorator@@CA?AVDName@@W4PrefixKind@@H@Z 1005d3e4 f libvcruntime:undname.obj - 0001:0005c477 ?getStringHelper@@YAPADPADPBD1H@Z 1005d477 f i libvcruntime:undname.obj - 0001:0005c4a1 ?getStringObject@UnDecorator@@CA?AVDName@@XZ 1005d4a1 f libvcruntime:undname.obj - 0001:0005c50d ?getSymbolName@UnDecorator@@CA?AVDName@@XZ 1005d50d f i libvcruntime:undname.obj - 0001:0005c555 ?getTemplateArgumentList@UnDecorator@@CA?AVDName@@XZ 1005d555 f libvcruntime:undname.obj - 0001:0005c705 ?getTemplateName@UnDecorator@@CA?AVDName@@_N@Z 1005d705 f libvcruntime:undname.obj - 0001:0005c880 ?getTemplateNonTypeArgument@UnDecorator@@CA?AVDName@@XZ 1005d880 f libvcruntime:undname.obj - 0001:0005cc48 ?getTemplateTypeArgument@UnDecorator@@CA?AVDName@@XZ 1005dc48 f libvcruntime:undname.obj - 0001:0005cd59 ?getThisType@UnDecorator@@CA?AVDName@@XZ 1005dd59 f i libvcruntime:undname.obj - 0001:0005cd88 ?getThrowTypes@UnDecorator@@CA?AVDName@@XZ 1005dd88 f libvcruntime:undname.obj - 0001:0005cda7 ?getTypeEncoding@UnDecorator@@CAHXZ 1005dda7 f i libvcruntime:undname.obj - 0001:0005d0e3 ?getUndecoratedName@UnDecorator@@QAEPADPADH@Z 1005e0e3 f i libvcruntime:undname.obj - 0001:0005d204 ?getUnionObject@UnDecorator@@CA?AVDName@@XZ 1005e204 f libvcruntime:undname.obj - 0001:0005d2ab ?getVCallThunkType@UnDecorator@@CA?AVDName@@XZ 1005e2ab f i libvcruntime:undname.obj - 0001:0005d2f5 ?getValue@UnDecorator@@CA?AV?$optional@_K@std@@XZ 1005e2f5 f libvcruntime:undname.obj - 0001:0005d345 ?getValueObject@UnDecorator@@CA?AVDName@@XZ 1005e345 f libvcruntime:undname.obj - 0001:0005d471 ?getVdispMapType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005e471 f i libvcruntime:undname.obj - 0001:0005d4d2 ?getVfTableType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005e4d2 f i libvcruntime:undname.obj - 0001:0005d626 ?getZName@UnDecorator@@CA?AVDName@@_N0@Z 1005e626 f libvcruntime:undname.obj - 0001:0005d83f ?get_current_character_and_increment_buffer@UnDecorator@@CADXZ 1005e83f f i libvcruntime:undname.obj - 0001:0005d853 ?increment_buffer@UnDecorator@@CA_NI@Z 1005e853 f i libvcruntime:undname.obj - 0001:0005d87b ?isEmpty@DName@@QBEHXZ 1005e87b f i libvcruntime:undname.obj - 0001:0005d883 ?isValid@DName@@QBEHXZ 1005e883 f i libvcruntime:undname.obj - 0001:0005d88d ?length@DName@@QBEHXZ 1005e88d f i libvcruntime:undname.obj - 0001:0005d8ac ?length@DNameStatusNode@@UBEHXZ 1005e8ac f i libvcruntime:undname.obj - 0001:0005d8ac ?length@pcharNode@@UBEHXZ 1005e8ac f i libvcruntime:undname.obj - 0001:0005d8ac ?raw_length@DNameStatusNode@@UBEHXZ 1005e8ac f i libvcruntime:undname.obj - 0001:0005d8ac ?raw_length@pcharNode@@UBEHXZ 1005e8ac f i libvcruntime:undname.obj - 0001:0005d8b0 ?length@charNode@@UBEHXZ 1005e8b0 f i libvcruntime:undname.obj - 0001:0005d8b0 ?raw_length@charNode@@UBEHXZ 1005e8b0 f i libvcruntime:undname.obj - 0001:0005d8b0 __get_startup_argv_mode 1005e8b0 f i LIBCMT:argv_mode.obj - 0001:0005d8b4 ?length@pDNameNode@@UBEHXZ 1005e8b4 f i libvcruntime:undname.obj - 0001:0005d8c2 ?length@pairNode@@UBEHXZ 1005e8c2 f i libvcruntime:undname.obj - 0001:0005d90b ?make@DNameStatusNode@@SAPBV1@W4DNameStatus@@@Z 1005e90b f i libvcruntime:undname.obj - 0001:0005d927 ?parseDecoratedName@UnDecorator@@CA?AVDName@@XZ 1005e927 f libvcruntime:undname.obj - 0001:0005da22 ?raw_length@pairNode@@UBEHXZ 1005ea22 f i libvcruntime:undname.obj - 0001:0005da78 ___unDName 1005ea78 f libvcruntime:undname.obj - 0001:0005da9b ___unDNameEx 1005ea9b f libvcruntime:undname.obj - 0001:0005db40 _strchr 1005eb40 f libvcruntime:strchr.obj - 0001:0005dbae ___from_strstr_to_strchr 1005ebae libvcruntime:strchr.obj - 0001:0005dd56 ___vcrt_FlsAlloc 1005ed56 f libvcruntime:winapi_downlevel.obj - 0001:0005dd91 ___vcrt_FlsFree 1005ed91 f libvcruntime:winapi_downlevel.obj - 0001:0005ddcc ___vcrt_FlsGetValue 1005edcc f libvcruntime:winapi_downlevel.obj - 0001:0005de07 ___vcrt_FlsSetValue 1005ee07 f libvcruntime:winapi_downlevel.obj - 0001:0005de45 ___vcrt_InitializeCriticalSectionEx 1005ee45 f libvcruntime:winapi_downlevel.obj - 0001:0005de90 __local_unwind4 1005ee90 f libvcruntime:exsup4.obj - 0001:0005df80 @_EH4_CallFilterFunc@8 1005ef80 f libvcruntime:exsup4.obj - 0001:0005dfa0 @_EH4_TransferToHandler@8 1005efa0 f libvcruntime:exsup4.obj - 0001:0005dfc0 @_EH4_GlobalUnwind2@8 1005efc0 f libvcruntime:exsup4.obj - 0001:0005dfe0 @_EH4_LocalUnwind@16 1005efe0 f libvcruntime:exsup4.obj - 0001:0005dff7 _unexpected 1005eff7 f libvcruntime:unexpected.obj - 0001:0005e014 ?GetCurrentState@__FrameHandler3@@SAHPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@@Z 1005f014 f libvcruntime:ehstate.obj - 0001:0005e031 ?SetState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@H@Z 1005f031 f libvcruntime:ehstate.obj - 0001:0005e040 __NLG_Notify1 1005f040 f libvcruntime:exsup.obj - 0001:0005e050 __NLG_Notify 1005f050 f libvcruntime:exsup.obj - 0001:0005e067 __NLG_Dispatch 1005f067 libvcruntime:exsup.obj - 0001:0005e067 __NLG_Dispatch2 1005f067 libvcruntime:exsup.obj - 0001:0005e070 __NLG_Call 1005f070 f libvcruntime:exsup.obj - 0001:0005e072 __NLG_Return2 1005f072 libvcruntime:exsup.obj - 0001:0005e073 ___vcrt_initialize_locks 1005f073 f libvcruntime:locks.obj - 0001:0005e0af ___vcrt_lock 1005f0af f libvcruntime:locks.obj - 0001:0005e0c4 ___vcrt_uninitialize_locks 1005f0c4 f libvcruntime:locks.obj - 0001:0005e0f3 ___vcrt_unlock 1005f0f3 f libvcruntime:locks.obj - 0001:0005e108 ??0__crt_cached_ptd_host@@QAE@QAU__crt_locale_pointers@@@Z 1005f108 f i libucrt:invalid_parameter.obj - 0001:0005e150 ??1__crt_cached_ptd_host@@QAE@XZ 1005f150 f i libucrt:invalid_parameter.obj - 0001:0005e18c ?check_synchronize_global_state_index@__crt_cached_ptd_host@@AAEIXZ 1005f18c f i libucrt:invalid_parameter.obj - 0001:0005e1b5 ?force_synchronize_per_thread_data@__crt_cached_ptd_host@@AAEPAU__acrt_ptd@@XZ 1005f1b5 f i libucrt:invalid_parameter.obj - 0001:0005e1fb ?get_raw_ptd@__crt_cached_ptd_host@@QAEPAU__acrt_ptd@@XZ 1005f1fb f i libucrt:invalid_parameter.obj - 0001:0005e218 ___acrt_call_reportfault 1005f218 f libucrt:invalid_parameter.obj - 0001:0005e351 ___acrt_initialize_invalid_parameter_handler 1005f351 f libucrt:invalid_parameter.obj - 0001:0005e360 __invalid_parameter 1005f360 f libucrt:invalid_parameter.obj - 0001:0005e397 __invalid_parameter_internal 1005f397 f libucrt:invalid_parameter.obj - 0001:0005e414 __invalid_parameter_noinfo 1005f414 f libucrt:invalid_parameter.obj - 0001:0005e424 __invalid_parameter_noinfo_noreturn 1005f424 f libucrt:invalid_parameter.obj - 0001:0005e441 __invoke_watson 1005f441 f libucrt:invalid_parameter.obj - 0001:0005e475 ___acrt_initialize_stdio 1005f475 f libucrt:_file.obj - 0001:0005e53d ___acrt_iob_func 1005f53d f libucrt:_file.obj - 0001:0005e54d ___acrt_uninitialize_stdio 1005f54d f libucrt:_file.obj - 0001:0005e599 __get_stream_buffer_pointers 1005f599 f libucrt:_file.obj - 0001:0005e5df __lock_file 1005f5df f libucrt:_file.obj - 0001:0005e5f3 __unlock_file 1005f5f3 f libucrt:_file.obj - 0001:0005e72c _fclose 1005f72c f libucrt:fclose.obj - 0001:0005e995 ___acrt_stdio_flush_nolock 1005f995 f libucrt:fflush.obj - 0001:0005e9fe __fflush_nolock 1005f9fe f libucrt:fflush.obj - 0001:0005ea63 __flushall 1005fa63 f libucrt:fflush.obj - 0001:0005ea6c _fflush 1005fa6c f libucrt:fflush.obj - 0001:0005eabf __fgetc_nolock 1005fabf f libucrt:fgetc.obj - 0001:0005eafb _fgetc 1005fafb f libucrt:fgetc.obj - 0001:0005ec14 _fgetpos 1005fc14 f libucrt:fgetpos.obj - 0001:0005eda3 __fputc_nolock_internal 1005fda3 f libucrt:fputc.obj - 0001:0005edd0 _fputc 1005fdd0 f libucrt:fputc.obj - 0001:0005ee04 __fread_nolock_s 1005fe04 f libucrt:fread.obj - 0001:0005efdd _fread 1005ffdd f libucrt:fread.obj - 0001:0005effd _fread_s 1005fffd f libucrt:fread.obj - 0001:0005f11b _fsetpos 1006011b f libucrt:fsetpos.obj - 0001:0005f156 ?LongLongSub@@YAJ_J0PA_J@Z 10060156 f i libucrt:fseek.obj - 0001:0005f43f __fseeki64 1006043f f libucrt:fseek.obj - 0001:0005f479 _fseek 10060479 f libucrt:fseek.obj - 0001:0005f55a __fwrite_internal 1006055a f libucrt:fwrite.obj - 0001:0005f5d1 __fwrite_nolock_internal 100605d1 f libucrt:fwrite.obj - 0001:0005f778 _fwrite 10060778 f libucrt:fwrite.obj - 0001:0005f976 _setvbuf 10060976 f libucrt:setvbuf.obj - 0001:0005f9b0 __ungetc_nolock 100609b0 f libucrt:ungetc.obj - 0001:0005faa4 _ungetc 10060aa4 f libucrt:ungetc.obj - 0001:0005fb17 _free 10060b17 f libucrt:free.obj - 0001:0005fb32 ??$__acrt_convert_wcs_mbs_cp@D_WV@@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQBDAAV?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@ABV@@I@Z 10060b32 f i libucrt:rename.obj - 0001:0005fbe4 ??$__acrt_mbs_to_wcs_cp@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQBDAAV?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@I@Z 10060be4 f i libucrt:rename.obj - 0001:0005fc01 ??0_LocaleUpdate@@QAE@QAU__crt_locale_pointers@@@Z 10060c01 f i libucrt:rename.obj - 0001:0005fc83 ?__acrt_get_utf8_acp_compatibility_codepage@@YAIXZ 10060c83 f i libucrt:rename.obj - 0001:0005fcc2 ?_deallocate@?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@AAEXXZ 10060cc2 f i libucrt:argv_wildcards.obj - 0001:0005fcc2 ?_deallocate@?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@AAEXXZ 10060cc2 f i libucrt:rename.obj - 0001:0005fcdc ?allocate@?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@QAEHI@Z 10060cdc f i libucrt:rename.obj - 0001:0005fd1b ?allocate@__crt_win32_buffer_internal_dynamic_resizing@@SAHQAPAXIABV__crt_win32_buffer_empty_debug_info@@@Z 10060d1b f i libucrt:rename.obj - 0001:0005fd3a _rename 10060d3a f libucrt:rename.obj - 0001:0006016f ??$count@D@formatting_buffer@__crt_stdio_output@@QBEIXZ 1006116f f i libucrt:output.obj - 0001:00060187 ??$ensure_buffer_is_big_enough@D@formatting_buffer@__crt_stdio_output@@QAE_NIAAV__crt_cached_ptd_host@@@Z 10061187 f i libucrt:output.obj - 0001:00060208 ??$is_overflow_condition@K@__crt_strtox@@YA_NIK@Z 10061208 f i libucrt:output.obj - 0001:0006023c ??$is_wide_character_specifier@D@__crt_stdio_output@@YA_N_KDW4length_modifier@0@@Z 1006123c f i libucrt:output.obj - 0001:0006026d ??$make_c_string_character_source@DPAPAD@__crt_strtox@@YA?AV?$c_string_character_source@D@0@QBDQAPAD@Z 1006126d f i libucrt:output.obj - 0001:0006026d ??$make_c_string_character_source@_WPAPA_W@__crt_strtox@@YA?AV?$c_string_character_source@_W@0@QB_WQAPA_W@Z 1006126d f i libucrt:output.obj - 0001:00060288 ??$parse_integer@KV?$c_string_character_source@D@__crt_strtox@@$0A@@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 10061288 f i libucrt:output.obj - 0001:00060497 ??$scratch_data@D@formatting_buffer@__crt_stdio_output@@QAEPADXZ 10061497 f i libucrt:output.obj - 0001:000604b5 ??$type_case_integer@$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 100614b5 f i libucrt:output.obj - 0001:000604b5 ??$type_case_integer@$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 100614b5 f i libucrt:output.obj - 0001:00060642 ??$type_case_integer@$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 10061642 f i libucrt:output.obj - 0001:00060642 ??$type_case_integer@$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 10061642 f i libucrt:output.obj - 0001:000607cf ??$type_case_integer@$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 100617cf f i libucrt:output.obj - 0001:000607cf ??$type_case_integer@$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 100617cf f i libucrt:output.obj - 0001:0006095c ??$type_case_integer_parse_into_buffer@I$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 1006195c f i libucrt:output.obj - 0001:0006095c ??$type_case_integer_parse_into_buffer@I$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 1006195c f i libucrt:output.obj - 0001:000609bf ??$type_case_integer_parse_into_buffer@I$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 100619bf f i libucrt:output.obj - 0001:000609bf ??$type_case_integer_parse_into_buffer@I$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 100619bf f i libucrt:output.obj - 0001:00060a46 ??$type_case_integer_parse_into_buffer@I$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 10061a46 f i libucrt:output.obj - 0001:00060a46 ??$type_case_integer_parse_into_buffer@I$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 10061a46 f i libucrt:output.obj - 0001:00060ac3 ??$type_case_integer_parse_into_buffer@_K$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061ac3 f i libucrt:output.obj - 0001:00060ac3 ??$type_case_integer_parse_into_buffer@_K$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061ac3 f i libucrt:output.obj - 0001:00060b3b ??$type_case_integer_parse_into_buffer@_K$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061b3b f i libucrt:output.obj - 0001:00060b3b ??$type_case_integer_parse_into_buffer@_K$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061b3b f i libucrt:output.obj - 0001:00060be2 ??$type_case_integer_parse_into_buffer@_K$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061be2 f i libucrt:output.obj - 0001:00060be2 ??$type_case_integer_parse_into_buffer@_K$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061be2 f i libucrt:output.obj - 0001:00060c6c ??0?$output_adapter_data@DV?$string_output_adapter@D@__crt_stdio_output@@@__crt_stdio_output@@IAE@ABV?$string_output_adapter@D@1@_KQBDAAV__crt_cached_ptd_host@@QAD@Z 10061c6c f i libucrt:output.obj - 0001:00060cd3 ??1formatting_buffer@__crt_stdio_output@@QAE@XZ 10061cd3 f i libucrt:output.obj - 0001:00060ced ??4?$__crt_unique_heap_ptr@DU__crt_internal_free_policy@@@@QAEAAV0@$$QAV0@@Z 10061ced f i libucrt:output.obj - 0001:00060d11 ?crop_zeroes@__crt_stdio_output@@YAXPADQAU__crt_locale_pointers@@@Z 10061d11 f i libucrt:output.obj - 0001:00060d71 ?find_next_state@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@ABE?AW4state@2@DW432@@Z 10061d71 f i libucrt:output.obj - 0001:00060dae ?find_next_state@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@ABE?AW4state@2@DW432@@Z 10061dae f i libucrt:output.obj - 0001:00060de9 ?force_decimal_point@__crt_stdio_output@@YAXPADQAU__crt_locale_pointers@@@Z 10061de9 f i libucrt:output.obj - 0001:00060e45 ?parse_int_from_format_string@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NQAH@Z 10061e45 f i libucrt:output.obj - 0001:00060e45 ?parse_int_from_format_string@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NQAH@Z 10061e45 f i libucrt:output.obj - 0001:00060ebd ?process@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@QAEHXZ 10061ebd f i libucrt:output.obj - 0001:000611a1 ?process@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@QAEHXZ 100621a1 f i libucrt:output.obj - 0001:00061475 ?state_case_size@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062475 f i libucrt:output.obj - 0001:00061475 ?state_case_size@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062475 f i libucrt:output.obj - 0001:000615ce ?state_case_type@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100625ce f i libucrt:output.obj - 0001:000615ce ?state_case_type@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100625ce f i libucrt:output.obj - 0001:0006192d ?to_integer_size@__crt_stdio_output@@YAIW4length_modifier@1@@Z 1006292d f i libucrt:output.obj - 0001:00061981 ?type_case_Z@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062981 f i libucrt:output.obj - 0001:00061981 ?type_case_Z@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062981 f i libucrt:output.obj - 0001:000619e4 ?type_case_a@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100629e4 f i libucrt:output.obj - 0001:000619e4 ?type_case_a@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100629e4 f i libucrt:output.obj - 0001:00061b75 ?type_case_c_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 10062b75 f i libucrt:output.obj - 0001:00061b75 ?type_case_c_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 10062b75 f i libucrt:output.obj - 0001:00061c0a ?type_case_n@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062c0a f i libucrt:output.obj - 0001:00061c0a ?type_case_n@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062c0a f i libucrt:output.obj - 0001:00061c8f ?type_case_o@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062c8f f i libucrt:output.obj - 0001:00061c8f ?type_case_o@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062c8f f i libucrt:output.obj - 0001:00061cac ?type_case_p@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062cac f i libucrt:output.obj - 0001:00061cac ?type_case_p@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062cac f i libucrt:output.obj - 0001:00061cc2 ?type_case_s@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062cc2 f i libucrt:output.obj - 0001:00061cc2 ?type_case_s@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062cc2 f i libucrt:output.obj - 0001:00061d34 ?unget@?$c_string_character_source@D@__crt_strtox@@QAEXD@Z 10062d34 f i libucrt:output.obj - 0001:00061d5d ?unget@?$c_string_character_source@_W@__crt_strtox@@QAEX_W@Z 10062d5d f i libucrt:output.obj - 0001:00061d90 ?update_locale_slow@__crt_cached_ptd_host@@AAEXXZ 10062d90 f i libucrt:output.obj - 0001:00061deb ?validate@?$c_string_character_source@D@__crt_strtox@@QBE_NXZ 10062deb f i libucrt:output.obj - 0001:00061deb ?validate@?$c_string_character_source@_W@__crt_strtox@@QBE_NXZ 10062deb f i libucrt:output.obj - 0001:00061e06 ?validate@?$string_output_adapter@D@__crt_stdio_output@@QBE_NAAV__crt_cached_ptd_host@@@Z 10062e06 f i libucrt:output.obj - 0001:00061e37 ?write_string@?$string_output_adapter@D@__crt_stdio_output@@QBEXQBDHQAHAAV__crt_cached_ptd_host@@@Z 10062e37 f i libucrt:output.obj - 0001:00061e9e ___acrt_locale_get_ctype_array_value 10062e9e f i libucrt:output.obj - 0001:00061ec0 ___stdio_common_vsprintf 10062ec0 f libucrt:output.obj - 0001:00061f01 ___stdio_common_vsprintf_s 10062f01 f libucrt:output.obj - 0001:00061f42 ___acrt_errno_from_os_error 10062f42 f libucrt:errno.obj - 0001:00061f85 ___acrt_errno_map_os_error 10062f85 f libucrt:errno.obj - 0001:00061fa8 ___acrt_errno_map_os_error_ptd 10062fa8 f libucrt:errno.obj - 0001:00061fcc ___doserrno 10062fcc f libucrt:errno.obj - 0001:00061fdf __errno 10062fdf f libucrt:errno.obj - 0001:00061ff2 _frexp 10062ff2 f libucrt:frexp.obj - 0001:000620ec _calloc 100630ec f libucrt:calloc.obj - 0001:000620f7 _abort 100630f7 f libucrt:abort.obj - 0001:0006213b ??$is_overflow_condition@_K@__crt_strtox@@YA_NI_K@Z 1006313b f i libucrt:atox.obj - 0001:0006217c ??$parse_integer@KV?$c_string_character_source@D@__crt_strtox@@$00@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 1006317c f i libucrt:atox.obj - 0001:000623c3 ??$parse_integer@KV?$c_string_character_source@_W@__crt_strtox@@$00@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@_W@0@H_N@Z 100633c3 f i libucrt:atox.obj - 0001:000629d1 ??$parse_integer@_KV?$c_string_character_source@D@__crt_strtox@@$00@__crt_strtox@@YA_KAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 100639d1 f i libucrt:atox.obj - 0001:00062c99 __ischartype_l 10063c99 f i libucrt:atox.obj - 0001:00062cf0 __wtol 10063cf0 f libucrt:atox.obj - 0001:00062d2f _atoi 10063d2f f libucrt:atox.obj - 0001:00062d2f _atol 10063d2f f libucrt:atox.obj - 0001:00062d6e ??$assemble_floating_point_value_t@M@__crt_strtox@@YA?AW4SLD_STATUS@@_NH_KAAM@Z 10063d6e f i libucrt:strtod.obj - 0001:00062d9e ??$assemble_floating_point_value_t@N@__crt_strtox@@YA?AW4SLD_STATUS@@_NH_KAAN@Z 10063d9e f i libucrt:strtod.obj - 0001:00062e6f ??$convert_decimal_string_to_floating_type@M@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAM@Z 10063e6f f i libucrt:strtod.obj - 0001:00062e90 ??$convert_hexadecimal_string_to_floating_type@M@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAM@Z 10063e90 f i libucrt:strtod.obj - 0001:00062eb1 ??$parse_floating_point@V?$c_string_character_source@D@__crt_strtox@@M@__crt_strtox@@YA?AW4SLD_STATUS@@QAU__crt_locale_pointers@@V?$c_string_character_source@D@0@QAM@Z 10063eb1 f i libucrt:strtod.obj - 0001:00062f31 ??$parse_floating_point_from_source@V?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA?AW4floating_point_parse_result@0@QAU__crt_locale_pointers@@AAV?$c_string_character_source@D@0@AAUfloating_point_string@0@@Z 10063f31 f i libucrt:strtod.obj - 0001:00063349 ??$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$c_string_character_source@D@0@PBD@Z 10064349 f i libucrt:strtod.obj - 0001:000633fc ??$parse_floating_point_possible_nan@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$c_string_character_source@D@0@PBD@Z 100643fc f i libucrt:strtod.obj - 0001:00063500 ??$parse_floating_point_possible_nan_is_ind@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@0@@Z 10064500 f i libucrt:strtod.obj - 0001:0006353c ??$parse_floating_point_possible_nan_is_snan@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@0@@Z 1006453c f i libucrt:strtod.obj - 0001:00063578 ??$parse_floating_point_write_result@M@__crt_strtox@@YA?AW4SLD_STATUS@@W4floating_point_parse_result@0@ABUfloating_point_string@0@QAM@Z 10064578 f i libucrt:strtod.obj - 0001:000636e4 ??R@@QBE@XZ 100646e4 f i libucrt:strtod.obj - 0001:000636e4 ??R@@QBE@XZ 100646e4 f i libucrt:strtod.obj - 0001:000636e4 ??R@@QBE@XZ 100646e4 f i libucrt:strtod.obj - 0001:0006370a ?as_double@floating_point_value@__crt_strtox@@QBEAANXZ 1006470a f i libucrt:strtod.obj - 0001:0006372f ?as_float@floating_point_value@__crt_strtox@@QBEAAMXZ 1006472f f i libucrt:strtod.obj - 0001:00063754 ?assemble_floating_point_infinity@__crt_strtox@@YAX_NABVfloating_point_value@1@@Z 10064754 f i libucrt:strtod.obj - 0001:00063794 ?assemble_floating_point_value@__crt_strtox@@YA?AW4SLD_STATUS@@_KH_N1ABVfloating_point_value@1@@Z 10064794 f i libucrt:strtod.obj - 0001:00063aed ?assemble_floating_point_value_from_big_integer@__crt_strtox@@YA?AW4SLD_STATUS@@ABUbig_integer@1@I_N1ABVfloating_point_value@1@@Z 10064aed f i libucrt:strtod.obj - 0001:00063c7f ?assemble_floating_point_zero@__crt_strtox@@YAX_NABVfloating_point_value@1@@Z 10064c7f f i libucrt:strtod.obj - 0001:00063cb4 ?convert_decimal_string_to_floating_type_common@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@1@ABVfloating_point_value@1@@Z 10064cb4 f i libucrt:strtod.obj - 0001:00065a5a ?convert_hexadecimal_string_to_floating_type_common@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@1@ABVfloating_point_value@1@@Z 10066a5a f i libucrt:strtod.obj - 0001:00065b00 ?denormal_mantissa_mask@floating_point_value@__crt_strtox@@QBE_KXZ 10066b00 f i libucrt:strtod.obj - 0001:00065b20 ?divide@__crt_strtox@@YA_KAAUbig_integer@1@ABU21@@Z 10066b20 f i libucrt:strtod.obj - 0001:00065fcb ?normal_mantissa_mask@floating_point_value@__crt_strtox@@QBE_KXZ 10066fcb f i libucrt:strtod.obj - 0001:00065fe2 _strtof 10066fe2 f libucrt:strtod.obj - 0001:00066000 _strcspn 10067000 f libucrt:strcspn.obj - 0001:00066050 _strncmp 10067050 f libucrt:strncmp.obj - 0001:00066359 __localtime64_s 10067359 f libucrt:localtime.obj - 0001:00066364 _localeconv 10067364 f libucrt:localeconv.obj - 0001:0006638c ??$__acrt_convert_wcs_mbs_cp@_WDV@@U__crt_win32_buffer_no_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@ABV@@I@Z 1006738c f i libucrt:strftime.obj - 0001:0006644e ??$__acrt_wcs_to_mbs_cp@U__crt_win32_buffer_no_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@I@Z 1006744e f i libucrt:strftime.obj - 0001:0006646b ??R@@QBE@IQB_WQADI@Z 1006746b f i libucrt:strftime.obj - 0001:0006646b ??R@@QBE@IQB_WQADI@Z 1006746b f i libucrt:argv_wildcards.obj - 0001:0006648f ?allocate@?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@QAEHI@Z 1006748f f i libucrt:strftime.obj - 0001:000664b6 ?set_to_nullptr@?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@QAEXXZ 100674b6 f i libucrt:strftime.obj - 0001:000664ca __Gettnames 100674ca f libucrt:strftime.obj - 0001:000664cf __Strftime 100674cf f libucrt:strftime.obj - 0001:000664ef __Strftime_l 100674ef f libucrt:strftime.obj - 0001:000665ea __dclass 100675ea f libucrt:nan.obj - 0001:000665fb __dsign 100675fb f libucrt:nan.obj - 0001:0006660b __ldclass 1006760b f libucrt:nanl.obj - 0001:0006661c ___ascii_stricmp 1006761c f libucrt:stricmp.obj - 0001:00066655 __strcmpi 10067655 f libucrt:stricmp.obj - 0001:00066655 __stricmp 10067655 f libucrt:stricmp.obj - 0001:0006669e __stricmp_l 1006769e f libucrt:stricmp.obj - 0001:0006672e _strtoull 1006772e f libucrt:strtox.obj - 0001:0006677a _wcstol 1006777a f libucrt:strtox.obj - 0001:000667c0 __tolower_l 100677c0 f libucrt:tolower_toupper.obj - 0001:000668be _tolower 100678be f libucrt:tolower_toupper.obj - 0001:000668f0 __libm_sse2_sqrt_precise 100678f0 f libucrt:sqrt_sse2_precise.obj - 0001:000669f0 _ceil 100679f0 f libucrt:ceil_pentium4.obj - 0001:00066a30 __ceil_pentium4 10067a30 f libucrt:ceil_pentium4.obj - 0001:00066b0d __strnicmp 10067b0d f libucrt:strnicmp.obj - 0001:00066b7a __strnicmp_l 10067b7a f libucrt:strnicmp.obj - 0001:00066c45 _terminate 10067c45 f libucrt:terminate.obj - 0001:00066c81 _malloc 10067c81 f libucrt:malloc.obj - 0001:00066c8c _strcpy_s 10067c8c f libucrt:strcpy_s.obj - 0001:00066ce6 _wcsncmp 10067ce6 f libucrt:wcsncmp.obj - 0001:0006705e ___acrt_freeptd 1006805e f libucrt:per_thread_data.obj - 0001:0006708a ___acrt_getptd 1006808a f libucrt:per_thread_data.obj - 0001:00067145 ___acrt_getptd_head 10068145 f libucrt:per_thread_data.obj - 0001:000671db ___acrt_getptd_noexit 100681db f libucrt:per_thread_data.obj - 0001:0006728c ___acrt_getptd_noexit_explicit 1006828c f libucrt:per_thread_data.obj - 0001:0006732f ___acrt_initialize_ptd 1006832f f libucrt:per_thread_data.obj - 0001:0006735b ___acrt_uninitialize_ptd 1006835b f libucrt:per_thread_data.obj - 0001:00067475 ??0_expandlocale_locale_name_cache@@QAE@QA_WIQAU__crt_qualified_locale_data@@@Z 10068475 f i libucrt:wsetlocale.obj - 0001:000674bf ??1_expandlocale_locale_name_cache@@QAE@XZ 100684bf f i libucrt:wsetlocale.obj - 0001:00067657 ?commit_locale_name@_expandlocale_locale_name_cache@@QAEXQB_WI@Z 10068657 f i libucrt:wsetlocale.obj - 0001:0006769b ?commit_locale_name_cache_already_updated@_expandlocale_locale_name_cache@@QAEXQB_WI@Z 1006869b f i libucrt:wsetlocale.obj - 0001:000676d0 ___acrt_copy_locale_name 100686d0 f libucrt:wsetlocale.obj - 0001:00067730 ___acrt_set_locale_changed 10068730 f libucrt:wsetlocale.obj - 0001:0006773b ___acrt_uninitialize_locale 1006873b f libucrt:wsetlocale.obj - 0001:00067762 ___lc_lctowcs 10068762 f libucrt:wsetlocale.obj - 0001:000677d2 ___lc_wcstolc 100687d2 f libucrt:wsetlocale.obj - 0001:00067d04 __wcscats 10068d04 f libucrt:wsetlocale.obj - 0001:00067d45 __wsetlocale 10068d45 f libucrt:wsetlocale.obj - 0001:00068a3a __calloc_base 10069a3a f libucrt:calloc_base.obj - 0001:00068a97 __free_base 10069a97 f libucrt:free_base.obj - 0001:00068b5a ??$__crt_fast_encode_pointer@P6AHXZ@@YAP6AHXZQ6AHXZ@Z 10069b5a f i libucrt:onexit.obj - 0001:00068b5a ??$__crt_fast_encode_pointer@P6GHPA_WKJ@Z@@YAP6GHPA_WKJ@ZQ6GH0KJ@Z@Z 10069b5a f i libucrt:winapi_thunks.obj - 0001:00068b5a ??$__crt_fast_encode_pointer@PAP6AXXZ@@YAPAP6AXXZQAP6AXXZ@Z 10069b5a f i libucrt:onexit.obj - 0001:00068b5a ??$__crt_fast_encode_pointer@PAX@@YAPAXQAX@Z 10069b5a f i libucrt:winapi_thunks.obj - 0001:00068e1a ___acrt_AppPolicyGetProcessTerminationMethodInternal@4 10069e1a f libucrt:winapi_thunks.obj - 0001:00068e5a ___acrt_AreFileApisANSI@0 10069e5a f libucrt:winapi_thunks.obj - 0001:00068e79 ___acrt_CompareStringEx@36 10069e79 f libucrt:winapi_thunks.obj - 0001:00068ed6 ___acrt_EnumSystemLocalesEx@16 10069ed6 f libucrt:winapi_thunks.obj - 0001:00068f2a ___acrt_FlsAlloc@4 10069f2a f libucrt:winapi_thunks.obj - 0001:00068f69 ___acrt_FlsFree@4 10069f69 f libucrt:winapi_thunks.obj - 0001:00068fa8 ___acrt_FlsGetValue@4 10069fa8 f libucrt:winapi_thunks.obj - 0001:00068fe7 ___acrt_FlsSetValue@8 10069fe7 f libucrt:winapi_thunks.obj - 0001:00069029 ___acrt_GetDateFormatEx@28 1006a029 f libucrt:winapi_thunks.obj - 0001:00069080 ___acrt_GetLocaleInfoEx@16 1006a080 f libucrt:winapi_thunks.obj - 0001:000690bf ___acrt_GetTimeFormatEx@24 1006a0bf f libucrt:winapi_thunks.obj - 0001:00069104 ___acrt_GetUserDefaultLocaleName@8 1006a104 f libucrt:winapi_thunks.obj - 0001:00069140 ___acrt_InitializeCriticalSectionEx@12 1006a140 f libucrt:winapi_thunks.obj - 0001:0006918b ___acrt_IsValidLocaleName@4 1006a18b f libucrt:winapi_thunks.obj - 0001:000691c3 ___acrt_LCIDToLocaleName@16 1006a1c3 f libucrt:winapi_thunks.obj - 0001:00069202 ___acrt_LCMapStringEx@36 1006a202 f libucrt:winapi_thunks.obj - 0001:0006925f ___acrt_LocaleNameToLCID@8 1006a25f f libucrt:winapi_thunks.obj - 0001:00069290 ___acrt_can_use_vista_locale_apis 1006a290 f libucrt:winapi_thunks.obj - 0001:0006929b ___acrt_eagerly_load_locale_apis 1006a29b f libucrt:winapi_thunks.obj - 0001:000692d2 ___acrt_initialize_winapi_thunks 1006a2d2 f libucrt:winapi_thunks.obj - 0001:000692e6 ___acrt_uninitialize_winapi_thunks 1006a2e6 f libucrt:winapi_thunks.obj - 0001:0006931c __fcloseall 1006a31c f libucrt:closeall.obj - 0001:000693c7 ___acrt_stdio_free_buffer_nolock 1006a3c7 f libucrt:_freebuf.obj - 0001:0006956d ___acrt_initialize_lowio 1006a56d f libucrt:ioinit.obj - 0001:000695cd ___acrt_uninitialize_lowio 1006a5cd f libucrt:ioinit.obj - 0001:000695f9 __fileno 1006a5f9 f libucrt:fileno.obj - 0001:000696b1 __close_internal 1006a6b1 f libucrt:close.obj - 0001:00069754 __close_nolock 1006a754 f libucrt:close.obj - 0001:00069784 __close_nolock_internal 1006a784 f libucrt:close.obj - 0001:00069824 ?__acrt_stdio_allocate_stream@@YA?AV__crt_stdio_stream@@XZ 1006a824 f libucrt:stream.obj - 0001:0006988d ?__acrt_stdio_free_stream@@YAXV__crt_stdio_stream@@@Z 1006a88d f libucrt:stream.obj - 0001:0006998a ___acrt_initialize_locks 1006a98a f libucrt:locks.obj - 0001:000699cb ___acrt_lock 1006a9cb f libucrt:locks.obj - 0001:000699e2 ___acrt_uninitialize_locks 1006a9e2 f libucrt:locks.obj - 0001:00069a13 ___acrt_unlock 1006aa13 f libucrt:locks.obj - 0001:00069a2a __lock_locales 1006aa2a f libucrt:locks.obj - 0001:00069a38 __unlock_locales 1006aa38 f libucrt:locks.obj - 0001:00069ae3 __commit 1006aae3 f libucrt:commit.obj - 0001:0006a302 __write 1006b302 f libucrt:write.obj - 0001:0006a339 __write_internal 1006b339 f libucrt:write.obj - 0001:0006a44a __write_nolock 1006b44a f libucrt:write.obj - 0001:0006a7f5 ___acrt_stdio_refill_and_read_narrow_nolock 1006b7f5 f libucrt:_filbuf.obj - 0001:0006adf7 __ftelli64 1006bdf7 f libucrt:ftell.obj - 0001:0006ae2d __ftelli64_nolock_internal 1006be2d f libucrt:ftell.obj - 0001:0006b085 ___acrt_stdio_flush_and_write_narrow_nolock 1006c085 f libucrt:_flsbuf.obj - 0001:0006b56c __read 1006c56c f libucrt:read.obj - 0001:0006b685 __read_nolock 1006c685 f libucrt:read.obj - 0001:0006bbb8 __lseeki64 1006cbb8 f libucrt:lseek.obj - 0001:0006bbf8 __lseeki64_internal 1006cbf8 f libucrt:lseek.obj - 0001:0006bc16 __lseeki64_nolock 1006cc16 f libucrt:lseek.obj - 0001:0006bc56 __lseeki64_nolock_internal 1006cc56 f libucrt:lseek.obj - 0001:0006bc74 ___acrt_should_use_temporary_buffer 1006cc74 f libucrt:_sftbuf.obj - 0001:0006bcb2 ___acrt_stdio_begin_temporary_buffering_nolock 1006ccb2 f libucrt:_sftbuf.obj - 0001:0006bd5d ___acrt_stdio_end_temporary_buffering_nolock 1006cd5d f libucrt:_sftbuf.obj - 0001:0006bd9b ___acrt_stdio_allocate_buffer_nolock 1006cd9b f libucrt:_getbuf.obj - 0001:0006bdf7 __malloc_base 1006cdf7 f libucrt:malloc_base.obj - 0001:0006bedd ___acrt_MultiByteToWideChar 1006cedd f libucrt:multibytetowidechar.obj - 0001:0006bf07 ___acrt_update_locale_info 1006cf07 f libucrt:locale_update.obj - 0001:0006bf34 ___acrt_update_locale_info_explicit 1006cf34 f libucrt:locale_update.obj - 0001:0006bf65 ___acrt_update_multibyte_info 1006cf65 f libucrt:locale_update.obj - 0001:0006bf92 ___acrt_update_multibyte_info_explicit 1006cf92 f libucrt:locale_update.obj - 0001:0006bfc3 __wrename 1006cfc3 f libucrt:wrename.obj - 0001:0006bff0 _strnlen 1006cff0 f libucrt:strnlen.obj - 0001:0006c112 _wcsnlen 1006d112 f libucrt:strnlen.obj - 0001:0006c2c2 ?__acrt_fp_classify@@YA?AW4__acrt_fp_class@@ABN@Z 1006d2c2 f i libucrt:cvt.obj - 0001:0006cc9a ___acrt_fp_format 1006dc9a f libucrt:cvt.obj - 0001:0006ce1b __wctomb_internal 1006de1b f libucrt:wctomb.obj - 0001:0006cf85 __mbtowc_internal 1006df85 f libucrt:mbtowc.obj - 0001:0006d0b8 __get_printf_count_output 1006e0b8 f libucrt:printf_count_output.obj - 0001:0006d0cd __errcode 1006e0cd f libucrt:fpexcept.obj - 0001:0006d101 __except1 1006e101 f libucrt:fpexcept.obj - 0001:0006d1cf __handle_exc 1006e1cf f libucrt:fpexcept.obj - 0001:0006d44f __raise_exc 1006e44f f libucrt:fpexcept.obj - 0001:0006d472 __raise_exc_ex 1006e472 f libucrt:fpexcept.obj - 0001:0006d763 __set_errno_from_matherr 1006e763 f libucrt:fpexcept.obj - 0001:0006d794 __umatherr 1006e794 f libucrt:fpexcept.obj - 0001:0006d834 __decomp 1006e834 f libucrt:util.obj - 0001:0006d906 __set_exp 1006e906 f libucrt:util.obj - 0001:0006d933 __sptype 1006e933 f libucrt:util.obj - 0001:0006d996 ___set_fpsr_sse2 1006e996 f libucrt:fpctrl.obj - 0001:0006da16 __clrfp 1006ea16 f libucrt:fpctrl.obj - 0001:0006da27 __ctrlfp 1006ea27 f libucrt:fpctrl.obj - 0001:0006da51 __set_statfp 1006ea51 f libucrt:fpctrl.obj - 0001:0006daaa __statfp 1006eaaa f libucrt:fpctrl.obj - 0001:0006db07 ??$__crt_fast_decode_pointer@P6AHI@Z@@YAP6AHI@ZQ6AHI@Z@Z 1006eb07 f i libucrt:new_handler.obj - 0001:0006db07 ??$__crt_fast_decode_pointer@P6AXH@Z@@YAP6AXH@ZQ6AXH@Z@Z 1006eb07 f i libucrt:signal.obj - 0001:0006db07 ??$__crt_fast_decode_pointer@P6GXPAXK0@Z@@YAP6GXPAXK0@ZQ6GX0K0@Z@Z 1006eb07 f i libucrt:exit.obj - 0001:0006ddaf ___acrt_initialize_thread_local_exit_callback 1006edaf f libucrt:exit.obj - 0001:0006ddbe __cexit 1006edbe f libucrt:exit.obj - 0001:0006ddcd __exit 1006edcd f libucrt:exit.obj - 0001:0006dde3 __is_c_termination_complete 1006ede3 f libucrt:exit.obj - 0001:0006debc ___acrt_get_sigabrt_handler 1006eebc f libucrt:signal.obj - 0001:0006dee3 ___acrt_initialize_signal_handlers 1006eee3 f libucrt:signal.obj - 0001:0006df01 _raise 1006ef01 f libucrt:signal.obj - 0001:0006e0f3 ___pctype_func 1006f0f3 f libucrt:ctype.obj - 0001:0006e117 _iswctype 1006f117 f libucrt:iswctype.obj - 0001:0006e180 __isctype_l 1006f180 f libucrt:isctype.obj - 0001:0006e24b _fegetround 1006f24b f libucrt:fegetround.obj - 0001:0006e258 ___acrt_initialize_timeset 1006f258 f libucrt:timeset.obj - 0001:0006e28d ___daylight 1006f28d f libucrt:timeset.obj - 0001:0006e293 ___dstbias 1006f293 f libucrt:timeset.obj - 0001:0006e299 ___timezone 1006f299 f libucrt:timeset.obj - 0001:0006e29f ___tzname 1006f29f f libucrt:timeset.obj - 0001:0006e2a5 ___wide_tzname 1006f2a5 f libucrt:timeset.obj - 0001:0006e2ab __get_daylight 1006f2ab f libucrt:timeset.obj - 0001:0006e2d7 __get_dstbias 1006f2d7 f libucrt:timeset.obj - 0001:0006e303 __get_timezone 1006f303 f libucrt:timeset.obj - 0001:0006e32f ??$__crt_time_elapsed_leap_years@H@@YAHH@Z 1006f32f f i libucrt:gmtime.obj - 0001:0006e369 ??$__crt_time_is_leap_year@H@@YA_NH@Z 1006f369 f i libucrt:gmtime.obj - 0001:0006e5af __gmtime64_s 1006f5af f libucrt:gmtime.obj - 0001:0006ee79 ___tzset 1006fe79 f libucrt:tzset.obj - 0001:0006eed6 __isindst 1006fed6 f libucrt:tzset.obj - 0001:0006efba ___acrt_WideCharToMultiByte 1006ffba f libucrt:widechartomultibyte.obj - 0001:0006f026 ??1?$__crt_scoped_stack_ptr@_W@@QAE@XZ 10070026 f i libucrt:wcsftime.obj - 0001:0007008a __W_Gettnames 1007108a f libucrt:wcsftime.obj - 0001:00070786 __Wcsftime_l 10071786 f libucrt:wcsftime.obj - 0001:000708e6 __freea_crt 100718e6 f i libucrt:wcsftime.obj - 0001:00070906 __dtest 10071906 f libucrt:_test.obj - 0001:0007096a __ldtest 1007196a f libucrt:_test.obj - 0001:00070b64 ___acrt_LCMapStringA 10071b64 f libucrt:lcmapstringa.obj - 0001:00070bad ___libm_error_support 10071bad f libucrt:libm_error.obj - 0001:00070db0 _sqrt 10071db0 f libucrt:sqrt.obj - 0001:00070dbe ___acrt_initialize_sse2 10071dbe f libucrt:mathfcns.obj - 0001:00070dce __ceil_default 10071dce f libucrt:ceil.obj - 0001:00070e90 ___ascii_strnicmp 10071e90 f libucrt:_strnicm.obj - 0001:00070ef1 ___acrt_add_locale_ref 10071ef1 f libucrt:locale_refcounting.obj - 0001:00070f6e ___acrt_free_locale 10071f6e f libucrt:locale_refcounting.obj - 0001:000710b6 ___acrt_locale_add_lc_time_reference 100720b6 f libucrt:locale_refcounting.obj - 0001:000710df ___acrt_locale_free_lc_time_if_unreferenced 100720df f libucrt:locale_refcounting.obj - 0001:00071110 ___acrt_locale_release_lc_time_reference 10072110 f libucrt:locale_refcounting.obj - 0001:00071139 ___acrt_release_locale_ref 10072139 f libucrt:locale_refcounting.obj - 0001:000711ba ___acrt_update_thread_locale_data 100721ba f libucrt:locale_refcounting.obj - 0001:0007123b __updatetlocinfoEx_nolock 1007223b f libucrt:locale_refcounting.obj - 0001:00071807 ___acrt_initialize_multibyte 10072807 f libucrt:mbctype.obj - 0001:0007184f ___acrt_update_thread_multibyte_data 1007284f f libucrt:mbctype.obj - 0001:00071862 __setmbcp_nolock 10072862 f libucrt:mbctype.obj - 0001:00071a67 __seh_filter_dll 10072a67 f libucrt:exception_filter.obj - 0001:00071a87 __seh_filter_exe 10072a87 f libucrt:exception_filter.obj - 0001:00071bcd ____lc_codepage_func 10072bcd f libucrt:initctype.obj - 0001:00071bf2 ____lc_locale_name_func 10072bf2 f libucrt:initctype.obj - 0001:00071c19 ____mb_cur_max_func 10072c19 f libucrt:initctype.obj - 0001:00071c3e ___acrt_locale_initialize_ctype 10072c3e f libucrt:initctype.obj - 0001:0007209b ___acrt_locale_free_monetary 1007309b f libucrt:initmon.obj - 0001:00072199 ___acrt_locale_initialize_monetary 10073199 f libucrt:initmon.obj - 0001:000724fa ___acrt_locale_free_numeric 100734fa f libucrt:initnum.obj - 0001:00072563 ___acrt_locale_initialize_numeric 10073563 f libucrt:initnum.obj - 0001:00072a21 ___acrt_locale_free_time 10073a21 f libucrt:inittime.obj - 0001:00072b05 ___acrt_locale_initialize_time 10073b05 f libucrt:inittime.obj - 0001:00072b80 _wcscat_s 10073b80 f libucrt:wcscat_s.obj - 0001:00072bef _wcscpy_s 10073bef f libucrt:wcscpy_s.obj - 0001:00072d3b _wcsncat_s 10073d3b f libucrt:wcsncat_s.obj - 0001:00072e14 _wcsncpy_s 10073e14 f libucrt:wcsncpy_s.obj - 0001:00072e1f _wcscspn 10073e1f f libucrt:wcscspn.obj - 0001:00072e78 _wcspbrk 10073e78 f libucrt:wcspbrk.obj - 0001:00072ec6 ___acrt_GetStringTypeA 10073ec6 f libucrt:getstringtypea.obj - 0001:000736be ___acrt_get_qualified_locale 100746be f libucrt:get_qualified_locale.obj - 0001:00074033 ___acrt_get_qualified_locale_downlevel 10075033 f libucrt:getqloc_downlevel.obj - 0001:00074223 ___acrt_initialize_new_handler 10075223 f libucrt:new_handler.obj - 0001:00074232 __callnewh 10075232 f libucrt:new_handler.obj - 0001:0007425e __query_new_handler 1007525e f libucrt:new_handler.obj - 0001:000742b5 __query_new_mode 100752b5 f libucrt:new_mode.obj - 0001:000742bc ___acrt_initialize_heap 100752bc f libucrt:heap_handle.obj - 0001:000742cd ___acrt_uninitialize_heap 100752cd f libucrt:heap_handle.obj - 0001:00074327 ___acrt_DownlevelLCIDToLocaleName 10075327 f libucrt:lcidtoname_downlevel.obj - 0001:000743ca ___acrt_DownlevelLocaleNameToLCID 100753ca f libucrt:lcidtoname_downlevel.obj - 0001:000743f6 ___acrt_get_process_end_policy 100753f6 f libucrt:win_policies.obj - 0001:0007441d ___acrt_lowio_create_handle_array 1007541d f libucrt:osfinfo.obj - 0001:00074498 ___acrt_lowio_destroy_handle_array 10075498 f libucrt:osfinfo.obj - 0001:000744cd ___acrt_lowio_ensure_fh_exists 100754cd f libucrt:osfinfo.obj - 0001:0007456b ___acrt_lowio_lock_fh 1007556b f libucrt:osfinfo.obj - 0001:0007458e ___acrt_lowio_set_os_handle 1007558e f libucrt:osfinfo.obj - 0001:00074620 ___acrt_lowio_unlock_fh 10075620 f libucrt:osfinfo.obj - 0001:00074643 __alloc_osfhnd 10075643 f libucrt:osfinfo.obj - 0001:00074756 __free_osfhnd 10075756 f libucrt:osfinfo.obj - 0001:000747e7 __get_osfhandle 100757e7 f libucrt:osfinfo.obj - 0001:00074851 __isatty 10075851 f libucrt:isatty.obj - 0001:000748d3 ?__mbrtowc_utf8@__crt_mbstring@@YAIPA_WPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 100758d3 f libucrt:mbrtowc.obj - 0001:00074916 ?__mbsrtowcs_utf8@__crt_mbstring@@YAIPA_WPAPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10075916 f libucrt:mbrtowc.obj - 0001:00074a1e __putwch_nolock 10075a1e f libucrt:putwch.obj - 0001:00074b01 ___acrt_fp_strflt_to_string 10075b01 f libucrt:_fptostr.obj - 0001:00074bfb ___acrt_fltout 10075bfb f libucrt:cfout.obj - 0001:000761e3 ?__c32rtomb_utf8@__crt_mbstring@@YAIPAD_UPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 100771e3 f libucrt:c32rtomb.obj - 0001:00076293 ___acrt_has_user_matherr 10077293 f libucrt:matherr.obj - 0001:000762b0 ___acrt_initialize_user_matherr 100772b0 f libucrt:matherr.obj - 0001:000762bf ___acrt_invoke_user_matherr 100772bf f libucrt:matherr.obj - 0001:000762f5 __initterm 100772f5 f libucrt:initterm.obj - 0001:00076320 __initterm_e 10077320 f libucrt:initterm.obj - 0001:000765e0 __crt_atexit 100775e0 f libucrt:onexit.obj - 0001:000765f6 __execute_onexit_table 100775f6 f libucrt:onexit.obj - 0001:00076634 __initialize_onexit_table 10077634 f libucrt:onexit.obj - 0001:0007665d __register_onexit_function 1007765d f libucrt:onexit.obj - 0001:00076690 ___acrt_app_verifier_enabled 10077690 f libucrt:peb_access.obj - 0001:000766a2 ___acrt_is_secure_process 100776a2 f libucrt:peb_access.obj - 0001:000766b5 ___acrt_GetStringTypeW 100776b5 f libucrt:getstringtypew.obj - 0001:00076997 ___acrt_fenv_get_common_round_control 10077997 f libucrt:_fenvutils.obj - 0001:000769b9 ___acrt_fenv_get_control 100779b9 f libucrt:_fenvutils.obj - 0001:00076a39 ___acrt_fenv_get_status 10077a39 f libucrt:_fenvutils.obj - 0001:00076ae3 ___acrt_fenv_set_control 10077ae3 f libucrt:_fenvutils.obj - 0001:00076b5e ___acrt_fenv_set_status 10077b5e f libucrt:_fenvutils.obj - 0001:00076deb __wgetenv_s 10077deb f libucrt:getenv.obj - 0001:00076df6 ___ascii_wcsicmp 10077df6 f libucrt:wcsicmp.obj - 0001:00076e33 __towlower_internal 10077e33 f i libucrt:wcsicmp.obj - 0001:00076e72 __wcsicmp 10077e72 f libucrt:wcsicmp.obj - 0001:00076ebb __wcsicmp_l 10077ebb f libucrt:wcsicmp.obj - 0001:00076f73 ___strncnt 10077f73 f libucrt:strncnt.obj - 0001:00076f90 __twoToTOS 10077f90 f libucrt:common.obj - 0001:00076fa5 __load_CW 10077fa5 f libucrt:common.obj - 0001:00076fbc __convertTOStoQNaN 10077fbc f libucrt:common.obj - 0001:00076fd5 __fload_withFB 10077fd5 f libucrt:common.obj - 0001:00077018 __checkTOS_withFB 10078018 f libucrt:common.obj - 0001:0007702e __fast_exit 1007802e f libucrt:common.obj - 0001:0007703b __math_exit 1007803b f libucrt:common.obj - 0001:00077065 __check_overflow_exit 10078065 f libucrt:common.obj - 0001:00077079 __check_range_exit 10078079 f libucrt:common.obj - 0001:00077120 __CIsqrt 10078120 f libucrt:sqrt_impl.obj - 0001:00077134 __sqrt_common 10078134 libucrt:sqrt_impl.obj - 0001:000771d1 __frnd 100781d1 f libucrt:frnd.obj - 0001:000772d3 ___acrt_GetLocaleInfoA 100782d3 f libucrt:getlocaleinfoa.obj - 0001:000775b1 __itow_s 100785b1 f libucrt:xtoa.obj - 0001:000775e4 ___ascii_wcsnicmp 100785e4 f libucrt:wcsnicmp.obj - 0001:00077633 __wcsnicmp 10078633 f libucrt:wcsnicmp.obj - 0001:0007767f __wcsnicmp_l 1007867f f libucrt:wcsnicmp.obj - 0001:00077752 __query_app_type 10078752 f libucrt:report_runtime_error.obj - 0001:00077758 ?__mbrtoc32_utf8@__crt_mbstring@@YAIPA_UPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10078758 f libucrt:mbrtoc32.obj - 0001:00077928 ___dcrt_lowio_ensure_console_output_initialized 10078928 f libucrt:initcon.obj - 0001:00077947 ___dcrt_terminate_console_output 10078947 f libucrt:initcon.obj - 0001:0007795e ___dcrt_write_console 1007895e f libucrt:initcon.obj - 0001:000779b3 __controlfp_s 100789b3 f libucrt:contrlfp.obj - 0001:00077a12 _fegetenv 10078a12 f libucrt:fegetenv.obj - 0001:00077a2f _fesetenv 10078a2f f libucrt:fesetenv.obj - 0001:00077a7b _feholdexcept 10078a7b f libucrt:feholdexcept.obj - 0001:00077ad0 __CIlog10 10078ad0 f libucrt:log10_impl.obj - 0001:00077b0b __CIlog10_default 10078b0b f libucrt:log10_impl.obj - 0001:00077b1f __log10_default 10078b1f libucrt:log10_impl.obj - 0001:00077be0 ?reset_and_return@__crt_mbstring@@YAIIPAU_Mbstatet@@@Z 10078be0 f libucrt:common_utf8.obj - 0001:00077bf4 ?return_illegal_sequence@__crt_mbstring@@YAIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10078bf4 f libucrt:common_utf8.obj - 0001:00077c16 __recalloc_base 10078c16 f libucrt:recalloc.obj - 0001:00077c83 __wcsnicoll 10078c83 f libucrt:wcsnicol.obj - 0001:00077cf0 __wcsnicoll_l 10078cf0 f libucrt:wcsnicol.obj - 0001:00078171 ___dcrt_get_or_create_wide_environment_nolock 10079171 f libucrt:environment_initialization.obj - 0001:00078176 ___dcrt_uninitialize_environments_nolock 10079176 f libucrt:environment_initialization.obj - 0001:000781c7 __initialize_narrow_environment 100791c7 f libucrt:environment_initialization.obj - 0001:000781cc __towlower_l 100791cc f libucrt:towlower.obj - 0001:000782a0 __startTwoArgErrorHandling 100792a0 f libucrt:genexcep.obj - 0001:000782b7 __startOneArgErrorHandling 100792b7 f libucrt:genexcep.obj - 0001:00078300 __trandisp1 10079300 f libucrt:87disp.obj - 0001:00078375 __trandisp2 10079375 f libucrt:87disp.obj - 0001:0007840f __rttospopde 1007940f libucrt:87disp.obj - 0001:00078414 __rttospop 10079414 libucrt:87disp.obj - 0001:00078420 __rtnospop 10079420 f libucrt:87disp.obj - 0001:00078430 __rttosnpop 10079430 f libucrt:87disp.obj - 0001:00078431 __rtnospopde 10079431 libucrt:87disp.obj - 0001:00078438 __rtzeropop 10079438 libucrt:87disp.obj - 0001:0007843a __rtzeronpop 1007943a libucrt:87disp.obj - 0001:00078440 __rtzerospop 10079440 f libucrt:87disp.obj - 0001:0007844d __rtonepop 1007944d libucrt:87disp.obj - 0001:00078450 __rtonenpop 10079450 f libucrt:87disp.obj - 0001:00078460 __tosnan1 10079460 f libucrt:87disp.obj - 0001:00078490 __nosnan2 10079490 f libucrt:87disp.obj - 0001:000784a0 __tosnan2 100794a0 f libucrt:87disp.obj - 0001:000784d0 __nan2 100794d0 f libucrt:87disp.obj - 0001:00078510 __rtindfpop 10079510 f libucrt:87disp.obj - 0001:00078512 __rtindfnpop 10079512 libucrt:87disp.obj - 0001:00078523 __rttosnpopde 10079523 libucrt:87disp.obj - 0001:00078530 __rtatan2inf 10079530 f libucrt:87disp.obj - 0001:0007854d __rtchsifneg 1007954d libucrt:87disp.obj - 0001:0007860b _strncpy_s 1007960b f libucrt:strncpy_s.obj - 0001:000786bd __clearfp 100796bd f libucrt:ieee87.obj - 0001:0007879b __control87 1007979b f libucrt:ieee87.obj - 0001:00078b40 __CIlog10_pentium4 10079b40 f libucrt:log10_pentium4.obj - 0001:00078b58 __log10_pentium4 10079b58 libucrt:log10_pentium4.obj - 0001:00078df0 __fFEXP 10079df0 f libucrt:87tran.obj - 0001:00078e47 __rtinfpopse 10079e47 libucrt:87tran.obj - 0001:00078e49 __rtinfnpopse 10079e49 libucrt:87tran.obj - 0001:00078e59 __fFLN 10079e59 libucrt:87tran.obj - 0001:00078f0e __rtinfpop 10079f0e libucrt:87tran.obj - 0001:00078f10 __rtinfnpop 10079f10 libucrt:87tran.obj - 0001:00078f20 __rtforexpinf 10079f20 f libucrt:87tran.obj - 0001:00078f2d __ffexpm1 10079f2d libucrt:87tran.obj - 0001:00078fd9 __msize_base 10079fd9 f libucrt:msize.obj - 0001:0007900c __realloc_base 1007a00c f libucrt:realloc_base.obj - 0001:00079075 ___acrt_CompareStringW 1007a075 f libucrt:comparestringw.obj - 0001:00079111 ___dcrt_get_narrow_environment_from_os 1007a111 f libucrt:get_environment_from_os.obj - 0001:000791b1 ___dcrt_get_wide_environment_from_os 1007a1b1 f libucrt:get_environment_from_os.obj - 0001:000795ba ___dcrt_set_variable_in_wide_environment_nolock 1007a5ba f libucrt:setenv.obj - 0001:000795c5 ___acrt_LCMapStringW 1007a5c5 f libucrt:lcmapstringw.obj - 0001:00079603 __87except 1007a603 f libucrt:87except.obj - 0001:00079713 __d_inttype 1007a713 f libucrt:powhlp.obj - 0001:0007977b __powhlp 1007a77b f libucrt:powhlp.obj - 0001:00079b49 _mbstowcs_s 1007ab49 f libucrt:mbstowcs.obj - 0001:00079b86 __fpclass 1007ab86 f libucrt:ieeemisc.obj - 0001:00079c2a _CreateToolhelp32Snapshot@8 1007ac2a f kernel32:KERNEL32.dll - 0001:00079c30 _Thread32First@8 1007ac30 f kernel32:KERNEL32.dll - 0001:00079c36 _Thread32Next@8 1007ac36 f kernel32:KERNEL32.dll - 0001:00079c3c ??0_Init_locks@std@@QAE@XZ 1007ac3c f libcpmt:xlock.obj - 0001:00079c69 ??0_Lockit@std@@QAE@H@Z 1007ac69 f libcpmt:xlock.obj - 0001:00079c9a ??1_Init_locks@std@@QAE@XZ 1007ac9a f libcpmt:xlock.obj - 0001:00079cc1 ??1_Lockit@std@@QAE@XZ 1007acc1 f libcpmt:xlock.obj - 0001:00079ce0 ??0bad_function_call@std@@QAE@ABV01@@Z 1007ace0 f i libcpmt:xthrow.obj - 0001:00079cfb ??0bad_function_call@std@@QAE@XZ 1007acfb f i libcpmt:xthrow.obj - 0001:00079d0c ??0invalid_argument@std@@QAE@ABV01@@Z 1007ad0c f i libcpmt:xthrow.obj - 0001:00079d27 ??0invalid_argument@std@@QAE@PBD@Z 1007ad27 f i libcpmt:xthrow.obj - 0001:00079d46 ??0length_error@std@@QAE@ABV01@@Z 1007ad46 f i libcpmt:xthrow.obj - 0001:00079d61 ??0length_error@std@@QAE@PBD@Z 1007ad61 f i libcpmt:xthrow.obj - 0001:00079d80 ??0logic_error@std@@QAE@ABV01@@Z 1007ad80 f i libcpmt:xthrow.obj - 0001:00079d9b ??0out_of_range@std@@QAE@ABV01@@Z 1007ad9b f i libcpmt:xthrow.obj - 0001:00079db6 ??0out_of_range@std@@QAE@PBD@Z 1007adb6 f i libcpmt:xthrow.obj - 0001:00079dd5 ??0runtime_error@std@@QAE@PBD@Z 1007add5 f i libcpmt:xthrow.obj - 0001:00079df4 ?_Xbad_alloc@std@@YAXXZ 1007adf4 f libcpmt:xthrow.obj - 0001:00079df4 ?__scrt_throw_std_bad_alloc@@YAXXZ 1007adf4 f LIBCMT:throw_bad_alloc.obj - 0001:00079e11 ?_Xbad_function_call@std@@YAXXZ 1007ae11 f libcpmt:xthrow.obj - 0001:00079e2e ?_Xinvalid_argument@std@@YAXPBD@Z 1007ae2e f libcpmt:xthrow.obj - 0001:00079e4e ?_Xlength_error@std@@YAXPBD@Z 1007ae4e f libcpmt:xthrow.obj - 0001:00079e6e ?_Xout_of_range@std@@YAXPBD@Z 1007ae6e f libcpmt:xthrow.obj - 0001:00079e8e ?_Xruntime_error@std@@YAXPBD@Z 1007ae8e f libcpmt:xthrow.obj - 0001:00079eae ?what@bad_function_call@std@@UBEPBDXZ 1007aeae f i libcpmt:xthrow.obj - 0001:00079eb4 ?_Syserror_map@std@@YAPBDH@Z 1007aeb4 f libcpmt:syserror.obj - 0001:00079ed9 ??0_Locimp@locale@std@@AAE@_N@Z 1007aed9 f i libcpmt:locale0.obj - 0001:00079f1a ??1_Fac_node@std@@QAE@XZ 1007af1a f i libcpmt:locale0.obj - 0001:00079f4b ??1_Fac_tidy_reg_t@std@@QAE@XZ 1007af4b f i libcpmt:locale0.obj - 0001:00079f72 ??1_Locimp@locale@std@@MAE@XZ 1007af72 f i libcpmt:locale0.obj - 0001:00079f9d ??4?$_Yarn@D@std@@QAEAAV01@PBD@Z 1007af9d f i libcpmt:locale0.obj - 0001:00079ff1 ??_E_Locimp@locale@std@@MAEPAXI@Z 1007aff1 f i libcpmt:locale0.obj - 0001:00079ff1 ??_G_Locimp@locale@std@@MAEPAXI@Z 1007aff1 f i libcpmt:locale0.obj - 0001:0007a013 ?_Facet_Register@std@@YAXPAV_Facet_base@1@@Z 1007b013 f libcpmt:locale0.obj - 0001:0007a03f ?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ 1007b03f f libcpmt:locale0.obj - 0001:0007a045 ?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 1007b045 f libcpmt:locale0.obj - 0001:0007a0d2 ?_Locimp_dtor@_Locimp@locale@std@@CAXPAV123@@Z 1007b0d2 f libcpmt:locale0.obj - 0001:0007a143 ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@PBD@Z 1007b143 f libcpmt:locale0.obj - 0001:0007a18e ?_Locinfo_dtor@_Locinfo@std@@SAXPAV12@@Z 1007b18e f libcpmt:locale0.obj - 0001:0007a1a8 ?_New_Locimp@_Locimp@locale@std@@CAPAV123@_N@Z 1007b1a8 f libcpmt:locale0.obj - 0001:0007a1cb ?_Setgloballocale@locale@std@@CAXPAX@Z 1007b1cb f libcpmt:locale0.obj - 0001:0007a1f3 __Deletegloballocale 1007b1f3 f libcpmt:locale0.obj - 0001:0007a258 __Getctype 1007b258 f libcpmt:_tolower.obj - 0001:0007a2c3 __Tolower 1007b2c3 f libcpmt:_tolower.obj - 0001:0007a3cf __Toupper 1007b3cf f libcpmt:_toupper.obj - 0001:0007a4db ?_Addstd@ios_base@std@@SAXPAV12@@Z 1007b4db f libcpmt:ios.obj - 0001:0007a527 ?_Callfns@ios_base@std@@AAEXW4event@12@@Z 1007b527 f i libcpmt:ios.obj - 0001:0007a55a ?_Ios_base_dtor@ios_base@std@@CAXPAV12@@Z 1007b55a f libcpmt:ios.obj - 0001:0007a59a ?_Tidy@ios_base@std@@AAEXXZ 1007b59a f i libcpmt:ios.obj - 0001:0007a615 ?uncaught_exception@std@@YA_NXZ 1007b615 f libcpmt:uncaught_exception.obj - 0001:0007a61a ___std_init_once_link_alternate_names_and_abort@0 1007b61a f libcpmt:xonce2.obj - 0001:0007a61f __Query_perf_counter 1007b61f f libcpmt:xtime.obj - 0001:0007a636 __Query_perf_frequency 1007b636 f libcpmt:xtime.obj - 0001:0007a673 __Xtime_get_ticks 1007b673 f libcpmt:xtime.obj - 0001:0007a69a __Getcvt 1007b69a f libcpmt:xwctomb.obj - 0001:0007a78a ?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z 1007b78a f libcpmt:fiopen.obj - 0001:0007a793 ?setw@std@@YA?AU?$_Smanip@_J@1@_J@Z 1007b793 f libcpmt:iomanip.obj - 0001:0007a7c1 __Mtxdst 1007b7c1 f libcpmt:xmtx.obj - 0001:0007a7cf __Mtxinit 1007b7cf f libcpmt:xmtx.obj - 0001:0007a7e4 __Mtxlock 1007b7e4 f libcpmt:xmtx.obj - 0001:0007a7f2 __Mtxunlock 1007b7f2 f libcpmt:xmtx.obj - 0001:0007a800 ??1_Init_atexit@@QAE@XZ 1007b800 f i libcpmt:iosptrs.obj - 0001:0007a868 ?_Atexit@@YAXP6AXXZ@Z 1007b868 f libcpmt:iosptrs.obj - 0001:0007a897 ___crtLCMapStringA 1007b897 f libcpmt:StlLCMapStringA.obj - 0001:0007aaa8 ___crtGetSystemTimePreciseAsFileTime 1007baa8 f libcpmt:winapisupp.obj - 0001:0007aafd ??2@YAPAXI@Z 1007bafd f LIBCMT:new_scalar.obj - 0001:0007ab2d ??3@YAXPAXI@Z 1007bb2d f LIBCMT:delete_scalar_size.obj - 0001:0007ab3b ??_V@YAXPAX@Z 1007bb3b f LIBCMT:delete_array.obj - 0001:0007ab84 ___scrt_acquire_startup_lock 1007bb84 f LIBCMT:utility.obj - 0001:0007abb6 ___scrt_dllmain_after_initialize_c 1007bbb6 f LIBCMT:utility.obj - 0001:0007abe1 ___scrt_dllmain_before_initialize_c 1007bbe1 f LIBCMT:utility.obj - 0001:0007abef ___scrt_dllmain_crt_thread_attach 1007bbef f LIBCMT:utility.obj - 0001:0007ac0e ___scrt_dllmain_crt_thread_detach 1007bc0e f LIBCMT:utility.obj - 0001:0007ac1b ___scrt_dllmain_exception_filter 1007bc1b f LIBCMT:utility.obj - 0001:0007ac4f ___scrt_dllmain_uninitialize_c 1007bc4f f LIBCMT:utility.obj - 0001:0007ac72 ___scrt_dllmain_uninitialize_critical 1007bc72 f LIBCMT:utility.obj - 0001:0007ac7f ___scrt_initialize_crt 1007bc7f f LIBCMT:utility.obj - 0001:0007acb8 ___scrt_initialize_onexit_tables 1007bcb8 f LIBCMT:utility.obj - 0001:0007ad3f ___scrt_is_nonwritable_in_current_image 1007bd3f f LIBCMT:utility.obj - 0001:0007add3 ___scrt_release_startup_lock 1007bdd3 f LIBCMT:utility.obj - 0001:0007adf0 ___scrt_uninitialize_crt 1007bdf0 f LIBCMT:utility.obj - 0001:0007ae18 __onexit 1007be18 f LIBCMT:utility.obj - 0001:0007ae45 _atexit 1007be45 f LIBCMT:utility.obj - 0001:0007ae5a @__security_check_cookie@4 1007be5a f LIBCMT:secchk.obj - 0001:0007ae68 ??_Etype_info@@UAEPAXI@Z 1007be68 f i LIBCMT:std_type_info_static.obj - 0001:0007ae68 ??_Gtype_info@@UAEPAXI@Z 1007be68 f i LIBCMT:std_type_info_static.obj - 0001:0007ae8b ??_U@YAPAXI@Z 1007be8b f LIBCMT:new_array.obj - 0001:0007aea0 __allshl 1007bea0 f LIBCMT:llshl.obj - 0001:0007aec0 __aullshr 1007bec0 f LIBCMT:ullshr.obj - 0001:0007aedf __Init_thread_abort 1007bedf f LIBCMT:thread_safe_statics.obj - 0001:0007af0a __Init_thread_footer 1007bf0a f LIBCMT:thread_safe_statics.obj - 0001:0007af5b __Init_thread_header 1007bf5b f LIBCMT:thread_safe_statics.obj - 0001:0007afaa __Init_thread_wait_v2 1007bfaa f LIBCMT:thread_safe_statics.obj - 0001:0007afc0 __alldiv 1007bfc0 f LIBCMT:lldiv.obj - 0001:0007b070 __alldvrm 1007c070 f LIBCMT:lldvrm.obj - 0001:0007b150 __allmul 1007c150 f LIBCMT:llmul.obj - 0001:0007b190 __allrem 1007c190 f LIBCMT:llrem.obj - 0001:0007b242 ?__scrt_initialize_type_info@@YAXXZ 1007c242 f LIBCMT:tncleanup.obj - 0001:0007b24e ?__scrt_uninitialize_type_info@@YAXXZ 1007c24e f LIBCMT:tncleanup.obj - 0001:0007b260 __ftol3 1007c260 f LIBCMT:ftol3.obj - 0001:0007b2d0 __dtoul3 1007c2d0 f LIBCMT:ftol3.obj - 0001:0007b380 __dtoul3_legacy 1007c380 f LIBCMT:ftol3.obj - 0001:0007b3b0 __dtol3 1007c3b0 f LIBCMT:ftol3.obj - 0001:0007b460 __ultod3 1007c460 f LIBCMT:ftol3.obj - 0001:0007b4b0 __ltod3 1007c4b0 f LIBCMT:ftol3.obj - 0001:0007b832 __DllMainCRTStartup@12 1007c832 f LIBCMT:dll_dllmain.obj - 0001:0007b860 __SEH_prolog4 1007c860 f LIBCMT:sehprolg4.obj - 0001:0007b8a5 @_guard_check_icall@4 1007c8a5 f i LIBCMT:checkcfg.obj - 0001:0007b8ab ___isa_available_init 1007c8ab f LIBCMT:cpu_disp.obj - 0001:0007bbe0 __FindPESection 1007cbe0 f LIBCMT:pesect.obj - 0001:0007bc30 __IsNonwritableInCurrentImage 1007cc30 f LIBCMT:pesect.obj - 0001:0007bcf0 __ValidateImageBase 1007ccf0 f LIBCMT:pesect.obj - 0001:0007bd21 __EH_epilog3 1007cd21 f LIBCMT:ehprolg3.obj - 0001:0007bd35 __EH_prolog3 1007cd35 f LIBCMT:ehprolg3.obj - 0001:0007bd68 __EH_prolog3_catch 1007cd68 f LIBCMT:ehprolg3.obj - 0001:0007bda0 __aulldvrm 1007cda0 f LIBCMT:ulldvrm.obj - 0001:0007be35 ___scrt_fastfail 1007ce35 f LIBCMT:utility_desktop.obj - 0001:0007bf4a __crt_debugger_hook 1007cf4a f LIBCMT:utility_desktop.obj - 0001:0007bf60 __aulldiv 1007cf60 f LIBCMT:ulldiv.obj - 0001:0007bfd0 __aullrem 1007cfd0 f LIBCMT:ullrem.obj - 0001:0007c045 ___raise_securityfailure 1007d045 f LIBCMT:gs_report.obj - 0001:0007c06d ___report_gsfailure 1007d06d f LIBCMT:gs_report.obj - 0001:0007c168 ___report_rangecheckfailure 1007d168 f LIBCMT:gs_report.obj - 0001:0007c175 ___report_securityfailure 1007d175 f LIBCMT:gs_report.obj - 0001:0007c250 __alloca_probe 1007d250 f LIBCMT:chkstk.obj - 0001:0007c250 __chkstk 1007d250 f LIBCMT:chkstk.obj - 0001:0007c280 __alloca_probe_16 1007d280 f LIBCMT:alloca16.obj - 0001:0007c296 __alloca_probe_8 1007d296 LIBCMT:alloca16.obj - 0001:0007c2b0 __ftol2_sse 1007d2b0 f LIBCMT:ftol2.obj - 0001:0007c2c0 __ftoi2 1007d2c0 f LIBCMT:ftol2.obj - 0001:0007c33c ?__scrt_throw_std_bad_array_new_length@@YAXXZ 1007d33c f LIBCMT:throw_bad_alloc.obj - 0001:0007c359 ___scrt_is_ucrt_dll_in_use 1007d359 f LIBCMT:ucrt_detection.obj - 0001:0007c3b2 ___security_init_cookie 1007d3b2 f LIBCMT:gs_support.obj - 0001:0007c3fd _DllMain@12 1007d3fd f LIBCMT:dll_dllmain_stub.obj - 0001:0007c403 ___local_stdio_scanf_options 1007d403 f i LIBCMT:default_local_stdio_options.obj - 0001:0007c409 ___scrt_initialize_default_local_stdio_options 1007d409 f LIBCMT:default_local_stdio_options.obj - 0001:0007c426 ___scrt_get_dyn_tls_init_callback 1007d426 f LIBCMT:dyn_tls_init.obj - 0001:0007c42c __RTC_Initialize 1007d42c f LIBCMT:initsect.obj - 0001:0007c458 __RTC_Terminate 1007d458 f LIBCMT:initsect.obj - 0001:0007c484 _memcmp 1007d484 f libvcruntime:memcmp.obj - 0001:0007db10 _strrchr 1007eb10 f libvcruntime:strrchr.obj - 0001:0007dc47 _wcschr 1007ec47 f libvcruntime:wcschr.obj - 0001:0007dce8 ___uncaught_exception 1007ece8 f libvcruntime:uncaught_exception.obj - 0001:0007dcfc ___vcrt_initialize 1007ecfc f libvcruntime:initialization.obj - 0001:0007dd1b ___vcrt_thread_attach 1007ed1b f libvcruntime:initialization.obj - 0001:0007dd26 ___vcrt_thread_detach 1007ed26 f libvcruntime:initialization.obj - 0001:0007dd2e ___vcrt_uninitialize 1007ed2e f libvcruntime:initialization.obj - 0001:0007dd45 ___vcrt_uninitialize_critical 1007ed45 f libvcruntime:initialization.obj - 0001:0007dfa2 _setlocale 1007efa2 f libucrt:setlocale.obj - 0001:0007dfe0 _islower 1007efe0 f libucrt:_ctype.obj - 0001:0007e070 _isupper 1007f070 f libucrt:_ctype.obj - 0001:0007e0f4 __wcsdup 1007f0f4 f libucrt:wcsdup.obj - 0001:0007e20a __fsopen 1007f20a f libucrt:fopen.obj - 0001:0007e4c6 ___acrt_allocate_buffer_for_argv 1007f4c6 f libucrt:argv_parsing.obj - 0001:0007e515 __configure_narrow_argv 1007f515 f libucrt:argv_parsing.obj - 0001:0007e61b ___acrt_initialize 1007f61b f libucrt:initialization.obj - 0001:0007e62d ___acrt_thread_attach 1007f62d f libucrt:initialization.obj - 0001:0007e638 ___acrt_thread_detach 1007f638 f libucrt:initialization.obj - 0001:0007e640 ___acrt_uninitialize 1007f640 f libucrt:initialization.obj - 0001:0007e670 ___acrt_uninitialize_critical 1007f670 f libucrt:initialization.obj - 0001:0007e9fe __wcstombs_s_l 1007f9fe f libucrt:wcstombs.obj - 0001:0007ea3c ??$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z 1007fa3c f i libucrt:openfile.obj - 0001:0007ece9 ?__acrt_stdio_parse_mode_D@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1007fce9 f i libucrt:openfile.obj - 0001:0007ed04 ?__acrt_stdio_parse_mode_T@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1007fd04 f i libucrt:openfile.obj - 0001:0007ed23 ?__acrt_stdio_parse_mode_b@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1007fd23 f i libucrt:openfile.obj - 0001:0007ed43 ?__acrt_stdio_parse_mode_c@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1007fd43 f i libucrt:openfile.obj - 0001:0007ed65 ?__acrt_stdio_parse_mode_n@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1007fd65 f i libucrt:openfile.obj - 0001:0007ed87 ?__acrt_stdio_parse_mode_plus@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1007fd87 f i libucrt:openfile.obj - 0001:0007edbd ?__acrt_stdio_parse_mode_t@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1007fdbd f i libucrt:openfile.obj - 0001:0007eddd ?__acrt_stdio_parse_mode_x@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1007fddd f i libucrt:openfile.obj - 0001:0007edfd __openfile 1007fdfd f libucrt:openfile.obj - 0001:0007ee20 ??$__acrt_convert_wcs_mbs_cp@_WDV@@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@ABV@@I@Z 1007fe20 f i libucrt:argv_wildcards.obj - 0001:0007f3be ?allocate@?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@QAEHI@Z 100803be f i libucrt:argv_wildcards.obj - 0001:0007f481 ___acrt_expand_narrow_argv_wildcards 10080481 f libucrt:argv_wildcards.obj - 0001:0007f48c ___acrt_GetModuleFileNameA 1008048c f libucrt:getmodulefilenamea.obj - 0001:0007f57d __ismbblead 1008057d f libucrt:ismbbyte.obj - 0001:0007f595 ___acrt_initialize_command_line 10080595 f libucrt:argv_data.obj - 0001:0007f5ae ___acrt_execute_initializers 100805ae f libucrt:shared_initialization.obj - 0001:0007f616 ___acrt_execute_uninitializers 10080616 f libucrt:shared_initialization.obj - 0001:0007f647 ?__wcsrtombs_utf8@__crt_mbstring@@YAIPADPAPB_WIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10080647 f libucrt:wcrtomb.obj - 0001:0007fd40 __sopen_nolock 10080d40 f libucrt:open.obj - 0001:0007fdae __sopen_s 10080dae f libucrt:open.obj - 0001:0007fdce __wsopen_nolock 10080dce f libucrt:open.obj - 0001:00080100 _qsort 10081100 f libucrt:qsort.obj - 0001:000805f0 _strpbrk 100815f0 f libucrt:strpbrk.obj - 0001:00080630 __mbsdec 10081630 f libucrt:mbsdec.obj - 0001:00080647 __mbsdec_l 10081647 f libucrt:mbsdec.obj - 0001:000806d4 ?__c16rtomb_utf8@__crt_mbstring@@YAIPAD_SPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 100816d4 f libucrt:c16rtomb.obj - 0001:0008077e __get_fmode 1008177e f libucrt:setmode.obj - 0001:000807ab __setmode_nolock 100817ab f libucrt:setmode.obj - 0001:0008087a ??0__crt_seek_guard@@QAE@H_J@Z 1008187a f i libucrt:chsize.obj - 0001:000808c7 __chsize_nolock 100818c7 f libucrt:chsize.obj - 0001:000808fe __chsize_nolock_internal 100818fe f libucrt:chsize.obj - 0001:00080a95 ___acrt_initialize_fmode 10081a95 f libucrt:txtmode.obj - 0001:00080aab __filter_x86_sse2_floating_point_exception 10081aab f LIBCMT:x86_exception_filter.obj - 0001:00080aab __filter_x86_sse2_floating_point_exception_default 10081aab f LIBCMT:x86_exception_filter.obj + 0001:00045ef0 ?Spell_C_HandleTerrainClickHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z 10046ef0 f spellcast.cpp.obj + 0001:00045f30 ?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 10046f30 f spellcast.cpp.obj + 0001:000460b0 ?TriggerQuickcast@Nampower@@YAXXZ 100470b0 f spellcast.cpp.obj + 0001:00046210 ?TriggerSpellCastEvent@Nampower@@YAX_NIW4CastType@@_KI@Z 10047210 f spellcast.cpp.obj + 0001:00046260 ?TriggerSpellQueuedEvent@Nampower@@YAXW4QueueEvents@@I@Z 10047260 f spellcast.cpp.obj + 0001:00046280 ?findSpellId@CastQueue@Nampower@@QAEPAUCastSpellParams@@I@Z 10047280 f i spellcast.cpp.obj + 0001:000462c0 ?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 100472c0 f i spellcast.cpp.obj + 0001:000464a0 ?pushFront@CastQueue@Nampower@@QAEXABUCastSpellParams@@@Z 100474a0 f i spellcast.cpp.obj + 0001:000465c0 ??$Get@H@CDataStore@Nampower@@QAEXAAH@Z 100475c0 f i spellevents.cpp.obj + 0001:000465c0 ??$Get@I@CDataStore@Nampower@@QAEXAAI@Z 100475c0 f i spellchannel.cpp.obj + 0001:00046620 ?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10047620 f spellchannel.cpp.obj + 0001:00046c30 ?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10047c30 f spellchannel.cpp.obj + 0001:00046ee0 ??$Get@F@CDataStore@Nampower@@QAEXAAF@Z 10047ee0 f i spellevents.cpp.obj + 0001:00046f40 ??$Get@_K@CDataStore@Nampower@@QAEXAA_K@Z 10047f40 f i spellevents.cpp.obj + 0001:00046fb0 ?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10047fb0 f spellevents.cpp.obj + 0001:000474e0 ?PeriodicAuraLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 100484e0 f spellevents.cpp.obj + 0001:000476f0 ?ProcResistHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100486f0 f spellevents.cpp.obj + 0001:00047770 ?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 10048770 f spellevents.cpp.obj + 0001:000478e0 ?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100488e0 f spellevents.cpp.obj + 0001:00047ae0 ?SpellEnergizeLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10048ae0 f spellevents.cpp.obj + 0001:00047b80 ?SpellFailedOtherHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10048b80 f spellevents.cpp.obj + 0001:00047bf0 ?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 10048bf0 f spellevents.cpp.obj + 0001:00048310 ?SpellHealingLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10049310 f spellevents.cpp.obj + 0001:000483b0 ?SpellLogMissHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100493b0 f spellevents.cpp.obj + 0001:00048450 ?SpellNonMeleeDmgLogHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 10049450 f spellevents.cpp.obj + 0001:00048550 ?SpellOrDamageImmuneHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10049550 f spellevents.cpp.obj + 0001:000485d0 ?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 100495d0 f spellevents.cpp.obj + 0001:00048b00 ?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 10049b00 f spellevents.cpp.obj + 0001:00049770 ?TriggerAuraCastEvent@Nampower@@YAXPBUSpellRec@game@@_KQA_KE1_N@Z 1004a770 f spellevents.cpp.obj + 0001:00049a40 ?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 1004aa40 f spellevents.cpp.obj + 0001:00049dc0 ?TriggerSpellEnergizeEvent@Nampower@@YAX_K0IIIE@Z 1004adc0 f spellevents.cpp.obj + 0001:00049e80 ?TriggerSpellHealEvent@Nampower@@YAX_K0IIEE@Z 1004ae80 f spellevents.cpp.obj + 0001:00049f40 ?TriggerSpellMissEvent@Nampower@@YAX_K0II@Z 1004af40 f spellevents.cpp.obj + 0001:00049fb0 ?findOldestWaitingForServerSpellId@CastQueue@Nampower@@QAEPAUCastSpellParams@@I@Z 1004afb0 f i spellevents.cpp.obj + 0001:0004a000 ?triggerAuraCastEventOnTarget@Nampower@@YAXPBUSpellRec@game@@HPAD1_K2II@Z 1004b000 f spellevents.cpp.obj + 0001:0004a0f0 ??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1004b0f0 f i misc_scripts.cpp.obj + 0001:0004a0f0 ??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1004b0f0 f i spell_scripts.cpp.obj + 0001:0004a0f0 ??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1004b0f0 f i misc_scripts.cpp.obj + 0001:0004a360 ??$_Free_non_head@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@1@PAU01@@Z 1004b360 f i misc_scripts.cpp.obj + 0001:0004a360 ??$_Free_non_head@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@1@PAU01@@Z 1004b360 f i items.cpp.obj + 0001:0004a3e0 ??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 1004b3e0 f i misc_scripts.cpp.obj + 0001:0004a3e0 ??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 1004b3e0 f i dbc_fields.cpp.obj + 0001:0004a620 ??$destroy@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@?$_Default_allocator_traits@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@1@QAU?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@1@@Z 1004b620 f i misc_scripts.cpp.obj + 0001:0004a620 ??$destroy@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@?$_Default_allocator_traits@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@SAXAAV?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@1@QAU?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@1@@Z 1004b620 f i items.cpp.obj + 0001:0004a670 ??$find@X@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@QAE?AV?$_List_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@std@@@std@@@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 1004b670 f i misc_scripts.cpp.obj + 0001:0004a770 ??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 1004b770 f i misc_scripts.cpp.obj + 0001:0004a770 ??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 1004b770 f i items.cpp.obj + 0001:0004a820 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@QAE@XZ 1004b820 f i misc_scripts.cpp.obj + 0001:0004a820 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@QAE@XZ 1004b820 f i items.cpp.obj + 0001:0004a840 ??1?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@QAE@XZ 1004b840 f i misc_scripts.cpp.obj + 0001:0004a840 ??1?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@QAE@XZ 1004b840 f i items.cpp.obj + 0001:0004a8b0 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@@std@@@std@@QAE@XZ 1004b8b0 f i misc_scripts.cpp.obj + 0001:0004a8b0 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@@std@@@std@@QAE@XZ 1004b8b0 f i items.cpp.obj + 0001:0004a8e0 ??1?$list@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 1004b8e0 f i misc_scripts.cpp.obj + 0001:0004a8e0 ??1?$list@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 1004b8e0 f i items.cpp.obj + 0001:0004a900 ?CSimpleFrame_GetNameHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1004b900 f misc_scripts.cpp.obj + 0001:0004aa50 ?PushTableValue@Nampower@@YAXPAIPADI@Z 1004ba50 f i misc_scripts.cpp.obj + 0001:0004aaa0 ?RunQueuedScript@Nampower@@YA_NH@Z 1004baa0 f misc_scripts.cpp.obj + 0001:0004abe0 ?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 1004bbe0 f misc_scripts.cpp.obj + 0001:0004ace0 ?Script_DisenchantAll@Nampower@@YAIPAI@Z 1004bce0 f misc_scripts.cpp.obj + 0001:0004b0d0 ?Script_GetCastInfo@Nampower@@YAIPAI@Z 1004c0d0 f misc_scripts.cpp.obj + 0001:0004b410 ?Script_GetCurrentCastingInfo@Nampower@@YAIPAI@Z 1004c410 f misc_scripts.cpp.obj + 0001:0004b560 ?Script_GetItemIconTexture@Nampower@@YAIPAI@Z 1004c560 f misc_scripts.cpp.obj + 0001:0004b600 ?Script_GetItemLevel@Nampower@@YAIPAI@Z 1004c600 f misc_scripts.cpp.obj + 0001:0004b6b0 ?Script_GetItemStats@Nampower@@YAIPAI@Z 1004c6b0 f misc_scripts.cpp.obj + 0001:0004ba60 ?Script_GetItemStatsField@Nampower@@YAIPAI@Z 1004ca60 f misc_scripts.cpp.obj + 0001:0004bec0 ?Script_GetNampowerVersion@Nampower@@YAIPAI@Z 1004cec0 f misc_scripts.cpp.obj + 0001:0004bf20 ?Script_GetPlayerAuraDuration@Nampower@@YAIPAI@Z 1004cf20 f misc_scripts.cpp.obj + 0001:0004c040 ?Script_GetSpellIconTexture@Nampower@@YAIPAI@Z 1004d040 f misc_scripts.cpp.obj + 0001:0004c0f0 ?Script_GetUnitData@Nampower@@YAIPAI@Z 1004d0f0 f misc_scripts.cpp.obj + 0001:0004c460 ?Script_GetUnitField@Nampower@@YAIPAI@Z 1004d460 f misc_scripts.cpp.obj + 0001:0004c7b0 ?Script_QueueScript@Nampower@@YAIPAI@Z 1004d7b0 f misc_scripts.cpp.obj + 0001:0004cab0 ?Script_StartItemExport@Nampower@@YAIPAI@Z 1004dab0 f misc_scripts.cpp.obj + 0001:0004cac0 ?TryDisenchant@Nampower@@YA_NXZ 1004dac0 f misc_scripts.cpp.obj + 0001:0004ce50 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAEXI@Z 1004de50 f i misc_scripts.cpp.obj + 0001:0004ce50 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAEXI@Z 1004de50 f i items.cpp.obj + 0001:0004d110 ??$_Find_hint@I@?$_Tree@V?$_Tset_traits@IU?$less@I@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Tree_find_hint_result@PAU?$_Tree_node@IPAX@std@@@1@QAU?$_Tree_node@IPAX@1@ABI@Z 1004e110 f i spell_scripts.cpp.obj + 0001:0004d350 ??$_Find_lower_bound@I@?$_Tree@V?$_Tset_traits@IU?$less@I@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Tree_find_result@PAU?$_Tree_node@IPAX@std@@@1@ABI@Z 1004e350 f i spell_scripts.cpp.obj + 0001:0004d3a0 ?GetSpellSlotFromLuaHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@HPAI1@Z 1004e3a0 f spell_scripts.cpp.obj + 0001:0004d4f0 ?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 1004e4f0 f spell_scripts.cpp.obj + 0001:0004d600 ?Script_GetSpellIdForName@Nampower@@YAIPAI@Z 1004e600 f spell_scripts.cpp.obj + 0001:0004d670 ?Script_GetSpellModifiers@Nampower@@YAIPAI@Z 1004e670 f spell_scripts.cpp.obj + 0001:0004d7f0 ?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 1004e7f0 f spell_scripts.cpp.obj + 0001:0004d940 ?Script_GetSpellPower@Nampower@@YAIPAI@Z 1004e940 f spell_scripts.cpp.obj + 0001:0004dab0 ?Script_GetSpellRec@Nampower@@YAIPAI@Z 1004eab0 f spell_scripts.cpp.obj + 0001:0004def0 ?Script_GetSpellRecField@Nampower@@YAIPAI@Z 1004eef0 f spell_scripts.cpp.obj + 0001:0004e3f0 ?Script_GetSpellSlotTypeIdForName@Nampower@@YAIPAI@Z 1004f3f0 f spell_scripts.cpp.obj + 0001:0004e570 ?Script_IsSpellInRange@Nampower@@YAIPAI@Z 1004f570 f spell_scripts.cpp.obj + 0001:0004e830 ?Script_IsSpellUsable@Nampower@@YAIPAI@Z 1004f830 f spell_scripts.cpp.obj + 0001:0004e970 ?Script_QueueSpellByName@Nampower@@YAIPAI@Z 1004f970 f spell_scripts.cpp.obj + 0001:0004ea80 ?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1004fa80 f spell_scripts.cpp.obj + 0001:0004eba0 ?GetCooldownFromSpellHistory@Nampower@@YA?AUCooldownDetail@1@III@Z 1004fba0 f cooldown_scripts.cpp.obj + 0001:0004ee60 ?GetItemCooldownDetail@Nampower@@YA?AUCooldownDetail@1@I@Z 1004fe60 f cooldown_scripts.cpp.obj + 0001:0004f000 ?PushCooldownDetailTable@Nampower@@YAXPAIABUCooldownDetail@1@@Z 10050000 f cooldown_scripts.cpp.obj + 0001:0004f530 ?Script_GetItemIdCooldown@Nampower@@YAIPAI@Z 10050530 f cooldown_scripts.cpp.obj + 0001:0004f610 ?Script_GetSpellIdCooldown@Nampower@@YAIPAI@Z 10050610 f cooldown_scripts.cpp.obj + 0001:0004f6d0 ?Script_GetTrinketCooldown@Nampower@@YAIPAI@Z 100506d0 f cooldown_scripts.cpp.obj + 0001:0004f8f0 ??0CachedItemData@Nampower@@QAE@XZ 100508f0 f i item_scripts.cpp.obj + 0001:0004fd60 ?ClearBagSlot@Nampower@@YAXPAIHI@Z 10050d60 f item_scripts.cpp.obj + 0001:0004fe40 ?CreateBasicItemInfoTable@Nampower@@YAXPAIPAUCGItem@game@@@Z 10050e40 f item_scripts.cpp.obj + 0001:0004ff30 ?CreateItemInfoTable@Nampower@@YAXPAIPAUCGItem_C@game@@@Z 10050f30 f item_scripts.cpp.obj + 0001:000501e0 ?GetSingleBagItems@Nampower@@YAIPAIH@Z 100511e0 f item_scripts.cpp.obj + 0001:000505d0 ?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 100515d0 f item_scripts.cpp.obj + 0001:00050b00 ?Script_FindPlayerItemSlot@Nampower@@YAIPAI@Z 10051b00 f item_scripts.cpp.obj + 0001:00050c70 ?Script_GetAmmo@Nampower@@YAIPAI@Z 10051c70 f item_scripts.cpp.obj + 0001:00050e00 ?Script_GetBagItem@Nampower@@YAIPAI@Z 10051e00 f item_scripts.cpp.obj + 0001:000510d0 ?Script_GetBagItems@Nampower@@YAIPAI@Z 100520d0 f item_scripts.cpp.obj + 0001:00051270 ?Script_GetEquippedItem@Nampower@@YAIPAI@Z 10052270 f item_scripts.cpp.obj + 0001:000513f0 ?Script_GetEquippedItems@Nampower@@YAIPAI@Z 100523f0 f item_scripts.cpp.obj + 0001:00051570 ?Script_GetTrinkets@Nampower@@YAIPAI@Z 10052570 f item_scripts.cpp.obj + 0001:00051a20 ?Script_UseItemIdOrName@Nampower@@YAIPAI@Z 10052a20 f item_scripts.cpp.obj + 0001:00051ba0 ?Script_UseTrinket@Nampower@@YAIPAI@Z 10052ba0 f item_scripts.cpp.obj + 0001:00051dd0 ??$_Find_last@I@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@1@ABII@Z 10052dd0 f i items.cpp.obj + 0001:00051dd0 ??$_Find_last@I@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@IBE?AU?$_Hash_find_last_result@PAU?$_List_node@IPAX@std@@@1@ABII@Z 10052dd0 f i items.cpp.obj + 0001:00051e40 ??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 10052e40 f i items.cpp.obj + 0001:00052040 ??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10053040 f i items.cpp.obj + 0001:00052230 ??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 10053230 f i items.cpp.obj + 0001:00052420 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@IPAX@std@@@std@@@std@@QAE@XZ 10053420 f i items.cpp.obj + 0001:00052420 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@IPAX@std@@@std@@@std@@QAE@XZ 10053420 f i items.cpp.obj + 0001:00052440 ??1?$_Alloc_construct_ptr@V?$allocator@U?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@std@@@std@@QAE@XZ 10053440 f i items.cpp.obj + 0001:00052440 ??1?$_List_node_emplace_op2@V?$allocator@U?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@@std@@@std@@QAE@XZ 10053440 f i items.cpp.obj + 0001:00052460 ??1?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@QAE@XZ 10053460 f i items.cpp.obj + 0001:000524f0 ??1?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE@XZ 100534f0 f i items.cpp.obj + 0001:00052580 ??1?$list@IV?$allocator@I@std@@@std@@QAE@XZ 10053580 f i items.cpp.obj + 0001:000525c0 ??1?$list@U?$pair@$$CBIPAUItemStats_C@game@@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@2@@std@@QAE@XZ 100535c0 f i items.cpp.obj + 0001:00052600 ??_H@YGXPAXIIP6EPAX0@Z@Z 10053600 f i items.cpp.obj + 0001:00052630 ?CacheItemNameToId@Nampower@@YAXPBDI@Z 10053630 f items.cpp.obj + 0001:000526c0 ?ClearItemCaches@Nampower@@YAXXZ 100536c0 f items.cpp.obj + 0001:00052820 ?DoesItemMatch@Nampower@@YA_NIIPBD@Z 10053820 f items.cpp.obj + 0001:000528f0 ?FindPlayerDisenchantItem@Nampower@@YA?AUPlayerItemSearchResult@1@I_N@Z 100538f0 f items.cpp.obj + 0001:00052b00 ?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 10053b00 f items.cpp.obj + 0001:00053140 ?GetBagPtrFromContainer@Nampower@@YAPAIPAI@Z 10054140 f items.cpp.obj + 0001:00053160 ?GetItemIdFromCache@Nampower@@YAIPBD@Z 10054160 f items.cpp.obj + 0001:00053250 ?GetItemStats@Nampower@@YAPAUItemStats_C@game@@I@Z 10054250 f items.cpp.obj + 0001:000532d0 ?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 100542d0 f items.cpp.obj + 0001:000534f0 ?LoadItem@Nampower@@YA_NI@Z 100544f0 f items.cpp.obj + 0001:000535c0 ?StartItemExport@Nampower@@YAXXZ 100545c0 f items.cpp.obj + 0001:000535e0 ?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 100545e0 f items.cpp.obj + 0001:000537b0 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAEXI@Z 100547b0 f i items.cpp.obj + 0001:00053910 ?_Forced_rehash@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@IAEXI@Z 10054910 f i items.cpp.obj + 0001:00053a70 ?_Unchecked_erase@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@AAEPAU?$_List_node@IPAX@2@PAU32@QAU32@@Z 10054a70 f i items.cpp.obj + 0001:00053c20 ?clear@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAEXXZ 10054c20 f i items.cpp.obj + 0001:00053ca0 ?InitializeFieldMaps@Nampower@@YAXXZ 10054ca0 f dbc_fields.cpp.obj + 0001:00053fa0 ?InitializeUnitFieldMaps@Nampower@@YAXXZ 10054fa0 f unit_fields.cpp.obj + 0001:00054150 ?CGBuffBar_UpdateDurationHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@EH@Z 10055150 f auras.cpp.obj + 0001:000541d0 ?CGUnit_C_OnAuraAddedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z 100551d0 f auras.cpp.obj + 0001:00054210 ?CGUnit_C_OnAuraRemovedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z 10055210 f auras.cpp.obj + 0001:00054250 ?CGUnit_C_OnAuraStacksChangedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z 10055250 f auras.cpp.obj + 0001:000542b0 ?TriggerAuraEvent@Nampower@@YAXPAIII_NI@Z 100552b0 f auras.cpp.obj + 0001:000544d0 ?UnitCombatLogUnitDeadHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_K@Z 100554d0 f auras.cpp.obj + 0001:00054520 ??$_Emplace_reallocate@ABQAH@?$vector@PAHV?$allocator@PAH@std@@@std@@AAEPAPAHQAPAHABQAH@Z 10055520 f i lua_refs.cpp.obj + 0001:00054680 ?CleanupAllLuaTableRefs@Nampower@@YAXXZ 10055680 f lua_refs.cpp.obj + 0001:000547f0 ?GetTableRef@Nampower@@YAXPAIAAH@Z 100557f0 f lua_refs.cpp.obj + 0001:00054870 ?AttackRoundInfo_ReadPacketHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@1@@Z 10055870 f autoattack.cpp.obj + 0001:00054c28 __get_purecall_handler 10055c28 f libvcruntime:purevirt.obj + 0001:00054c2f __purecall 10055c2f f libvcruntime:purevirt.obj + 0001:00054c4b ___DestructExceptionObject 10055c4b f libvcruntime:ehhelpers.obj + 0001:00054cec ?_CallMemberFunction0@@YGXQAX0@Z 10055cec f i libvcruntime:ehhelpers.obj + 0001:00054d51 __IsExceptionObjectToBeDestroyed 10055d51 f libvcruntime:ehhelpers.obj + 0001:00054d77 ___AdjustPointer 10055d77 f libvcruntime:ehhelpers.obj + 0001:00054d9c ___FrameUnwindFilter 10055d9c f libvcruntime:ehhelpers.obj + 0001:00054df2 ___std_terminate 10055df2 f libvcruntime:ehhelpers.obj + 0001:00054df7 ___std_exception_copy 10055df7 f libvcruntime:std_exception.obj + 0001:00054e5a ___std_exception_destroy 10055e5a f libvcruntime:std_exception.obj + 0001:00054e79 __CxxThrowException@8 10055e79 f libvcruntime:throw.obj + 0001:00054ee5 ?GetRangeOfTrysToCheck@__FrameHandler3@@SA?AU?$pair@Viterator@TryBlockMap@__FrameHandler3@@V123@@std@@AAVTryBlockMap@1@HPAXPBU_s_FuncInfo@@H@Z 10055ee5 f libvcruntime:trnsctrl.obj + 0001:00054f54 ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@PAXHK@Z 10055f54 f libvcruntime:trnsctrl.obj + 0001:00054fb1 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PBU_s_FuncInfo@@H1@Z 10055fb1 f libvcruntime:trnsctrl.obj + 0001:000550a1 ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 100560a1 f libvcruntime:trnsctrl.obj + 0001:000550d1 ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 100560d1 f libvcruntime:trnsctrl.obj + 0001:00055125 __CatchGuardHandler 10056125 f libvcruntime:trnsctrl.obj + 0001:00055156 __CreateFrameInfo 10056156 f libvcruntime:trnsctrl.obj + 0001:0005517a __FindAndUnlinkFrame 1005617a f libvcruntime:trnsctrl.obj + 0001:000551c2 __TranslatorGuardHandler 100561c2 f libvcruntime:trnsctrl.obj + 0001:00055261 ___CxxFrameHandler3 10056261 f libvcruntime:trnsctrl.obj + 0001:000552a0 _memcpy 100562a0 f libvcruntime:memcpy.obj + 0001:000552a0 _memmove 100562a0 f libvcruntime:memmove.obj + 0001:00055820 ??0__non_rtti_object@std@@QAE@ABV01@@Z 10056820 f i libvcruntime:rtti.obj + 0001:0005583b ??0bad_typeid@std@@QAE@ABV01@@Z 1005683b f i libvcruntime:rtti.obj + 0001:00055856 ??_E__non_rtti_object@std@@UAEPAXI@Z 10056856 f i libvcruntime:rtti.obj + 0001:00055856 ??_Ebad_function_call@std@@UAEPAXI@Z 10056856 f i libcpmt:xthrow.obj + 0001:00055856 ??_Ebad_typeid@std@@UAEPAXI@Z 10056856 f i libvcruntime:rtti.obj + 0001:00055856 ??_Einvalid_argument@std@@UAEPAXI@Z 10056856 f i libcpmt:xthrow.obj + 0001:00055856 ??_Elength_error@std@@UAEPAXI@Z 10056856 f i libcpmt:xthrow.obj + 0001:00055856 ??_Elogic_error@std@@UAEPAXI@Z 10056856 f i libcpmt:xthrow.obj + 0001:00055856 ??_Eout_of_range@std@@UAEPAXI@Z 10056856 f i libcpmt:xthrow.obj + 0001:00055856 ??_G__non_rtti_object@std@@UAEPAXI@Z 10056856 f i libvcruntime:rtti.obj + 0001:00055856 ??_Gbad_function_call@std@@UAEPAXI@Z 10056856 f i libcpmt:xthrow.obj + 0001:00055856 ??_Gbad_typeid@std@@UAEPAXI@Z 10056856 f i libvcruntime:rtti.obj + 0001:00055856 ??_Ginvalid_argument@std@@UAEPAXI@Z 10056856 f i libcpmt:xthrow.obj + 0001:00055856 ??_Glength_error@std@@UAEPAXI@Z 10056856 f i libcpmt:xthrow.obj + 0001:00055856 ??_Glogic_error@std@@UAEPAXI@Z 10056856 f i libcpmt:xthrow.obj + 0001:00055856 ??_Gout_of_range@std@@UAEPAXI@Z 10056856 f i libcpmt:xthrow.obj + 0001:00055c27 ?__construct_from_string_literal@__non_rtti_object@std@@SA?AV12@QBD@Z 10056c27 f i libvcruntime:rtti.obj + 0001:00055c43 ?__construct_from_string_literal@bad_cast@std@@SA?AV12@QBD@Z 10056c43 f i libvcruntime:rtti.obj + 0001:00055c5f ?__construct_from_string_literal@bad_typeid@std@@SA?AV12@QBD@Z 10056c5f f i libvcruntime:rtti.obj + 0001:00055c7b ___RTDynamicCast 10056c7b f libvcruntime:rtti.obj + 0001:00055d6e ___RTtypeid 10056d6e f libvcruntime:rtti.obj + 0001:00055e04 ??3@YAXPAX@Z 10056e04 f LIBCMT:delete_scalar.obj + 0001:00055e09 ___std_type_info_compare 10056e09 f libvcruntime:std_type_info.obj + 0001:00055e45 ___std_type_info_destroy_list 10056e45 f libvcruntime:std_type_info.obj + 0001:00055e68 ___std_type_info_name 10056e68 f libvcruntime:std_type_info.obj + 0001:00055f30 _memset 10056f30 f libvcruntime:memset.obj + 0001:00056090 _strstr 10057090 f libvcruntime:strstr.obj + 0001:00056300 _memchr 10057300 f libvcruntime:memchr.obj + 0001:000563ad ___vcrt_freefls@4 100573ad f libvcruntime:per_thread_data.obj + 0001:000563c9 ___vcrt_freeptd_for_this_thread 100573c9 f libvcruntime:per_thread_data.obj + 0001:000563f4 ___vcrt_getptd 100573f4 f libvcruntime:per_thread_data.obj + 0001:00056402 ___vcrt_getptd_noexit 10057402 f libvcruntime:per_thread_data.obj + 0001:00056494 ___vcrt_getptd_noinit 10057494 f libvcruntime:per_thread_data.obj + 0001:000564cb ___vcrt_initialize_ptd 100574cb f libvcruntime:per_thread_data.obj + 0001:000564fe ___vcrt_uninitialize_ptd 100574fe f libvcruntime:per_thread_data.obj + 0001:00056560 __except_handler4 10057560 f libvcruntime:chandler4.obj + 0001:00056df0 ??$TypeMatchHelper@V__FrameHandler3@@@@YAHPBU_s_HandlerType@@PBU_s_CatchableType@@PBU_s_ThrowInfo@@@Z 10057df0 f i libvcruntime:frame.obj + 0001:00056e7e ??$__InternalCxxFrameHandler@V__FrameHandler3@@@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@H1E@Z 10057e7e f i libvcruntime:frame.obj + 0001:00056f80 ??$__InternalCxxFrameHandlerWrapper@V__FrameHandler3@@@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@H1E@Z 10057f80 f i libvcruntime:frame.obj + 0001:000571e1 ?FrameUnwindToEmptyState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@@Z 100581e1 f libvcruntime:frame.obj + 0001:000571f9 ?FrameUnwindToState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@H@Z 100581f9 f libvcruntime:frame.obj + 0001:0005737b ?_CallMemberFunction1@@YGXQAX00@Z 1005837b f i libvcruntime:frame.obj + 0001:0005738b ?_CallMemberFunction2@@YGXQAX00H@Z 1005838b f i libvcruntime:frame.obj + 0001:0005739e ?getESTypes@__FrameHandler3@@SAPBU_s_ESTypeList@@PBU_s_FuncInfo@@@Z 1005839e f i libvcruntime:frame.obj + 0001:000573b0 __CallSettingFrame@12 100583b0 f libvcruntime:lowhelpr.obj + 0001:000573d7 __NLG_Return 100583d7 libvcruntime:lowhelpr.obj + 0001:000573fc ___except_validate_context_record 100583fc f libvcruntime:jbcxrval.obj + 0001:0005742c ??$?0$00@DName@@QAE@PBDU?$StringLifeSelector@$00@@@Z 1005842c f i libvcruntime:undname.obj + 0001:0005745f ??$?0$01@DName@@QAE@PBDU?$StringLifeSelector@$01@@@Z 1005845f f i libvcruntime:undname.obj + 0001:0005745f ??$?0$0A@@DName@@QAE@PBDU?$StringLifeSelector@$0A@@@@Z 1005845f f i libvcruntime:undname.obj + 0001:00057492 ??$?0$01@pcharNode@@QAE@PBDHU?$StringLifeSelector@$01@@@Z 10058492 f i libvcruntime:undname.obj + 0001:00057492 ??$?0$0A@@pcharNode@@QAE@PBDHU?$StringLifeSelector@$0A@@@@Z 10058492 f i libvcruntime:undname.obj + 0001:000574d2 ??$append@VDNameNode@@@DName@@AAEXPBVDNameNode@@@Z 100584d2 f i libvcruntime:undname.obj + 0001:000574d2 ??$append@VDNameStatusNode@@@DName@@AAEXPBVDNameStatusNode@@@Z 100584d2 f i libvcruntime:undname.obj + 0001:000574d2 ??$append@VcharNode@@@DName@@AAEXPBVcharNode@@@Z 100584d2 f i libvcruntime:undname.obj + 0001:000574d2 ??$append@VpcharNode@@@DName@@AAEXPBVpcharNode@@@Z 100584d2 f i libvcruntime:undname.obj + 0001:00057513 ??$doPchar@$00@DName@@AAEXPBDH@Z 10058513 f i libvcruntime:undname.obj + 0001:0005757f ??$doPchar@$01@DName@@AAEXPBDH@Z 1005857f f i libvcruntime:undname.obj + 0001:0005757f ??$doPchar@$0A@@DName@@AAEXPBDH@Z 1005857f f i libvcruntime:undname.obj + 0001:000576ac ??0DName@@QAE@AAPBDD@Z 100586ac f libvcruntime:undname.obj + 0001:00057735 ??0DName@@QAE@ABUStringLiteral@@@Z 10058735 f libvcruntime:undname.obj + 0001:0005775c ??0DName@@QAE@PAV0@@Z 1005875c f libvcruntime:undname.obj + 0001:000577a3 ??0DName@@QAE@W4DNameStatus@@@Z 100587a3 f libvcruntime:undname.obj + 0001:000577e3 ??0DName@@QAE@_J@Z 100587e3 f libvcruntime:undname.obj + 0001:0005786d ??0DName@@QAE@_K@Z 1005886d f libvcruntime:undname.obj + 0001:000578d1 ??0DNameNode@@IAE@XZ 100588d1 f i libvcruntime:undname.obj + 0001:000578da ??0UnDecorator@@QAE@PBDP6APADJ@ZK@Z 100588da f i libvcruntime:undname.obj + 0001:0005793e ??0pDNameNode@@QAE@PAVDName@@@Z 1005893e f libvcruntime:undname.obj + 0001:00057966 ??0pairNode@@QAE@PBVDNameNode@@0@Z 10058966 f i libvcruntime:undname.obj + 0001:0005798c ??2@YAPAXIAAV_HeapManager@@H@Z 1005898c f libvcruntime:undname.obj + 0001:000579ab ??4DName@@QAEAAV0@ABUStringLiteral@@@Z 100589ab f libvcruntime:undname.obj + 0001:000579cc ??4DName@@QAEAAV0@W4DNameStatus@@@Z 100589cc f libvcruntime:undname.obj + 0001:000579fe ??AReplicator@@QBE?AVDName@@H@Z 100589fe f libvcruntime:undname.obj + 0001:00057a3a ??H@YA?AVDName@@ABUStringLiteral@@ABV0@@Z 10058a3a f i libvcruntime:undname.obj + 0001:00057a5c ??H@YA?AVDName@@DABV0@@Z 10058a5c f i libvcruntime:undname.obj + 0001:00057a87 ??H@YA?AVDName@@W4DNameStatus@@ABV0@@Z 10058a87 f i libvcruntime:undname.obj + 0001:00057aa9 ??HDName@@QBE?AV0@ABUStringLiteral@@@Z 10058aa9 f libvcruntime:undname.obj + 0001:00057acb ??HDName@@QBE?AV0@ABV0@@Z 10058acb f libvcruntime:undname.obj + 0001:00057aed ??HDName@@QBE?AV0@D@Z 10058aed f libvcruntime:undname.obj + 0001:00057b0f ??HDName@@QBE?AV0@W4DNameStatus@@@Z 10058b0f f libvcruntime:undname.obj + 0001:00057b31 ??YDName@@QAEAAV0@ABUStringLiteral@@@Z 10058b31 f libvcruntime:undname.obj + 0001:00057b89 ??YDName@@QAEAAV0@ABV0@@Z 10058b89 f libvcruntime:undname.obj + 0001:00057be0 ??YDName@@QAEAAV0@D@Z 10058be0 f libvcruntime:undname.obj + 0001:00057c35 ??YDName@@QAEAAV0@W4DNameStatus@@@Z 10058c35 f libvcruntime:undname.obj + 0001:00057c75 ??YReplicator@@QAEAAV0@ABVDName@@@Z 10058c75 f libvcruntime:undname.obj + 0001:00057cb5 ??_5DName@@QAEAAV0@ABV0@@Z 10058cb5 f libvcruntime:undname.obj + 0001:00057cd4 ?Destructor@_HeapManager@@QAEXXZ 10058cd4 f i libvcruntime:undname.obj + 0001:00057d09 ?UScore@UnDecorator@@SA?AUStringLiteral@@W4Tokens@@@Z 10058d09 f libvcruntime:undname.obj + 0001:00057d30 ?composeDeclaration@UnDecorator@@CA?AVDName@@ABV2@@Z 10058d30 f i libvcruntime:undname.obj + 0001:00058ab6 ?doPchar@DName@@AAEXD@Z 10059ab6 f libvcruntime:undname.obj + 0001:00058aee ?getAddressOf@UnDecorator@@CA?AVDName@@XZ 10059aee f libvcruntime:undname.obj + 0001:00058b56 ?getArgumentList@UnDecorator@@CA?AVDName@@XZ 10059b56 f libvcruntime:undname.obj + 0001:00058c63 ?getArgumentTypes@UnDecorator@@CA?AVDName@@XZ 10059c63 f libvcruntime:undname.obj + 0001:00058d6b ?getArrayAccess@UnDecorator@@CA?AVDName@@XZ 10059d6b f libvcruntime:undname.obj + 0001:00058ddf ?getArrayObject@UnDecorator@@CA?AVDName@@XZ 10059ddf f libvcruntime:undname.obj + 0001:00058e7d ?getArrayType@UnDecorator@@CA?AVDName@@ABV2@@Z 10059e7d f i libvcruntime:undname.obj + 0001:0005901a ?getBasedType@UnDecorator@@CA?AVDName@@XZ 1005a01a f libvcruntime:undname.obj + 0001:000590c9 ?getBasicDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005a0c9 f libvcruntime:undname.obj + 0001:00059625 ?getCallingConvention@UnDecorator@@CA?AVDName@@XZ 1005a625 f libvcruntime:undname.obj + 0001:000596ef ?getDataIndirectType@UnDecorator@@CA?AVDName@@ABV2@W4IndirectionKind@@0H@Z 1005a6ef f libvcruntime:undname.obj + 0001:00059dae ?getDataIndirectType@UnDecorator@@CA?AVDName@@XZ 1005adae f i libvcruntime:undname.obj + 0001:00059ddc ?getDataType@UnDecorator@@CA?AVDName@@PAV2@@Z 1005addc f libvcruntime:undname.obj + 0001:00059eb3 ?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 1005aeb3 f libvcruntime:undname.obj + 0001:0005a107 ?getDimension@UnDecorator@@CA?AVDName@@_N@Z 1005b107 f libvcruntime:undname.obj + 0001:0005a20e ?getDispatchTarget@UnDecorator@@CA?AVDName@@XZ 1005b20e f libvcruntime:undname.obj + 0001:0005a25f ?getECSUDataType@UnDecorator@@CA?AVDName@@XZ 1005b25f f libvcruntime:undname.obj + 0001:0005a409 ?getEnumType@UnDecorator@@CA?AVDName@@XZ 1005b409 f i libvcruntime:undname.obj + 0001:0005a51d ?getExtendedDataIndirectType@UnDecorator@@CA?AVDName@@AAW4IndirectionKind@@AA_NH@Z 1005b51d f libvcruntime:undname.obj + 0001:0005a720 ?getExternalDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005b720 f i libvcruntime:undname.obj + 0001:0005a785 ?getFloatingPoint@UnDecorator@@CA?AVDName@@H@Z 1005b785 f libvcruntime:undname.obj + 0001:0005a848 ?getFunctionIndirectType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005b848 f libvcruntime:undname.obj + 0001:0005abf2 ?getLastChar@DName@@QBEDXZ 1005bbf2 f i libvcruntime:undname.obj + 0001:0005ac12 ?getLastChar@DNameStatusNode@@UBEDXZ 1005bc12 f i libvcruntime:undname.obj + 0001:0005ac1e ?getLastChar@charNode@@UBEDXZ 1005bc1e f i libvcruntime:undname.obj + 0001:0005ac22 ?getLastChar@pDNameNode@@UBEDXZ 1005bc22 f i libvcruntime:undname.obj + 0001:0005ac30 ?getLastChar@pairNode@@UBEDXZ 1005bc30 f i libvcruntime:undname.obj + 0001:0005ac65 ?getLastChar@pcharNode@@UBEDXZ 1005bc65 f i libvcruntime:undname.obj + 0001:0005ac77 ?getLexicalFrame@UnDecorator@@CA?AVDName@@XZ 1005bc77 f i libvcruntime:undname.obj + 0001:0005aca8 ?getMemberAccess@UnDecorator@@CA?AVDName@@XZ 1005bca8 f libvcruntime:undname.obj + 0001:0005ad18 ?getMemoryWithBuffer@_HeapManager@@QAEPAXI@Z 1005bd18 f libvcruntime:undname.obj + 0001:0005ad82 ?getMemoryWithoutBuffer@_HeapManager@@QAEPAXI@Z 1005bd82 f libvcruntime:undname.obj + 0001:0005ada2 ?getNoexcept@UnDecorator@@CA?AVDName@@XZ 1005bda2 f libvcruntime:undname.obj + 0001:0005adea ?getNumberOfDimensions@UnDecorator@@CAHXZ 1005bdea f libvcruntime:undname.obj + 0001:0005ae44 ?getOperatorName@UnDecorator@@CA?AVDName@@_NPA_N@Z 1005be44 f i libvcruntime:undname.obj + 0001:0005b70a ?getPointerToMember@UnDecorator@@CA?AVDName@@XZ 1005c70a f libvcruntime:undname.obj + 0001:0005b7c6 ?getPrimaryDataType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005c7c6 f libvcruntime:undname.obj + 0001:0005ba14 ?getPtrRefDataType@UnDecorator@@CA?AVDName@@ABV2@H@Z 1005ca14 f libvcruntime:undname.obj + 0001:0005bb81 ?getPtrRefType@UnDecorator@@CA?AVDName@@ABV2@0W4IndirectionKind@@@Z 1005cb81 f libvcruntime:undname.obj + 0001:0005bc92 ?getRestrictionSpec@UnDecorator@@CA?AVDName@@XZ 1005cc92 f libvcruntime:undname.obj + 0001:0005bdab ?getReturnType@UnDecorator@@CA?AVDName@@PAV2@@Z 1005cdab f libvcruntime:undname.obj + 0001:0005bdda ?getScope@UnDecorator@@CA?AVDName@@XZ 1005cdda f libvcruntime:undname.obj + 0001:0005c198 ?getScopedName@UnDecorator@@CA?AVDName@@XZ 1005d198 f libvcruntime:undname.obj + 0001:0005c28d ?getSignedDimension@UnDecorator@@CA?AVDName@@XZ 1005d28d f libvcruntime:undname.obj + 0001:0005c2de ?getString@DName@@QBEPADPAD0@Z 1005d2de f i libvcruntime:undname.obj + 0001:0005c30b ?getString@DName@@QBEPADPADH@Z 1005d30b f i libvcruntime:undname.obj + 0001:0005c360 ?getString@DNameStatusNode@@UBEPADPAD0@Z 1005d360 f i libvcruntime:undname.obj + 0001:0005c3a7 ?getString@charNode@@UBEPADPAD0@Z 1005d3a7 f i libvcruntime:undname.obj + 0001:0005c3bc ?getString@pDNameNode@@UBEPADPAD0@Z 1005d3bc f i libvcruntime:undname.obj + 0001:0005c3d3 ?getString@pairNode@@UBEPADPAD0@Z 1005d3d3 f i libvcruntime:undname.obj + 0001:0005c419 ?getString@pcharNode@@UBEPADPAD0@Z 1005d419 f i libvcruntime:undname.obj + 0001:0005c434 ?getStringEncoding@UnDecorator@@CA?AVDName@@W4PrefixKind@@H@Z 1005d434 f libvcruntime:undname.obj + 0001:0005c4c7 ?getStringHelper@@YAPADPADPBD1H@Z 1005d4c7 f i libvcruntime:undname.obj + 0001:0005c4f1 ?getStringObject@UnDecorator@@CA?AVDName@@XZ 1005d4f1 f libvcruntime:undname.obj + 0001:0005c55d ?getSymbolName@UnDecorator@@CA?AVDName@@XZ 1005d55d f i libvcruntime:undname.obj + 0001:0005c5a5 ?getTemplateArgumentList@UnDecorator@@CA?AVDName@@XZ 1005d5a5 f libvcruntime:undname.obj + 0001:0005c755 ?getTemplateName@UnDecorator@@CA?AVDName@@_N@Z 1005d755 f libvcruntime:undname.obj + 0001:0005c8d0 ?getTemplateNonTypeArgument@UnDecorator@@CA?AVDName@@XZ 1005d8d0 f libvcruntime:undname.obj + 0001:0005cc98 ?getTemplateTypeArgument@UnDecorator@@CA?AVDName@@XZ 1005dc98 f libvcruntime:undname.obj + 0001:0005cda9 ?getThisType@UnDecorator@@CA?AVDName@@XZ 1005dda9 f i libvcruntime:undname.obj + 0001:0005cdd8 ?getThrowTypes@UnDecorator@@CA?AVDName@@XZ 1005ddd8 f libvcruntime:undname.obj + 0001:0005cdf7 ?getTypeEncoding@UnDecorator@@CAHXZ 1005ddf7 f i libvcruntime:undname.obj + 0001:0005d133 ?getUndecoratedName@UnDecorator@@QAEPADPADH@Z 1005e133 f i libvcruntime:undname.obj + 0001:0005d254 ?getUnionObject@UnDecorator@@CA?AVDName@@XZ 1005e254 f libvcruntime:undname.obj + 0001:0005d2fb ?getVCallThunkType@UnDecorator@@CA?AVDName@@XZ 1005e2fb f i libvcruntime:undname.obj + 0001:0005d345 ?getValue@UnDecorator@@CA?AV?$optional@_K@std@@XZ 1005e345 f libvcruntime:undname.obj + 0001:0005d395 ?getValueObject@UnDecorator@@CA?AVDName@@XZ 1005e395 f libvcruntime:undname.obj + 0001:0005d4c1 ?getVdispMapType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005e4c1 f i libvcruntime:undname.obj + 0001:0005d522 ?getVfTableType@UnDecorator@@CA?AVDName@@ABV2@@Z 1005e522 f i libvcruntime:undname.obj + 0001:0005d676 ?getZName@UnDecorator@@CA?AVDName@@_N0@Z 1005e676 f libvcruntime:undname.obj + 0001:0005d88f ?get_current_character_and_increment_buffer@UnDecorator@@CADXZ 1005e88f f i libvcruntime:undname.obj + 0001:0005d8a3 ?increment_buffer@UnDecorator@@CA_NI@Z 1005e8a3 f i libvcruntime:undname.obj + 0001:0005d8cb ?isEmpty@DName@@QBEHXZ 1005e8cb f i libvcruntime:undname.obj + 0001:0005d8d3 ?isValid@DName@@QBEHXZ 1005e8d3 f i libvcruntime:undname.obj + 0001:0005d8dd ?length@DName@@QBEHXZ 1005e8dd f i libvcruntime:undname.obj + 0001:0005d8fc ?length@DNameStatusNode@@UBEHXZ 1005e8fc f i libvcruntime:undname.obj + 0001:0005d8fc ?length@pcharNode@@UBEHXZ 1005e8fc f i libvcruntime:undname.obj + 0001:0005d8fc ?raw_length@DNameStatusNode@@UBEHXZ 1005e8fc f i libvcruntime:undname.obj + 0001:0005d8fc ?raw_length@pcharNode@@UBEHXZ 1005e8fc f i libvcruntime:undname.obj + 0001:0005d900 ?length@charNode@@UBEHXZ 1005e900 f i libvcruntime:undname.obj + 0001:0005d900 ?raw_length@charNode@@UBEHXZ 1005e900 f i libvcruntime:undname.obj + 0001:0005d900 __get_startup_argv_mode 1005e900 f i LIBCMT:argv_mode.obj + 0001:0005d904 ?length@pDNameNode@@UBEHXZ 1005e904 f i libvcruntime:undname.obj + 0001:0005d912 ?length@pairNode@@UBEHXZ 1005e912 f i libvcruntime:undname.obj + 0001:0005d95b ?make@DNameStatusNode@@SAPBV1@W4DNameStatus@@@Z 1005e95b f i libvcruntime:undname.obj + 0001:0005d977 ?parseDecoratedName@UnDecorator@@CA?AVDName@@XZ 1005e977 f libvcruntime:undname.obj + 0001:0005da72 ?raw_length@pairNode@@UBEHXZ 1005ea72 f i libvcruntime:undname.obj + 0001:0005dac8 ___unDName 1005eac8 f libvcruntime:undname.obj + 0001:0005daeb ___unDNameEx 1005eaeb f libvcruntime:undname.obj + 0001:0005db90 _strchr 1005eb90 f libvcruntime:strchr.obj + 0001:0005dbfe ___from_strstr_to_strchr 1005ebfe libvcruntime:strchr.obj + 0001:0005dda6 ___vcrt_FlsAlloc 1005eda6 f libvcruntime:winapi_downlevel.obj + 0001:0005dde1 ___vcrt_FlsFree 1005ede1 f libvcruntime:winapi_downlevel.obj + 0001:0005de1c ___vcrt_FlsGetValue 1005ee1c f libvcruntime:winapi_downlevel.obj + 0001:0005de57 ___vcrt_FlsSetValue 1005ee57 f libvcruntime:winapi_downlevel.obj + 0001:0005de95 ___vcrt_InitializeCriticalSectionEx 1005ee95 f libvcruntime:winapi_downlevel.obj + 0001:0005dee0 __local_unwind4 1005eee0 f libvcruntime:exsup4.obj + 0001:0005dfd0 @_EH4_CallFilterFunc@8 1005efd0 f libvcruntime:exsup4.obj + 0001:0005dff0 @_EH4_TransferToHandler@8 1005eff0 f libvcruntime:exsup4.obj + 0001:0005e010 @_EH4_GlobalUnwind2@8 1005f010 f libvcruntime:exsup4.obj + 0001:0005e030 @_EH4_LocalUnwind@16 1005f030 f libvcruntime:exsup4.obj + 0001:0005e047 _unexpected 1005f047 f libvcruntime:unexpected.obj + 0001:0005e064 ?GetCurrentState@__FrameHandler3@@SAHPAUEHRegistrationNode@@PAXPBU_s_FuncInfo@@@Z 1005f064 f libvcruntime:ehstate.obj + 0001:0005e081 ?SetState@__FrameHandler3@@SAXPAUEHRegistrationNode@@PBU_s_FuncInfo@@H@Z 1005f081 f libvcruntime:ehstate.obj + 0001:0005e090 __NLG_Notify1 1005f090 f libvcruntime:exsup.obj + 0001:0005e0a0 __NLG_Notify 1005f0a0 f libvcruntime:exsup.obj + 0001:0005e0b7 __NLG_Dispatch 1005f0b7 libvcruntime:exsup.obj + 0001:0005e0b7 __NLG_Dispatch2 1005f0b7 libvcruntime:exsup.obj + 0001:0005e0c0 __NLG_Call 1005f0c0 f libvcruntime:exsup.obj + 0001:0005e0c2 __NLG_Return2 1005f0c2 libvcruntime:exsup.obj + 0001:0005e0c3 ___vcrt_initialize_locks 1005f0c3 f libvcruntime:locks.obj + 0001:0005e0ff ___vcrt_lock 1005f0ff f libvcruntime:locks.obj + 0001:0005e114 ___vcrt_uninitialize_locks 1005f114 f libvcruntime:locks.obj + 0001:0005e143 ___vcrt_unlock 1005f143 f libvcruntime:locks.obj + 0001:0005e158 ??0__crt_cached_ptd_host@@QAE@QAU__crt_locale_pointers@@@Z 1005f158 f i libucrt:invalid_parameter.obj + 0001:0005e1a0 ??1__crt_cached_ptd_host@@QAE@XZ 1005f1a0 f i libucrt:invalid_parameter.obj + 0001:0005e1dc ?check_synchronize_global_state_index@__crt_cached_ptd_host@@AAEIXZ 1005f1dc f i libucrt:invalid_parameter.obj + 0001:0005e205 ?force_synchronize_per_thread_data@__crt_cached_ptd_host@@AAEPAU__acrt_ptd@@XZ 1005f205 f i libucrt:invalid_parameter.obj + 0001:0005e24b ?get_raw_ptd@__crt_cached_ptd_host@@QAEPAU__acrt_ptd@@XZ 1005f24b f i libucrt:invalid_parameter.obj + 0001:0005e268 ___acrt_call_reportfault 1005f268 f libucrt:invalid_parameter.obj + 0001:0005e3a1 ___acrt_initialize_invalid_parameter_handler 1005f3a1 f libucrt:invalid_parameter.obj + 0001:0005e3b0 __invalid_parameter 1005f3b0 f libucrt:invalid_parameter.obj + 0001:0005e3e7 __invalid_parameter_internal 1005f3e7 f libucrt:invalid_parameter.obj + 0001:0005e464 __invalid_parameter_noinfo 1005f464 f libucrt:invalid_parameter.obj + 0001:0005e474 __invalid_parameter_noinfo_noreturn 1005f474 f libucrt:invalid_parameter.obj + 0001:0005e491 __invoke_watson 1005f491 f libucrt:invalid_parameter.obj + 0001:0005e4c5 ___acrt_initialize_stdio 1005f4c5 f libucrt:_file.obj + 0001:0005e58d ___acrt_iob_func 1005f58d f libucrt:_file.obj + 0001:0005e59d ___acrt_uninitialize_stdio 1005f59d f libucrt:_file.obj + 0001:0005e5e9 __get_stream_buffer_pointers 1005f5e9 f libucrt:_file.obj + 0001:0005e62f __lock_file 1005f62f f libucrt:_file.obj + 0001:0005e643 __unlock_file 1005f643 f libucrt:_file.obj + 0001:0005e77c _fclose 1005f77c f libucrt:fclose.obj + 0001:0005e9e5 ___acrt_stdio_flush_nolock 1005f9e5 f libucrt:fflush.obj + 0001:0005ea4e __fflush_nolock 1005fa4e f libucrt:fflush.obj + 0001:0005eab3 __flushall 1005fab3 f libucrt:fflush.obj + 0001:0005eabc _fflush 1005fabc f libucrt:fflush.obj + 0001:0005eb0f __fgetc_nolock 1005fb0f f libucrt:fgetc.obj + 0001:0005eb4b _fgetc 1005fb4b f libucrt:fgetc.obj + 0001:0005ec64 _fgetpos 1005fc64 f libucrt:fgetpos.obj + 0001:0005edf3 __fputc_nolock_internal 1005fdf3 f libucrt:fputc.obj + 0001:0005ee20 _fputc 1005fe20 f libucrt:fputc.obj + 0001:0005ee54 __fread_nolock_s 1005fe54 f libucrt:fread.obj + 0001:0005f02d _fread 1006002d f libucrt:fread.obj + 0001:0005f04a _fread_s 1006004a f libucrt:fread.obj + 0001:0005f168 _fsetpos 10060168 f libucrt:fsetpos.obj + 0001:0005f1a3 ?LongLongSub@@YAJ_J0PA_J@Z 100601a3 f i libucrt:fseek.obj + 0001:0005f48c __fseeki64 1006048c f libucrt:fseek.obj + 0001:0005f4c6 _fseek 100604c6 f libucrt:fseek.obj + 0001:0005f5a7 __fwrite_internal 100605a7 f libucrt:fwrite.obj + 0001:0005f61e __fwrite_nolock_internal 1006061e f libucrt:fwrite.obj + 0001:0005f7c5 _fwrite 100607c5 f libucrt:fwrite.obj + 0001:0005f9c3 _setvbuf 100609c3 f libucrt:setvbuf.obj + 0001:0005f9fd __ungetc_nolock 100609fd f libucrt:ungetc.obj + 0001:0005faf1 _ungetc 10060af1 f libucrt:ungetc.obj + 0001:0005fb64 _free 10060b64 f libucrt:free.obj + 0001:0005fb7f ??$__acrt_convert_wcs_mbs_cp@D_WV@@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQBDAAV?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@ABV@@I@Z 10060b7f f i libucrt:rename.obj + 0001:0005fc31 ??$__acrt_mbs_to_wcs_cp@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQBDAAV?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@I@Z 10060c31 f i libucrt:rename.obj + 0001:0005fc4e ??0_LocaleUpdate@@QAE@QAU__crt_locale_pointers@@@Z 10060c4e f i libucrt:rename.obj + 0001:0005fcd0 ?__acrt_get_utf8_acp_compatibility_codepage@@YAIXZ 10060cd0 f i libucrt:rename.obj + 0001:0005fd0f ?_deallocate@?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@AAEXXZ 10060d0f f i libucrt:argv_wildcards.obj + 0001:0005fd0f ?_deallocate@?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@AAEXXZ 10060d0f f i libucrt:rename.obj + 0001:0005fd29 ?allocate@?$__crt_win32_buffer@_WU__crt_win32_buffer_internal_dynamic_resizing@@@@QAEHI@Z 10060d29 f i libucrt:rename.obj + 0001:0005fd68 ?allocate@__crt_win32_buffer_internal_dynamic_resizing@@SAHQAPAXIABV__crt_win32_buffer_empty_debug_info@@@Z 10060d68 f i libucrt:rename.obj + 0001:0005fd87 _rename 10060d87 f libucrt:rename.obj + 0001:000601bc ??$count@D@formatting_buffer@__crt_stdio_output@@QBEIXZ 100611bc f i libucrt:output.obj + 0001:000601d4 ??$ensure_buffer_is_big_enough@D@formatting_buffer@__crt_stdio_output@@QAE_NIAAV__crt_cached_ptd_host@@@Z 100611d4 f i libucrt:output.obj + 0001:00060255 ??$is_overflow_condition@K@__crt_strtox@@YA_NIK@Z 10061255 f i libucrt:output.obj + 0001:00060289 ??$is_wide_character_specifier@D@__crt_stdio_output@@YA_N_KDW4length_modifier@0@@Z 10061289 f i libucrt:output.obj + 0001:000602ba ??$make_c_string_character_source@DPAPAD@__crt_strtox@@YA?AV?$c_string_character_source@D@0@QBDQAPAD@Z 100612ba f i libucrt:output.obj + 0001:000602ba ??$make_c_string_character_source@_WPAPA_W@__crt_strtox@@YA?AV?$c_string_character_source@_W@0@QB_WQAPA_W@Z 100612ba f i libucrt:output.obj + 0001:000602d5 ??$parse_integer@KV?$c_string_character_source@D@__crt_strtox@@$0A@@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 100612d5 f i libucrt:output.obj + 0001:000604e4 ??$scratch_data@D@formatting_buffer@__crt_stdio_output@@QAEPADXZ 100614e4 f i libucrt:output.obj + 0001:00060502 ??$type_case_integer@$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 10061502 f i libucrt:output.obj + 0001:00060502 ??$type_case_integer@$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 10061502 f i libucrt:output.obj + 0001:0006068f ??$type_case_integer@$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1006168f f i libucrt:output.obj + 0001:0006068f ??$type_case_integer@$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1006168f f i libucrt:output.obj + 0001:0006081c ??$type_case_integer@$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1006181c f i libucrt:output.obj + 0001:0006081c ??$type_case_integer@$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_N_N@Z 1006181c f i libucrt:output.obj + 0001:000609a9 ??$type_case_integer_parse_into_buffer@I$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 100619a9 f i libucrt:output.obj + 0001:000609a9 ??$type_case_integer_parse_into_buffer@I$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 100619a9 f i libucrt:output.obj + 0001:00060a0c ??$type_case_integer_parse_into_buffer@I$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 10061a0c f i libucrt:output.obj + 0001:00060a0c ??$type_case_integer_parse_into_buffer@I$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 10061a0c f i libucrt:output.obj + 0001:00060a93 ??$type_case_integer_parse_into_buffer@I$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 10061a93 f i libucrt:output.obj + 0001:00060a93 ??$type_case_integer_parse_into_buffer@I$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEXI_N@Z 10061a93 f i libucrt:output.obj + 0001:00060b10 ??$type_case_integer_parse_into_buffer@_K$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061b10 f i libucrt:output.obj + 0001:00060b10 ??$type_case_integer_parse_into_buffer@_K$07@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061b10 f i libucrt:output.obj + 0001:00060b88 ??$type_case_integer_parse_into_buffer@_K$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061b88 f i libucrt:output.obj + 0001:00060b88 ??$type_case_integer_parse_into_buffer@_K$09@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061b88 f i libucrt:output.obj + 0001:00060c2f ??$type_case_integer_parse_into_buffer@_K$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061c2f f i libucrt:output.obj + 0001:00060c2f ??$type_case_integer_parse_into_buffer@_K$0BA@@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAEX_K_N@Z 10061c2f f i libucrt:output.obj + 0001:00060cb9 ??0?$output_adapter_data@DV?$string_output_adapter@D@__crt_stdio_output@@@__crt_stdio_output@@IAE@ABV?$string_output_adapter@D@1@_KQBDAAV__crt_cached_ptd_host@@QAD@Z 10061cb9 f i libucrt:output.obj + 0001:00060d20 ??1formatting_buffer@__crt_stdio_output@@QAE@XZ 10061d20 f i libucrt:output.obj + 0001:00060d3a ??4?$__crt_unique_heap_ptr@DU__crt_internal_free_policy@@@@QAEAAV0@$$QAV0@@Z 10061d3a f i libucrt:output.obj + 0001:00060d5e ?crop_zeroes@__crt_stdio_output@@YAXPADQAU__crt_locale_pointers@@@Z 10061d5e f i libucrt:output.obj + 0001:00060dbe ?find_next_state@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@ABE?AW4state@2@DW432@@Z 10061dbe f i libucrt:output.obj + 0001:00060dfb ?find_next_state@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@ABE?AW4state@2@DW432@@Z 10061dfb f i libucrt:output.obj + 0001:00060e36 ?force_decimal_point@__crt_stdio_output@@YAXPADQAU__crt_locale_pointers@@@Z 10061e36 f i libucrt:output.obj + 0001:00060e92 ?parse_int_from_format_string@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NQAH@Z 10061e92 f i libucrt:output.obj + 0001:00060e92 ?parse_int_from_format_string@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NQAH@Z 10061e92 f i libucrt:output.obj + 0001:00060f0a ?process@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@QAEHXZ 10061f0a f i libucrt:output.obj + 0001:000611ee ?process@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@QAEHXZ 100621ee f i libucrt:output.obj + 0001:000614c2 ?state_case_size@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100624c2 f i libucrt:output.obj + 0001:000614c2 ?state_case_size@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100624c2 f i libucrt:output.obj + 0001:0006161b ?state_case_type@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006261b f i libucrt:output.obj + 0001:0006161b ?state_case_type@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 1006261b f i libucrt:output.obj + 0001:0006197a ?to_integer_size@__crt_stdio_output@@YAIW4length_modifier@1@@Z 1006297a f i libucrt:output.obj + 0001:000619ce ?type_case_Z@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100629ce f i libucrt:output.obj + 0001:000619ce ?type_case_Z@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 100629ce f i libucrt:output.obj + 0001:00061a31 ?type_case_a@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062a31 f i libucrt:output.obj + 0001:00061a31 ?type_case_a@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062a31 f i libucrt:output.obj + 0001:00061bc2 ?type_case_c_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 10062bc2 f i libucrt:output.obj + 0001:00061bc2 ?type_case_c_tchar@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_ND@Z 10062bc2 f i libucrt:output.obj + 0001:00061c57 ?type_case_n@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062c57 f i libucrt:output.obj + 0001:00061c57 ?type_case_n@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062c57 f i libucrt:output.obj + 0001:00061cdc ?type_case_o@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062cdc f i libucrt:output.obj + 0001:00061cdc ?type_case_o@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062cdc f i libucrt:output.obj + 0001:00061cf9 ?type_case_p@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062cf9 f i libucrt:output.obj + 0001:00061cf9 ?type_case_p@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062cf9 f i libucrt:output.obj + 0001:00061d0f ?type_case_s@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$format_validation_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062d0f f i libucrt:output.obj + 0001:00061d0f ?type_case_s@?$output_processor@DV?$string_output_adapter@D@__crt_stdio_output@@V?$standard_base@DV?$string_output_adapter@D@__crt_stdio_output@@@2@@__crt_stdio_output@@AAE_NXZ 10062d0f f i libucrt:output.obj + 0001:00061d81 ?unget@?$c_string_character_source@D@__crt_strtox@@QAEXD@Z 10062d81 f i libucrt:output.obj + 0001:00061daa ?unget@?$c_string_character_source@_W@__crt_strtox@@QAEX_W@Z 10062daa f i libucrt:output.obj + 0001:00061de0 ?update_locale_slow@__crt_cached_ptd_host@@AAEXXZ 10062de0 f i libucrt:output.obj + 0001:00061e3b ?validate@?$c_string_character_source@D@__crt_strtox@@QBE_NXZ 10062e3b f i libucrt:output.obj + 0001:00061e3b ?validate@?$c_string_character_source@_W@__crt_strtox@@QBE_NXZ 10062e3b f i libucrt:output.obj + 0001:00061e56 ?validate@?$string_output_adapter@D@__crt_stdio_output@@QBE_NAAV__crt_cached_ptd_host@@@Z 10062e56 f i libucrt:output.obj + 0001:00061e87 ?write_string@?$string_output_adapter@D@__crt_stdio_output@@QBEXQBDHQAHAAV__crt_cached_ptd_host@@@Z 10062e87 f i libucrt:output.obj + 0001:00061eee ___acrt_locale_get_ctype_array_value 10062eee f i libucrt:output.obj + 0001:00061f10 ___stdio_common_vsprintf 10062f10 f libucrt:output.obj + 0001:00061f51 ___stdio_common_vsprintf_s 10062f51 f libucrt:output.obj + 0001:00061f92 ___acrt_errno_from_os_error 10062f92 f libucrt:errno.obj + 0001:00061fd5 ___acrt_errno_map_os_error 10062fd5 f libucrt:errno.obj + 0001:00061ff8 ___acrt_errno_map_os_error_ptd 10062ff8 f libucrt:errno.obj + 0001:0006201c ___doserrno 1006301c f libucrt:errno.obj + 0001:0006202f __errno 1006302f f libucrt:errno.obj + 0001:00062042 _frexp 10063042 f libucrt:frexp.obj + 0001:0006213c _calloc 1006313c f libucrt:calloc.obj + 0001:00062147 _abort 10063147 f libucrt:abort.obj + 0001:0006218b ??$is_overflow_condition@_K@__crt_strtox@@YA_NI_K@Z 1006318b f i libucrt:atox.obj + 0001:000621cc ??$parse_integer@KV?$c_string_character_source@D@__crt_strtox@@$00@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 100631cc f i libucrt:atox.obj + 0001:00062413 ??$parse_integer@KV?$c_string_character_source@_W@__crt_strtox@@$00@__crt_strtox@@YAKAAV__crt_cached_ptd_host@@V?$c_string_character_source@_W@0@H_N@Z 10063413 f i libucrt:atox.obj + 0001:00062a21 ??$parse_integer@_KV?$c_string_character_source@D@__crt_strtox@@$00@__crt_strtox@@YA_KAAV__crt_cached_ptd_host@@V?$c_string_character_source@D@0@H_N@Z 10063a21 f i libucrt:atox.obj + 0001:00062ce9 __ischartype_l 10063ce9 f i libucrt:atox.obj + 0001:00062d40 __wtol 10063d40 f libucrt:atox.obj + 0001:00062d7f _atoi 10063d7f f libucrt:atox.obj + 0001:00062d7f _atol 10063d7f f libucrt:atox.obj + 0001:00062dbe ??$assemble_floating_point_value_t@M@__crt_strtox@@YA?AW4SLD_STATUS@@_NH_KAAM@Z 10063dbe f i libucrt:strtod.obj + 0001:00062dee ??$assemble_floating_point_value_t@N@__crt_strtox@@YA?AW4SLD_STATUS@@_NH_KAAN@Z 10063dee f i libucrt:strtod.obj + 0001:00062ebf ??$convert_decimal_string_to_floating_type@M@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAM@Z 10063ebf f i libucrt:strtod.obj + 0001:00062ee0 ??$convert_hexadecimal_string_to_floating_type@M@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@0@AAM@Z 10063ee0 f i libucrt:strtod.obj + 0001:00062f01 ??$parse_floating_point@V?$c_string_character_source@D@__crt_strtox@@M@__crt_strtox@@YA?AW4SLD_STATUS@@QAU__crt_locale_pointers@@V?$c_string_character_source@D@0@QAM@Z 10063f01 f i libucrt:strtod.obj + 0001:00062f81 ??$parse_floating_point_from_source@V?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA?AW4floating_point_parse_result@0@QAU__crt_locale_pointers@@AAV?$c_string_character_source@D@0@AAUfloating_point_string@0@@Z 10063f81 f i libucrt:strtod.obj + 0001:00063399 ??$parse_floating_point_possible_infinity@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$c_string_character_source@D@0@PBD@Z 10064399 f i libucrt:strtod.obj + 0001:0006344c ??$parse_floating_point_possible_nan@DV?$c_string_character_source@D@__crt_strtox@@PBD@__crt_strtox@@YA?AW4floating_point_parse_result@0@AADAAV?$c_string_character_source@D@0@PBD@Z 1006444c f i libucrt:strtod.obj + 0001:00063550 ??$parse_floating_point_possible_nan_is_ind@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@0@@Z 10064550 f i libucrt:strtod.obj + 0001:0006358c ??$parse_floating_point_possible_nan_is_snan@DV?$c_string_character_source@D@__crt_strtox@@@__crt_strtox@@YA_NAADAAV?$c_string_character_source@D@0@@Z 1006458c f i libucrt:strtod.obj + 0001:000635c8 ??$parse_floating_point_write_result@M@__crt_strtox@@YA?AW4SLD_STATUS@@W4floating_point_parse_result@0@ABUfloating_point_string@0@QAM@Z 100645c8 f i libucrt:strtod.obj + 0001:00063734 ??R@@QBE@XZ 10064734 f i libucrt:strtod.obj + 0001:00063734 ??R@@QBE@XZ 10064734 f i libucrt:strtod.obj + 0001:00063734 ??R@@QBE@XZ 10064734 f i libucrt:strtod.obj + 0001:0006375a ?as_double@floating_point_value@__crt_strtox@@QBEAANXZ 1006475a f i libucrt:strtod.obj + 0001:0006377f ?as_float@floating_point_value@__crt_strtox@@QBEAAMXZ 1006477f f i libucrt:strtod.obj + 0001:000637a4 ?assemble_floating_point_infinity@__crt_strtox@@YAX_NABVfloating_point_value@1@@Z 100647a4 f i libucrt:strtod.obj + 0001:000637e4 ?assemble_floating_point_value@__crt_strtox@@YA?AW4SLD_STATUS@@_KH_N1ABVfloating_point_value@1@@Z 100647e4 f i libucrt:strtod.obj + 0001:00063b3d ?assemble_floating_point_value_from_big_integer@__crt_strtox@@YA?AW4SLD_STATUS@@ABUbig_integer@1@I_N1ABVfloating_point_value@1@@Z 10064b3d f i libucrt:strtod.obj + 0001:00063ccf ?assemble_floating_point_zero@__crt_strtox@@YAX_NABVfloating_point_value@1@@Z 10064ccf f i libucrt:strtod.obj + 0001:00063d04 ?convert_decimal_string_to_floating_type_common@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@1@ABVfloating_point_value@1@@Z 10064d04 f i libucrt:strtod.obj + 0001:00065aaa ?convert_hexadecimal_string_to_floating_type_common@__crt_strtox@@YA?AW4SLD_STATUS@@ABUfloating_point_string@1@ABVfloating_point_value@1@@Z 10066aaa f i libucrt:strtod.obj + 0001:00065b50 ?denormal_mantissa_mask@floating_point_value@__crt_strtox@@QBE_KXZ 10066b50 f i libucrt:strtod.obj + 0001:00065b70 ?divide@__crt_strtox@@YA_KAAUbig_integer@1@ABU21@@Z 10066b70 f i libucrt:strtod.obj + 0001:0006601b ?normal_mantissa_mask@floating_point_value@__crt_strtox@@QBE_KXZ 1006701b f i libucrt:strtod.obj + 0001:00066032 _strtof 10067032 f libucrt:strtod.obj + 0001:00066050 _strcspn 10067050 f libucrt:strcspn.obj + 0001:000660a0 _strncmp 100670a0 f libucrt:strncmp.obj + 0001:000663a9 __localtime64_s 100673a9 f libucrt:localtime.obj + 0001:000663b4 _localeconv 100673b4 f libucrt:localeconv.obj + 0001:000663dc ??$__acrt_convert_wcs_mbs_cp@_WDV@@U__crt_win32_buffer_no_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@ABV@@I@Z 100673dc f i libucrt:strftime.obj + 0001:0006649e ??$__acrt_wcs_to_mbs_cp@U__crt_win32_buffer_no_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@I@Z 1006749e f i libucrt:strftime.obj + 0001:000664bb ??R@@QBE@IQB_WQADI@Z 100674bb f i libucrt:strftime.obj + 0001:000664bb ??R@@QBE@IQB_WQADI@Z 100674bb f i libucrt:argv_wildcards.obj + 0001:000664df ?allocate@?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@QAEHI@Z 100674df f i libucrt:strftime.obj + 0001:00066506 ?set_to_nullptr@?$__crt_win32_buffer@DU__crt_win32_buffer_no_resizing@@@@QAEXXZ 10067506 f i libucrt:strftime.obj + 0001:0006651a __Gettnames 1006751a f libucrt:strftime.obj + 0001:0006651f __Strftime 1006751f f libucrt:strftime.obj + 0001:0006653f __Strftime_l 1006753f f libucrt:strftime.obj + 0001:0006663a __dclass 1006763a f libucrt:nan.obj + 0001:0006664b __dsign 1006764b f libucrt:nan.obj + 0001:0006665b __ldclass 1006765b f libucrt:nanl.obj + 0001:0006666c ___ascii_stricmp 1006766c f libucrt:stricmp.obj + 0001:000666a5 __strcmpi 100676a5 f libucrt:stricmp.obj + 0001:000666a5 __stricmp 100676a5 f libucrt:stricmp.obj + 0001:000666ee __stricmp_l 100676ee f libucrt:stricmp.obj + 0001:0006677e _strtoull 1006777e f libucrt:strtox.obj + 0001:000667ca _wcstol 100677ca f libucrt:strtox.obj + 0001:00066810 __tolower_l 10067810 f libucrt:tolower_toupper.obj + 0001:0006690e _tolower 1006790e f libucrt:tolower_toupper.obj + 0001:00066940 __libm_sse2_sqrt_precise 10067940 f libucrt:sqrt_sse2_precise.obj + 0001:00066a40 _ceil 10067a40 f libucrt:ceil_pentium4.obj + 0001:00066a80 __ceil_pentium4 10067a80 f libucrt:ceil_pentium4.obj + 0001:00066b5d __strnicmp 10067b5d f libucrt:strnicmp.obj + 0001:00066bca __strnicmp_l 10067bca f libucrt:strnicmp.obj + 0001:00066c95 _terminate 10067c95 f libucrt:terminate.obj + 0001:00066cd1 _malloc 10067cd1 f libucrt:malloc.obj + 0001:00066cdc _strcpy_s 10067cdc f libucrt:strcpy_s.obj + 0001:00066d36 _wcsncmp 10067d36 f libucrt:wcsncmp.obj + 0001:000670ae ___acrt_freeptd 100680ae f libucrt:per_thread_data.obj + 0001:000670da ___acrt_getptd 100680da f libucrt:per_thread_data.obj + 0001:00067195 ___acrt_getptd_head 10068195 f libucrt:per_thread_data.obj + 0001:0006722b ___acrt_getptd_noexit 1006822b f libucrt:per_thread_data.obj + 0001:000672dc ___acrt_getptd_noexit_explicit 100682dc f libucrt:per_thread_data.obj + 0001:0006737f ___acrt_initialize_ptd 1006837f f libucrt:per_thread_data.obj + 0001:000673ab ___acrt_uninitialize_ptd 100683ab f libucrt:per_thread_data.obj + 0001:000674c5 ??0_expandlocale_locale_name_cache@@QAE@QA_WIQAU__crt_qualified_locale_data@@@Z 100684c5 f i libucrt:wsetlocale.obj + 0001:0006750f ??1_expandlocale_locale_name_cache@@QAE@XZ 1006850f f i libucrt:wsetlocale.obj + 0001:000676a7 ?commit_locale_name@_expandlocale_locale_name_cache@@QAEXQB_WI@Z 100686a7 f i libucrt:wsetlocale.obj + 0001:000676eb ?commit_locale_name_cache_already_updated@_expandlocale_locale_name_cache@@QAEXQB_WI@Z 100686eb f i libucrt:wsetlocale.obj + 0001:00067720 ___acrt_copy_locale_name 10068720 f libucrt:wsetlocale.obj + 0001:00067780 ___acrt_set_locale_changed 10068780 f libucrt:wsetlocale.obj + 0001:0006778b ___acrt_uninitialize_locale 1006878b f libucrt:wsetlocale.obj + 0001:000677b2 ___lc_lctowcs 100687b2 f libucrt:wsetlocale.obj + 0001:00067822 ___lc_wcstolc 10068822 f libucrt:wsetlocale.obj + 0001:00067d54 __wcscats 10068d54 f libucrt:wsetlocale.obj + 0001:00067d95 __wsetlocale 10068d95 f libucrt:wsetlocale.obj + 0001:00068a8a __calloc_base 10069a8a f libucrt:calloc_base.obj + 0001:00068ae7 __free_base 10069ae7 f libucrt:free_base.obj + 0001:00068baa ??$__crt_fast_encode_pointer@P6AHXZ@@YAP6AHXZQ6AHXZ@Z 10069baa f i libucrt:onexit.obj + 0001:00068baa ??$__crt_fast_encode_pointer@P6GHPA_WKJ@Z@@YAP6GHPA_WKJ@ZQ6GH0KJ@Z@Z 10069baa f i libucrt:winapi_thunks.obj + 0001:00068baa ??$__crt_fast_encode_pointer@PAP6AXXZ@@YAPAP6AXXZQAP6AXXZ@Z 10069baa f i libucrt:onexit.obj + 0001:00068baa ??$__crt_fast_encode_pointer@PAX@@YAPAXQAX@Z 10069baa f i libucrt:winapi_thunks.obj + 0001:00068e6a ___acrt_AppPolicyGetProcessTerminationMethodInternal@4 10069e6a f libucrt:winapi_thunks.obj + 0001:00068eaa ___acrt_AreFileApisANSI@0 10069eaa f libucrt:winapi_thunks.obj + 0001:00068ec9 ___acrt_CompareStringEx@36 10069ec9 f libucrt:winapi_thunks.obj + 0001:00068f26 ___acrt_EnumSystemLocalesEx@16 10069f26 f libucrt:winapi_thunks.obj + 0001:00068f7a ___acrt_FlsAlloc@4 10069f7a f libucrt:winapi_thunks.obj + 0001:00068fb9 ___acrt_FlsFree@4 10069fb9 f libucrt:winapi_thunks.obj + 0001:00068ff9 ___acrt_FlsGetValue@4 10069ff9 f libucrt:winapi_thunks.obj + 0001:00069038 ___acrt_FlsSetValue@8 1006a038 f libucrt:winapi_thunks.obj + 0001:0006907a ___acrt_GetDateFormatEx@28 1006a07a f libucrt:winapi_thunks.obj + 0001:000690d1 ___acrt_GetLocaleInfoEx@16 1006a0d1 f libucrt:winapi_thunks.obj + 0001:00069110 ___acrt_GetTimeFormatEx@24 1006a110 f libucrt:winapi_thunks.obj + 0001:00069155 ___acrt_GetUserDefaultLocaleName@8 1006a155 f libucrt:winapi_thunks.obj + 0001:00069191 ___acrt_InitializeCriticalSectionEx@12 1006a191 f libucrt:winapi_thunks.obj + 0001:000691dc ___acrt_IsValidLocaleName@4 1006a1dc f libucrt:winapi_thunks.obj + 0001:00069214 ___acrt_LCIDToLocaleName@16 1006a214 f libucrt:winapi_thunks.obj + 0001:00069253 ___acrt_LCMapStringEx@36 1006a253 f libucrt:winapi_thunks.obj + 0001:000692b0 ___acrt_LocaleNameToLCID@8 1006a2b0 f libucrt:winapi_thunks.obj + 0001:000692e1 ___acrt_can_use_vista_locale_apis 1006a2e1 f libucrt:winapi_thunks.obj + 0001:000692ec ___acrt_eagerly_load_locale_apis 1006a2ec f libucrt:winapi_thunks.obj + 0001:00069323 ___acrt_initialize_winapi_thunks 1006a323 f libucrt:winapi_thunks.obj + 0001:00069337 ___acrt_uninitialize_winapi_thunks 1006a337 f libucrt:winapi_thunks.obj + 0001:0006936d __fcloseall 1006a36d f libucrt:closeall.obj + 0001:00069418 ___acrt_stdio_free_buffer_nolock 1006a418 f libucrt:_freebuf.obj + 0001:000695be ___acrt_initialize_lowio 1006a5be f libucrt:ioinit.obj + 0001:0006961e ___acrt_uninitialize_lowio 1006a61e f libucrt:ioinit.obj + 0001:0006964a __fileno 1006a64a f libucrt:fileno.obj + 0001:00069702 __close_internal 1006a702 f libucrt:close.obj + 0001:000697a5 __close_nolock 1006a7a5 f libucrt:close.obj + 0001:000697d5 __close_nolock_internal 1006a7d5 f libucrt:close.obj + 0001:00069875 ?__acrt_stdio_allocate_stream@@YA?AV__crt_stdio_stream@@XZ 1006a875 f libucrt:stream.obj + 0001:000698de ?__acrt_stdio_free_stream@@YAXV__crt_stdio_stream@@@Z 1006a8de f libucrt:stream.obj + 0001:000699db ___acrt_initialize_locks 1006a9db f libucrt:locks.obj + 0001:00069a1c ___acrt_lock 1006aa1c f libucrt:locks.obj + 0001:00069a33 ___acrt_uninitialize_locks 1006aa33 f libucrt:locks.obj + 0001:00069a64 ___acrt_unlock 1006aa64 f libucrt:locks.obj + 0001:00069a7b __lock_locales 1006aa7b f libucrt:locks.obj + 0001:00069a89 __unlock_locales 1006aa89 f libucrt:locks.obj + 0001:00069b34 __commit 1006ab34 f libucrt:commit.obj + 0001:0006a353 __write 1006b353 f libucrt:write.obj + 0001:0006a38a __write_internal 1006b38a f libucrt:write.obj + 0001:0006a49b __write_nolock 1006b49b f libucrt:write.obj + 0001:0006a846 ___acrt_stdio_refill_and_read_narrow_nolock 1006b846 f libucrt:_filbuf.obj + 0001:0006ae48 __ftelli64 1006be48 f libucrt:ftell.obj + 0001:0006ae7e __ftelli64_nolock_internal 1006be7e f libucrt:ftell.obj + 0001:0006b0d7 ___acrt_stdio_flush_and_write_narrow_nolock 1006c0d7 f libucrt:_flsbuf.obj + 0001:0006b5be __read 1006c5be f libucrt:read.obj + 0001:0006b6d7 __read_nolock 1006c6d7 f libucrt:read.obj + 0001:0006bc0a __lseeki64 1006cc0a f libucrt:lseek.obj + 0001:0006bc4a __lseeki64_internal 1006cc4a f libucrt:lseek.obj + 0001:0006bc68 __lseeki64_nolock 1006cc68 f libucrt:lseek.obj + 0001:0006bca8 __lseeki64_nolock_internal 1006cca8 f libucrt:lseek.obj + 0001:0006bcc6 ___acrt_should_use_temporary_buffer 1006ccc6 f libucrt:_sftbuf.obj + 0001:0006bd04 ___acrt_stdio_begin_temporary_buffering_nolock 1006cd04 f libucrt:_sftbuf.obj + 0001:0006bdaf ___acrt_stdio_end_temporary_buffering_nolock 1006cdaf f libucrt:_sftbuf.obj + 0001:0006bded ___acrt_stdio_allocate_buffer_nolock 1006cded f libucrt:_getbuf.obj + 0001:0006be49 __malloc_base 1006ce49 f libucrt:malloc_base.obj + 0001:0006bf2f ___acrt_MultiByteToWideChar 1006cf2f f libucrt:multibytetowidechar.obj + 0001:0006bf59 ___acrt_update_locale_info 1006cf59 f libucrt:locale_update.obj + 0001:0006bf86 ___acrt_update_locale_info_explicit 1006cf86 f libucrt:locale_update.obj + 0001:0006bfb7 ___acrt_update_multibyte_info 1006cfb7 f libucrt:locale_update.obj + 0001:0006bfe5 ___acrt_update_multibyte_info_explicit 1006cfe5 f libucrt:locale_update.obj + 0001:0006c016 __wrename 1006d016 f libucrt:wrename.obj + 0001:0006c043 _strnlen 1006d043 f libucrt:strnlen.obj + 0001:0006c165 _wcsnlen 1006d165 f libucrt:strnlen.obj + 0001:0006c315 ?__acrt_fp_classify@@YA?AW4__acrt_fp_class@@ABN@Z 1006d315 f i libucrt:cvt.obj + 0001:0006cced ___acrt_fp_format 1006dced f libucrt:cvt.obj + 0001:0006ce6e __wctomb_internal 1006de6e f libucrt:wctomb.obj + 0001:0006cfd8 __mbtowc_internal 1006dfd8 f libucrt:mbtowc.obj + 0001:0006d10b __get_printf_count_output 1006e10b f libucrt:printf_count_output.obj + 0001:0006d120 __errcode 1006e120 f libucrt:fpexcept.obj + 0001:0006d154 __except1 1006e154 f libucrt:fpexcept.obj + 0001:0006d222 __handle_exc 1006e222 f libucrt:fpexcept.obj + 0001:0006d4a2 __raise_exc 1006e4a2 f libucrt:fpexcept.obj + 0001:0006d4c5 __raise_exc_ex 1006e4c5 f libucrt:fpexcept.obj + 0001:0006d7b6 __set_errno_from_matherr 1006e7b6 f libucrt:fpexcept.obj + 0001:0006d7e7 __umatherr 1006e7e7 f libucrt:fpexcept.obj + 0001:0006d887 __decomp 1006e887 f libucrt:util.obj + 0001:0006d959 __set_exp 1006e959 f libucrt:util.obj + 0001:0006d986 __sptype 1006e986 f libucrt:util.obj + 0001:0006d9e9 ___set_fpsr_sse2 1006e9e9 f libucrt:fpctrl.obj + 0001:0006da69 __clrfp 1006ea69 f libucrt:fpctrl.obj + 0001:0006da7a __ctrlfp 1006ea7a f libucrt:fpctrl.obj + 0001:0006daa4 __set_statfp 1006eaa4 f libucrt:fpctrl.obj + 0001:0006dafd __statfp 1006eafd f libucrt:fpctrl.obj + 0001:0006db5a ??$__crt_fast_decode_pointer@P6AHI@Z@@YAP6AHI@ZQ6AHI@Z@Z 1006eb5a f i libucrt:new_handler.obj + 0001:0006db5a ??$__crt_fast_decode_pointer@P6AXH@Z@@YAP6AXH@ZQ6AXH@Z@Z 1006eb5a f i libucrt:signal.obj + 0001:0006db5a ??$__crt_fast_decode_pointer@P6GXPAXK0@Z@@YAP6GXPAXK0@ZQ6GX0K0@Z@Z 1006eb5a f i libucrt:exit.obj + 0001:0006de02 ___acrt_initialize_thread_local_exit_callback 1006ee02 f libucrt:exit.obj + 0001:0006de11 __cexit 1006ee11 f libucrt:exit.obj + 0001:0006de20 __exit 1006ee20 f libucrt:exit.obj + 0001:0006de36 __is_c_termination_complete 1006ee36 f libucrt:exit.obj + 0001:0006df0f ___acrt_get_sigabrt_handler 1006ef0f f libucrt:signal.obj + 0001:0006df36 ___acrt_initialize_signal_handlers 1006ef36 f libucrt:signal.obj + 0001:0006df54 _raise 1006ef54 f libucrt:signal.obj + 0001:0006e146 ___pctype_func 1006f146 f libucrt:ctype.obj + 0001:0006e16a _iswctype 1006f16a f libucrt:iswctype.obj + 0001:0006e1d3 __isctype_l 1006f1d3 f libucrt:isctype.obj + 0001:0006e29e _fegetround 1006f29e f libucrt:fegetround.obj + 0001:0006e2ab ___acrt_initialize_timeset 1006f2ab f libucrt:timeset.obj + 0001:0006e2e0 ___daylight 1006f2e0 f libucrt:timeset.obj + 0001:0006e2e6 ___dstbias 1006f2e6 f libucrt:timeset.obj + 0001:0006e2ec ___timezone 1006f2ec f libucrt:timeset.obj + 0001:0006e2f2 ___tzname 1006f2f2 f libucrt:timeset.obj + 0001:0006e2f8 ___wide_tzname 1006f2f8 f libucrt:timeset.obj + 0001:0006e2fe __get_daylight 1006f2fe f libucrt:timeset.obj + 0001:0006e32a __get_dstbias 1006f32a f libucrt:timeset.obj + 0001:0006e356 __get_timezone 1006f356 f libucrt:timeset.obj + 0001:0006e382 ??$__crt_time_elapsed_leap_years@H@@YAHH@Z 1006f382 f i libucrt:gmtime.obj + 0001:0006e3bc ??$__crt_time_is_leap_year@H@@YA_NH@Z 1006f3bc f i libucrt:gmtime.obj + 0001:0006e602 __gmtime64_s 1006f602 f libucrt:gmtime.obj + 0001:0006eecc ___tzset 1006fecc f libucrt:tzset.obj + 0001:0006ef29 __isindst 1006ff29 f libucrt:tzset.obj + 0001:0006f00d ___acrt_WideCharToMultiByte 1007000d f libucrt:widechartomultibyte.obj + 0001:0006f079 ??1?$__crt_scoped_stack_ptr@_W@@QAE@XZ 10070079 f i libucrt:wcsftime.obj + 0001:000700dd __W_Gettnames 100710dd f libucrt:wcsftime.obj + 0001:000707d9 __Wcsftime_l 100717d9 f libucrt:wcsftime.obj + 0001:00070939 __freea_crt 10071939 f i libucrt:wcsftime.obj + 0001:00070959 __dtest 10071959 f libucrt:_test.obj + 0001:000709bd __ldtest 100719bd f libucrt:_test.obj + 0001:00070bb7 ___acrt_LCMapStringA 10071bb7 f libucrt:lcmapstringa.obj + 0001:00070c00 ___libm_error_support 10071c00 f libucrt:libm_error.obj + 0001:00070e00 _sqrt 10071e00 f libucrt:sqrt.obj + 0001:00070e0e ___acrt_initialize_sse2 10071e0e f libucrt:mathfcns.obj + 0001:00070e1e __ceil_default 10071e1e f libucrt:ceil.obj + 0001:00070ee0 ___ascii_strnicmp 10071ee0 f libucrt:_strnicm.obj + 0001:00070f41 ___acrt_add_locale_ref 10071f41 f libucrt:locale_refcounting.obj + 0001:00070fbe ___acrt_free_locale 10071fbe f libucrt:locale_refcounting.obj + 0001:00071106 ___acrt_locale_add_lc_time_reference 10072106 f libucrt:locale_refcounting.obj + 0001:0007112f ___acrt_locale_free_lc_time_if_unreferenced 1007212f f libucrt:locale_refcounting.obj + 0001:00071160 ___acrt_locale_release_lc_time_reference 10072160 f libucrt:locale_refcounting.obj + 0001:00071189 ___acrt_release_locale_ref 10072189 f libucrt:locale_refcounting.obj + 0001:0007120a ___acrt_update_thread_locale_data 1007220a f libucrt:locale_refcounting.obj + 0001:0007128b __updatetlocinfoEx_nolock 1007228b f libucrt:locale_refcounting.obj + 0001:00071857 ___acrt_initialize_multibyte 10072857 f libucrt:mbctype.obj + 0001:0007189f ___acrt_update_thread_multibyte_data 1007289f f libucrt:mbctype.obj + 0001:000718b2 __setmbcp_nolock 100728b2 f libucrt:mbctype.obj + 0001:00071ab7 __seh_filter_dll 10072ab7 f libucrt:exception_filter.obj + 0001:00071ad7 __seh_filter_exe 10072ad7 f libucrt:exception_filter.obj + 0001:00071c1d ____lc_codepage_func 10072c1d f libucrt:initctype.obj + 0001:00071c42 ____lc_locale_name_func 10072c42 f libucrt:initctype.obj + 0001:00071c69 ____mb_cur_max_func 10072c69 f libucrt:initctype.obj + 0001:00071c8e ___acrt_locale_initialize_ctype 10072c8e f libucrt:initctype.obj + 0001:000720eb ___acrt_locale_free_monetary 100730eb f libucrt:initmon.obj + 0001:000721e9 ___acrt_locale_initialize_monetary 100731e9 f libucrt:initmon.obj + 0001:0007254a ___acrt_locale_free_numeric 1007354a f libucrt:initnum.obj + 0001:000725b3 ___acrt_locale_initialize_numeric 100735b3 f libucrt:initnum.obj + 0001:00072a71 ___acrt_locale_free_time 10073a71 f libucrt:inittime.obj + 0001:00072b55 ___acrt_locale_initialize_time 10073b55 f libucrt:inittime.obj + 0001:00072bd0 _wcscat_s 10073bd0 f libucrt:wcscat_s.obj + 0001:00072c3f _wcscpy_s 10073c3f f libucrt:wcscpy_s.obj + 0001:00072d8b _wcsncat_s 10073d8b f libucrt:wcsncat_s.obj + 0001:00072e64 _wcsncpy_s 10073e64 f libucrt:wcsncpy_s.obj + 0001:00072e6f _wcscspn 10073e6f f libucrt:wcscspn.obj + 0001:00072ec8 _wcspbrk 10073ec8 f libucrt:wcspbrk.obj + 0001:00072f16 ___acrt_GetStringTypeA 10073f16 f libucrt:getstringtypea.obj + 0001:0007370e ___acrt_get_qualified_locale 1007470e f libucrt:get_qualified_locale.obj + 0001:00074083 ___acrt_get_qualified_locale_downlevel 10075083 f libucrt:getqloc_downlevel.obj + 0001:00074273 ___acrt_initialize_new_handler 10075273 f libucrt:new_handler.obj + 0001:00074282 __callnewh 10075282 f libucrt:new_handler.obj + 0001:000742ae __query_new_handler 100752ae f libucrt:new_handler.obj + 0001:00074305 __query_new_mode 10075305 f libucrt:new_mode.obj + 0001:0007430c ___acrt_initialize_heap 1007530c f libucrt:heap_handle.obj + 0001:0007431d ___acrt_uninitialize_heap 1007531d f libucrt:heap_handle.obj + 0001:00074377 ___acrt_DownlevelLCIDToLocaleName 10075377 f libucrt:lcidtoname_downlevel.obj + 0001:0007441a ___acrt_DownlevelLocaleNameToLCID 1007541a f libucrt:lcidtoname_downlevel.obj + 0001:00074446 ___acrt_get_process_end_policy 10075446 f libucrt:win_policies.obj + 0001:0007446d ___acrt_lowio_create_handle_array 1007546d f libucrt:osfinfo.obj + 0001:000744e8 ___acrt_lowio_destroy_handle_array 100754e8 f libucrt:osfinfo.obj + 0001:0007451d ___acrt_lowio_ensure_fh_exists 1007551d f libucrt:osfinfo.obj + 0001:000745bb ___acrt_lowio_lock_fh 100755bb f libucrt:osfinfo.obj + 0001:000745de ___acrt_lowio_set_os_handle 100755de f libucrt:osfinfo.obj + 0001:00074670 ___acrt_lowio_unlock_fh 10075670 f libucrt:osfinfo.obj + 0001:00074693 __alloc_osfhnd 10075693 f libucrt:osfinfo.obj + 0001:000747a6 __free_osfhnd 100757a6 f libucrt:osfinfo.obj + 0001:00074837 __get_osfhandle 10075837 f libucrt:osfinfo.obj + 0001:000748a1 __isatty 100758a1 f libucrt:isatty.obj + 0001:00074923 ?__mbrtowc_utf8@__crt_mbstring@@YAIPA_WPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10075923 f libucrt:mbrtowc.obj + 0001:00074966 ?__mbsrtowcs_utf8@__crt_mbstring@@YAIPA_WPAPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10075966 f libucrt:mbrtowc.obj + 0001:00074a6e __putwch_nolock 10075a6e f libucrt:putwch.obj + 0001:00074b51 ___acrt_fp_strflt_to_string 10075b51 f libucrt:_fptostr.obj + 0001:00074c4b ___acrt_fltout 10075c4b f libucrt:cfout.obj + 0001:00076233 ?__c32rtomb_utf8@__crt_mbstring@@YAIPAD_UPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10077233 f libucrt:c32rtomb.obj + 0001:000762e3 ___acrt_has_user_matherr 100772e3 f libucrt:matherr.obj + 0001:00076300 ___acrt_initialize_user_matherr 10077300 f libucrt:matherr.obj + 0001:0007630f ___acrt_invoke_user_matherr 1007730f f libucrt:matherr.obj + 0001:00076345 __initterm 10077345 f libucrt:initterm.obj + 0001:00076370 __initterm_e 10077370 f libucrt:initterm.obj + 0001:00076630 __crt_atexit 10077630 f libucrt:onexit.obj + 0001:00076646 __execute_onexit_table 10077646 f libucrt:onexit.obj + 0001:00076684 __initialize_onexit_table 10077684 f libucrt:onexit.obj + 0001:000766ad __register_onexit_function 100776ad f libucrt:onexit.obj + 0001:000766e0 ___acrt_app_verifier_enabled 100776e0 f libucrt:peb_access.obj + 0001:000766f2 ___acrt_is_secure_process 100776f2 f libucrt:peb_access.obj + 0001:00076705 ___acrt_GetStringTypeW 10077705 f libucrt:getstringtypew.obj + 0001:000769e7 ___acrt_fenv_get_common_round_control 100779e7 f libucrt:_fenvutils.obj + 0001:00076a09 ___acrt_fenv_get_control 10077a09 f libucrt:_fenvutils.obj + 0001:00076a89 ___acrt_fenv_get_status 10077a89 f libucrt:_fenvutils.obj + 0001:00076b33 ___acrt_fenv_set_control 10077b33 f libucrt:_fenvutils.obj + 0001:00076bae ___acrt_fenv_set_status 10077bae f libucrt:_fenvutils.obj + 0001:00076e3b __wgetenv_s 10077e3b f libucrt:getenv.obj + 0001:00076e46 ___ascii_wcsicmp 10077e46 f libucrt:wcsicmp.obj + 0001:00076e83 __towlower_internal 10077e83 f i libucrt:wcsicmp.obj + 0001:00076ec2 __wcsicmp 10077ec2 f libucrt:wcsicmp.obj + 0001:00076f0b __wcsicmp_l 10077f0b f libucrt:wcsicmp.obj + 0001:00076fc3 ___strncnt 10077fc3 f libucrt:strncnt.obj + 0001:00076fe0 __twoToTOS 10077fe0 f libucrt:common.obj + 0001:00076ff5 __load_CW 10077ff5 f libucrt:common.obj + 0001:0007700c __convertTOStoQNaN 1007800c f libucrt:common.obj + 0001:00077025 __fload_withFB 10078025 f libucrt:common.obj + 0001:00077068 __checkTOS_withFB 10078068 f libucrt:common.obj + 0001:0007707e __fast_exit 1007807e f libucrt:common.obj + 0001:0007708b __math_exit 1007808b f libucrt:common.obj + 0001:000770b5 __check_overflow_exit 100780b5 f libucrt:common.obj + 0001:000770c9 __check_range_exit 100780c9 f libucrt:common.obj + 0001:00077170 __CIsqrt 10078170 f libucrt:sqrt_impl.obj + 0001:00077184 __sqrt_common 10078184 libucrt:sqrt_impl.obj + 0001:00077221 __frnd 10078221 f libucrt:frnd.obj + 0001:00077323 ___acrt_GetLocaleInfoA 10078323 f libucrt:getlocaleinfoa.obj + 0001:00077601 __itow_s 10078601 f libucrt:xtoa.obj + 0001:00077634 ___ascii_wcsnicmp 10078634 f libucrt:wcsnicmp.obj + 0001:00077683 __wcsnicmp 10078683 f libucrt:wcsnicmp.obj + 0001:000776cf __wcsnicmp_l 100786cf f libucrt:wcsnicmp.obj + 0001:000777a2 __query_app_type 100787a2 f libucrt:report_runtime_error.obj + 0001:000777a8 ?__mbrtoc32_utf8@__crt_mbstring@@YAIPA_UPBDIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 100787a8 f libucrt:mbrtoc32.obj + 0001:00077978 ___dcrt_lowio_ensure_console_output_initialized 10078978 f libucrt:initcon.obj + 0001:00077997 ___dcrt_terminate_console_output 10078997 f libucrt:initcon.obj + 0001:000779ae ___dcrt_write_console 100789ae f libucrt:initcon.obj + 0001:00077a03 __controlfp_s 10078a03 f libucrt:contrlfp.obj + 0001:00077a62 _fegetenv 10078a62 f libucrt:fegetenv.obj + 0001:00077a7f _fesetenv 10078a7f f libucrt:fesetenv.obj + 0001:00077acb _feholdexcept 10078acb f libucrt:feholdexcept.obj + 0001:00077b20 __CIlog10 10078b20 f libucrt:log10_impl.obj + 0001:00077b5b __CIlog10_default 10078b5b f libucrt:log10_impl.obj + 0001:00077b6f __log10_default 10078b6f libucrt:log10_impl.obj + 0001:00077c30 ?reset_and_return@__crt_mbstring@@YAIIPAU_Mbstatet@@@Z 10078c30 f libucrt:common_utf8.obj + 0001:00077c44 ?return_illegal_sequence@__crt_mbstring@@YAIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10078c44 f libucrt:common_utf8.obj + 0001:00077c66 __recalloc_base 10078c66 f libucrt:recalloc.obj + 0001:00077cd3 __wcsnicoll 10078cd3 f libucrt:wcsnicol.obj + 0001:00077d40 __wcsnicoll_l 10078d40 f libucrt:wcsnicol.obj + 0001:000781c1 ___dcrt_get_or_create_wide_environment_nolock 100791c1 f libucrt:environment_initialization.obj + 0001:000781c6 ___dcrt_uninitialize_environments_nolock 100791c6 f libucrt:environment_initialization.obj + 0001:00078217 __initialize_narrow_environment 10079217 f libucrt:environment_initialization.obj + 0001:0007821c __towlower_l 1007921c f libucrt:towlower.obj + 0001:000782f0 __startTwoArgErrorHandling 100792f0 f libucrt:genexcep.obj + 0001:00078307 __startOneArgErrorHandling 10079307 f libucrt:genexcep.obj + 0001:00078350 __trandisp1 10079350 f libucrt:87disp.obj + 0001:000783c5 __trandisp2 100793c5 f libucrt:87disp.obj + 0001:0007845f __rttospopde 1007945f libucrt:87disp.obj + 0001:00078464 __rttospop 10079464 libucrt:87disp.obj + 0001:00078470 __rtnospop 10079470 f libucrt:87disp.obj + 0001:00078480 __rttosnpop 10079480 f libucrt:87disp.obj + 0001:00078481 __rtnospopde 10079481 libucrt:87disp.obj + 0001:00078488 __rtzeropop 10079488 libucrt:87disp.obj + 0001:0007848a __rtzeronpop 1007948a libucrt:87disp.obj + 0001:00078490 __rtzerospop 10079490 f libucrt:87disp.obj + 0001:0007849d __rtonepop 1007949d libucrt:87disp.obj + 0001:000784a0 __rtonenpop 100794a0 f libucrt:87disp.obj + 0001:000784b0 __tosnan1 100794b0 f libucrt:87disp.obj + 0001:000784e0 __nosnan2 100794e0 f libucrt:87disp.obj + 0001:000784f0 __tosnan2 100794f0 f libucrt:87disp.obj + 0001:00078520 __nan2 10079520 f libucrt:87disp.obj + 0001:00078560 __rtindfpop 10079560 f libucrt:87disp.obj + 0001:00078562 __rtindfnpop 10079562 libucrt:87disp.obj + 0001:00078573 __rttosnpopde 10079573 libucrt:87disp.obj + 0001:00078580 __rtatan2inf 10079580 f libucrt:87disp.obj + 0001:0007859d __rtchsifneg 1007959d libucrt:87disp.obj + 0001:0007865b _strncpy_s 1007965b f libucrt:strncpy_s.obj + 0001:0007870d __clearfp 1007970d f libucrt:ieee87.obj + 0001:000787eb __control87 100797eb f libucrt:ieee87.obj + 0001:00078b90 __CIlog10_pentium4 10079b90 f libucrt:log10_pentium4.obj + 0001:00078ba8 __log10_pentium4 10079ba8 libucrt:log10_pentium4.obj + 0001:00078e40 __fFEXP 10079e40 f libucrt:87tran.obj + 0001:00078e97 __rtinfpopse 10079e97 libucrt:87tran.obj + 0001:00078e99 __rtinfnpopse 10079e99 libucrt:87tran.obj + 0001:00078ea9 __fFLN 10079ea9 libucrt:87tran.obj + 0001:00078f5e __rtinfpop 10079f5e libucrt:87tran.obj + 0001:00078f60 __rtinfnpop 10079f60 libucrt:87tran.obj + 0001:00078f70 __rtforexpinf 10079f70 f libucrt:87tran.obj + 0001:00078f7d __ffexpm1 10079f7d libucrt:87tran.obj + 0001:00079026 __msize_base 1007a026 f libucrt:msize.obj + 0001:00079059 __realloc_base 1007a059 f libucrt:realloc_base.obj + 0001:000790c2 ___acrt_CompareStringW 1007a0c2 f libucrt:comparestringw.obj + 0001:0007915e ___dcrt_get_narrow_environment_from_os 1007a15e f libucrt:get_environment_from_os.obj + 0001:000791fe ___dcrt_get_wide_environment_from_os 1007a1fe f libucrt:get_environment_from_os.obj + 0001:00079607 ___dcrt_set_variable_in_wide_environment_nolock 1007a607 f libucrt:setenv.obj + 0001:00079612 ___acrt_LCMapStringW 1007a612 f libucrt:lcmapstringw.obj + 0001:00079650 __87except 1007a650 f libucrt:87except.obj + 0001:00079760 __d_inttype 1007a760 f libucrt:powhlp.obj + 0001:000797c8 __powhlp 1007a7c8 f libucrt:powhlp.obj + 0001:00079b96 _mbstowcs_s 1007ab96 f libucrt:mbstowcs.obj + 0001:00079bd3 __fpclass 1007abd3 f libucrt:ieeemisc.obj + 0001:00079c77 _CreateToolhelp32Snapshot@8 1007ac77 f kernel32:KERNEL32.dll + 0001:00079c7d _Thread32First@8 1007ac7d f kernel32:KERNEL32.dll + 0001:00079c83 _Thread32Next@8 1007ac83 f kernel32:KERNEL32.dll + 0001:00079c89 ??0_Init_locks@std@@QAE@XZ 1007ac89 f libcpmt:xlock.obj + 0001:00079cb6 ??0_Lockit@std@@QAE@H@Z 1007acb6 f libcpmt:xlock.obj + 0001:00079ce7 ??1_Init_locks@std@@QAE@XZ 1007ace7 f libcpmt:xlock.obj + 0001:00079d0e ??1_Lockit@std@@QAE@XZ 1007ad0e f libcpmt:xlock.obj + 0001:00079d2d ??0bad_function_call@std@@QAE@ABV01@@Z 1007ad2d f i libcpmt:xthrow.obj + 0001:00079d48 ??0bad_function_call@std@@QAE@XZ 1007ad48 f i libcpmt:xthrow.obj + 0001:00079d59 ??0invalid_argument@std@@QAE@ABV01@@Z 1007ad59 f i libcpmt:xthrow.obj + 0001:00079d74 ??0invalid_argument@std@@QAE@PBD@Z 1007ad74 f i libcpmt:xthrow.obj + 0001:00079d93 ??0length_error@std@@QAE@ABV01@@Z 1007ad93 f i libcpmt:xthrow.obj + 0001:00079dae ??0length_error@std@@QAE@PBD@Z 1007adae f i libcpmt:xthrow.obj + 0001:00079dcd ??0logic_error@std@@QAE@ABV01@@Z 1007adcd f i libcpmt:xthrow.obj + 0001:00079de8 ??0out_of_range@std@@QAE@ABV01@@Z 1007ade8 f i libcpmt:xthrow.obj + 0001:00079e03 ??0out_of_range@std@@QAE@PBD@Z 1007ae03 f i libcpmt:xthrow.obj + 0001:00079e22 ??0runtime_error@std@@QAE@PBD@Z 1007ae22 f i libcpmt:xthrow.obj + 0001:00079e41 ?_Xbad_alloc@std@@YAXXZ 1007ae41 f libcpmt:xthrow.obj + 0001:00079e41 ?__scrt_throw_std_bad_alloc@@YAXXZ 1007ae41 f LIBCMT:throw_bad_alloc.obj + 0001:00079e5e ?_Xbad_function_call@std@@YAXXZ 1007ae5e f libcpmt:xthrow.obj + 0001:00079e7b ?_Xinvalid_argument@std@@YAXPBD@Z 1007ae7b f libcpmt:xthrow.obj + 0001:00079e9b ?_Xlength_error@std@@YAXPBD@Z 1007ae9b f libcpmt:xthrow.obj + 0001:00079ebb ?_Xout_of_range@std@@YAXPBD@Z 1007aebb f libcpmt:xthrow.obj + 0001:00079edb ?_Xruntime_error@std@@YAXPBD@Z 1007aedb f libcpmt:xthrow.obj + 0001:00079efb ?what@bad_function_call@std@@UBEPBDXZ 1007aefb f i libcpmt:xthrow.obj + 0001:00079f01 ?_Syserror_map@std@@YAPBDH@Z 1007af01 f libcpmt:syserror.obj + 0001:00079f26 ??0_Locimp@locale@std@@AAE@_N@Z 1007af26 f i libcpmt:locale0.obj + 0001:00079f67 ??1_Fac_node@std@@QAE@XZ 1007af67 f i libcpmt:locale0.obj + 0001:00079f98 ??1_Fac_tidy_reg_t@std@@QAE@XZ 1007af98 f i libcpmt:locale0.obj + 0001:00079fbf ??1_Locimp@locale@std@@MAE@XZ 1007afbf f i libcpmt:locale0.obj + 0001:00079fea ??4?$_Yarn@D@std@@QAEAAV01@PBD@Z 1007afea f i libcpmt:locale0.obj + 0001:0007a03e ??_E_Locimp@locale@std@@MAEPAXI@Z 1007b03e f i libcpmt:locale0.obj + 0001:0007a03e ??_G_Locimp@locale@std@@MAEPAXI@Z 1007b03e f i libcpmt:locale0.obj + 0001:0007a060 ?_Facet_Register@std@@YAXPAV_Facet_base@1@@Z 1007b060 f libcpmt:locale0.obj + 0001:0007a08c ?_Getgloballocale@locale@std@@CAPAV_Locimp@12@XZ 1007b08c f libcpmt:locale0.obj + 0001:0007a092 ?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 1007b092 f libcpmt:locale0.obj + 0001:0007a11f ?_Locimp_dtor@_Locimp@locale@std@@CAXPAV123@@Z 1007b11f f libcpmt:locale0.obj + 0001:0007a190 ?_Locinfo_ctor@_Locinfo@std@@SAXPAV12@PBD@Z 1007b190 f libcpmt:locale0.obj + 0001:0007a1db ?_Locinfo_dtor@_Locinfo@std@@SAXPAV12@@Z 1007b1db f libcpmt:locale0.obj + 0001:0007a1f5 ?_New_Locimp@_Locimp@locale@std@@CAPAV123@_N@Z 1007b1f5 f libcpmt:locale0.obj + 0001:0007a218 ?_Setgloballocale@locale@std@@CAXPAX@Z 1007b218 f libcpmt:locale0.obj + 0001:0007a240 __Deletegloballocale 1007b240 f libcpmt:locale0.obj + 0001:0007a2a5 __Getctype 1007b2a5 f libcpmt:_tolower.obj + 0001:0007a310 __Tolower 1007b310 f libcpmt:_tolower.obj + 0001:0007a41c __Toupper 1007b41c f libcpmt:_toupper.obj + 0001:0007a528 ?_Addstd@ios_base@std@@SAXPAV12@@Z 1007b528 f libcpmt:ios.obj + 0001:0007a574 ?_Callfns@ios_base@std@@AAEXW4event@12@@Z 1007b574 f i libcpmt:ios.obj + 0001:0007a5a7 ?_Ios_base_dtor@ios_base@std@@CAXPAV12@@Z 1007b5a7 f libcpmt:ios.obj + 0001:0007a5e7 ?_Tidy@ios_base@std@@AAEXXZ 1007b5e7 f i libcpmt:ios.obj + 0001:0007a662 ?uncaught_exception@std@@YA_NXZ 1007b662 f libcpmt:uncaught_exception.obj + 0001:0007a667 ___std_init_once_link_alternate_names_and_abort@0 1007b667 f libcpmt:xonce2.obj + 0001:0007a66c __Query_perf_counter 1007b66c f libcpmt:xtime.obj + 0001:0007a683 __Query_perf_frequency 1007b683 f libcpmt:xtime.obj + 0001:0007a6c0 __Xtime_get_ticks 1007b6c0 f libcpmt:xtime.obj + 0001:0007a6e7 __Getcvt 1007b6e7 f libcpmt:xwctomb.obj + 0001:0007a7d7 ?_Fiopen@std@@YAPAU_iobuf@@PBDHH@Z 1007b7d7 f libcpmt:fiopen.obj + 0001:0007a7e0 ?setw@std@@YA?AU?$_Smanip@_J@1@_J@Z 1007b7e0 f libcpmt:iomanip.obj + 0001:0007a80e __Mtxdst 1007b80e f libcpmt:xmtx.obj + 0001:0007a81c __Mtxinit 1007b81c f libcpmt:xmtx.obj + 0001:0007a831 __Mtxlock 1007b831 f libcpmt:xmtx.obj + 0001:0007a83f __Mtxunlock 1007b83f f libcpmt:xmtx.obj + 0001:0007a84d ??1_Init_atexit@@QAE@XZ 1007b84d f i libcpmt:iosptrs.obj + 0001:0007a8b5 ?_Atexit@@YAXP6AXXZ@Z 1007b8b5 f libcpmt:iosptrs.obj + 0001:0007a8e4 ___crtLCMapStringA 1007b8e4 f libcpmt:StlLCMapStringA.obj + 0001:0007aaf5 ___crtGetSystemTimePreciseAsFileTime 1007baf5 f libcpmt:winapisupp.obj + 0001:0007ab4a ??2@YAPAXI@Z 1007bb4a f LIBCMT:new_scalar.obj + 0001:0007ab7a ??3@YAXPAXI@Z 1007bb7a f LIBCMT:delete_scalar_size.obj + 0001:0007ab88 ??_V@YAXPAX@Z 1007bb88 f LIBCMT:delete_array.obj + 0001:0007abd1 ___scrt_acquire_startup_lock 1007bbd1 f LIBCMT:utility.obj + 0001:0007ac03 ___scrt_dllmain_after_initialize_c 1007bc03 f LIBCMT:utility.obj + 0001:0007ac2e ___scrt_dllmain_before_initialize_c 1007bc2e f LIBCMT:utility.obj + 0001:0007ac3c ___scrt_dllmain_crt_thread_attach 1007bc3c f LIBCMT:utility.obj + 0001:0007ac5b ___scrt_dllmain_crt_thread_detach 1007bc5b f LIBCMT:utility.obj + 0001:0007ac68 ___scrt_dllmain_exception_filter 1007bc68 f LIBCMT:utility.obj + 0001:0007ac9c ___scrt_dllmain_uninitialize_c 1007bc9c f LIBCMT:utility.obj + 0001:0007acbf ___scrt_dllmain_uninitialize_critical 1007bcbf f LIBCMT:utility.obj + 0001:0007accc ___scrt_initialize_crt 1007bccc f LIBCMT:utility.obj + 0001:0007ad05 ___scrt_initialize_onexit_tables 1007bd05 f LIBCMT:utility.obj + 0001:0007ad8c ___scrt_is_nonwritable_in_current_image 1007bd8c f LIBCMT:utility.obj + 0001:0007ae20 ___scrt_release_startup_lock 1007be20 f LIBCMT:utility.obj + 0001:0007ae3d ___scrt_uninitialize_crt 1007be3d f LIBCMT:utility.obj + 0001:0007ae65 __onexit 1007be65 f LIBCMT:utility.obj + 0001:0007ae92 _atexit 1007be92 f LIBCMT:utility.obj + 0001:0007aea7 @__security_check_cookie@4 1007bea7 f LIBCMT:secchk.obj + 0001:0007aeb5 ??_Etype_info@@UAEPAXI@Z 1007beb5 f i LIBCMT:std_type_info_static.obj + 0001:0007aeb5 ??_Gtype_info@@UAEPAXI@Z 1007beb5 f i LIBCMT:std_type_info_static.obj + 0001:0007aed8 ??_U@YAPAXI@Z 1007bed8 f LIBCMT:new_array.obj + 0001:0007aef0 __allshl 1007bef0 f LIBCMT:llshl.obj + 0001:0007af10 __aullshr 1007bf10 f LIBCMT:ullshr.obj + 0001:0007af2f __Init_thread_abort 1007bf2f f LIBCMT:thread_safe_statics.obj + 0001:0007af5a __Init_thread_footer 1007bf5a f LIBCMT:thread_safe_statics.obj + 0001:0007afab __Init_thread_header 1007bfab f LIBCMT:thread_safe_statics.obj + 0001:0007affb __Init_thread_wait_v2 1007bffb f LIBCMT:thread_safe_statics.obj + 0001:0007b010 __alldiv 1007c010 f LIBCMT:lldiv.obj + 0001:0007b0c0 __alldvrm 1007c0c0 f LIBCMT:lldvrm.obj + 0001:0007b1a0 __allmul 1007c1a0 f LIBCMT:llmul.obj + 0001:0007b1e0 __allrem 1007c1e0 f LIBCMT:llrem.obj + 0001:0007b292 ?__scrt_initialize_type_info@@YAXXZ 1007c292 f LIBCMT:tncleanup.obj + 0001:0007b29e ?__scrt_uninitialize_type_info@@YAXXZ 1007c29e f LIBCMT:tncleanup.obj + 0001:0007b2b0 __ftol3 1007c2b0 f LIBCMT:ftol3.obj + 0001:0007b320 __dtoul3 1007c320 f LIBCMT:ftol3.obj + 0001:0007b3d0 __dtoul3_legacy 1007c3d0 f LIBCMT:ftol3.obj + 0001:0007b400 __dtol3 1007c400 f LIBCMT:ftol3.obj + 0001:0007b4b0 __ultod3 1007c4b0 f LIBCMT:ftol3.obj + 0001:0007b500 __ltod3 1007c500 f LIBCMT:ftol3.obj + 0001:0007b882 __DllMainCRTStartup@12 1007c882 f LIBCMT:dll_dllmain.obj + 0001:0007b8b0 __SEH_prolog4 1007c8b0 f LIBCMT:sehprolg4.obj + 0001:0007b8f5 @_guard_check_icall@4 1007c8f5 f i LIBCMT:checkcfg.obj + 0001:0007b8fb ___isa_available_init 1007c8fb f LIBCMT:cpu_disp.obj + 0001:0007bc30 __FindPESection 1007cc30 f LIBCMT:pesect.obj + 0001:0007bc80 __IsNonwritableInCurrentImage 1007cc80 f LIBCMT:pesect.obj + 0001:0007bd40 __ValidateImageBase 1007cd40 f LIBCMT:pesect.obj + 0001:0007bd71 __EH_epilog3 1007cd71 f LIBCMT:ehprolg3.obj + 0001:0007bd85 __EH_prolog3 1007cd85 f LIBCMT:ehprolg3.obj + 0001:0007bdb8 __EH_prolog3_catch 1007cdb8 f LIBCMT:ehprolg3.obj + 0001:0007bdf0 __aulldvrm 1007cdf0 f LIBCMT:ulldvrm.obj + 0001:0007be85 ___scrt_fastfail 1007ce85 f LIBCMT:utility_desktop.obj + 0001:0007bf9a __crt_debugger_hook 1007cf9a f LIBCMT:utility_desktop.obj + 0001:0007bfb0 __aulldiv 1007cfb0 f LIBCMT:ulldiv.obj + 0001:0007c020 __aullrem 1007d020 f LIBCMT:ullrem.obj + 0001:0007c095 ___raise_securityfailure 1007d095 f LIBCMT:gs_report.obj + 0001:0007c0bd ___report_gsfailure 1007d0bd f LIBCMT:gs_report.obj + 0001:0007c1b8 ___report_rangecheckfailure 1007d1b8 f LIBCMT:gs_report.obj + 0001:0007c1c5 ___report_securityfailure 1007d1c5 f LIBCMT:gs_report.obj + 0001:0007c2a0 __alloca_probe 1007d2a0 f LIBCMT:chkstk.obj + 0001:0007c2a0 __chkstk 1007d2a0 f LIBCMT:chkstk.obj + 0001:0007c2d0 __alloca_probe_16 1007d2d0 f LIBCMT:alloca16.obj + 0001:0007c2e6 __alloca_probe_8 1007d2e6 LIBCMT:alloca16.obj + 0001:0007c300 __ftol2_sse 1007d300 f LIBCMT:ftol2.obj + 0001:0007c310 __ftoi2 1007d310 f LIBCMT:ftol2.obj + 0001:0007c38c ?__scrt_throw_std_bad_array_new_length@@YAXXZ 1007d38c f LIBCMT:throw_bad_alloc.obj + 0001:0007c3a9 ___scrt_is_ucrt_dll_in_use 1007d3a9 f LIBCMT:ucrt_detection.obj + 0001:0007c402 ___security_init_cookie 1007d402 f LIBCMT:gs_support.obj + 0001:0007c44d _DllMain@12 1007d44d f LIBCMT:dll_dllmain_stub.obj + 0001:0007c453 ___local_stdio_scanf_options 1007d453 f i LIBCMT:default_local_stdio_options.obj + 0001:0007c459 ___scrt_initialize_default_local_stdio_options 1007d459 f LIBCMT:default_local_stdio_options.obj + 0001:0007c476 ___scrt_get_dyn_tls_init_callback 1007d476 f LIBCMT:dyn_tls_init.obj + 0001:0007c47c __RTC_Initialize 1007d47c f LIBCMT:initsect.obj + 0001:0007c4a8 __RTC_Terminate 1007d4a8 f LIBCMT:initsect.obj + 0001:0007c4d4 _memcmp 1007d4d4 f libvcruntime:memcmp.obj + 0001:0007db60 _strrchr 1007eb60 f libvcruntime:strrchr.obj + 0001:0007dc97 _wcschr 1007ec97 f libvcruntime:wcschr.obj + 0001:0007dd38 ___uncaught_exception 1007ed38 f libvcruntime:uncaught_exception.obj + 0001:0007dd4c ___vcrt_initialize 1007ed4c f libvcruntime:initialization.obj + 0001:0007dd6b ___vcrt_thread_attach 1007ed6b f libvcruntime:initialization.obj + 0001:0007dd76 ___vcrt_thread_detach 1007ed76 f libvcruntime:initialization.obj + 0001:0007dd7e ___vcrt_uninitialize 1007ed7e f libvcruntime:initialization.obj + 0001:0007dd95 ___vcrt_uninitialize_critical 1007ed95 f libvcruntime:initialization.obj + 0001:0007dff2 _setlocale 1007eff2 f libucrt:setlocale.obj + 0001:0007e030 _islower 1007f030 f libucrt:_ctype.obj + 0001:0007e0c0 _isupper 1007f0c0 f libucrt:_ctype.obj + 0001:0007e144 __wcsdup 1007f144 f libucrt:wcsdup.obj + 0001:0007e25a __fsopen 1007f25a f libucrt:fopen.obj + 0001:0007e516 ___acrt_allocate_buffer_for_argv 1007f516 f libucrt:argv_parsing.obj + 0001:0007e565 __configure_narrow_argv 1007f565 f libucrt:argv_parsing.obj + 0001:0007e66b ___acrt_initialize 1007f66b f libucrt:initialization.obj + 0001:0007e67d ___acrt_thread_attach 1007f67d f libucrt:initialization.obj + 0001:0007e688 ___acrt_thread_detach 1007f688 f libucrt:initialization.obj + 0001:0007e690 ___acrt_uninitialize 1007f690 f libucrt:initialization.obj + 0001:0007e6c0 ___acrt_uninitialize_critical 1007f6c0 f libucrt:initialization.obj + 0001:0007ea4e __wcstombs_s_l 1007fa4e f libucrt:wcstombs.obj + 0001:0007ea8c ??$__acrt_stdio_parse_mode@D@@YA?AU__acrt_stdio_stream_mode@@QBD@Z 1007fa8c f i libucrt:openfile.obj + 0001:0007ed39 ?__acrt_stdio_parse_mode_D@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1007fd39 f i libucrt:openfile.obj + 0001:0007ed54 ?__acrt_stdio_parse_mode_T@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1007fd54 f i libucrt:openfile.obj + 0001:0007ed73 ?__acrt_stdio_parse_mode_b@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1007fd73 f i libucrt:openfile.obj + 0001:0007ed93 ?__acrt_stdio_parse_mode_c@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1007fd93 f i libucrt:openfile.obj + 0001:0007edb5 ?__acrt_stdio_parse_mode_n@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1007fdb5 f i libucrt:openfile.obj + 0001:0007edd7 ?__acrt_stdio_parse_mode_plus@@YA_NAAU__acrt_stdio_stream_mode@@AA_N@Z 1007fdd7 f i libucrt:openfile.obj + 0001:0007ee0d ?__acrt_stdio_parse_mode_t@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1007fe0d f i libucrt:openfile.obj + 0001:0007ee2d ?__acrt_stdio_parse_mode_x@@YA_NAAU__acrt_stdio_stream_mode@@@Z 1007fe2d f i libucrt:openfile.obj + 0001:0007ee4d __openfile 1007fe4d f libucrt:openfile.obj + 0001:0007ee70 ??$__acrt_convert_wcs_mbs_cp@_WDV@@U__crt_win32_buffer_internal_dynamic_resizing@@@@YAHQB_WAAV?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@ABV@@I@Z 1007fe70 f i libucrt:argv_wildcards.obj + 0001:0007f40e ?allocate@?$__crt_win32_buffer@DU__crt_win32_buffer_internal_dynamic_resizing@@@@QAEHI@Z 1008040e f i libucrt:argv_wildcards.obj + 0001:0007f4d1 ___acrt_expand_narrow_argv_wildcards 100804d1 f libucrt:argv_wildcards.obj + 0001:0007f4dc ___acrt_GetModuleFileNameA 100804dc f libucrt:getmodulefilenamea.obj + 0001:0007f5cd __ismbblead 100805cd f libucrt:ismbbyte.obj + 0001:0007f5e5 ___acrt_initialize_command_line 100805e5 f libucrt:argv_data.obj + 0001:0007f5fe ___acrt_execute_initializers 100805fe f libucrt:shared_initialization.obj + 0001:0007f666 ___acrt_execute_uninitializers 10080666 f libucrt:shared_initialization.obj + 0001:0007f697 ?__wcsrtombs_utf8@__crt_mbstring@@YAIPADPAPB_WIPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10080697 f libucrt:wcrtomb.obj + 0001:0007fd90 __sopen_nolock 10080d90 f libucrt:open.obj + 0001:0007fdfe __sopen_s 10080dfe f libucrt:open.obj + 0001:0007fe1e __wsopen_nolock 10080e1e f libucrt:open.obj + 0001:00080150 _qsort 10081150 f libucrt:qsort.obj + 0001:00080640 _strpbrk 10081640 f libucrt:strpbrk.obj + 0001:00080680 __mbsdec 10081680 f libucrt:mbsdec.obj + 0001:00080697 __mbsdec_l 10081697 f libucrt:mbsdec.obj + 0001:00080724 ?__c16rtomb_utf8@__crt_mbstring@@YAIPAD_SPAU_Mbstatet@@AAV__crt_cached_ptd_host@@@Z 10081724 f libucrt:c16rtomb.obj + 0001:000807ce __get_fmode 100817ce f libucrt:setmode.obj + 0001:000807fb __setmode_nolock 100817fb f libucrt:setmode.obj + 0001:000808ca ??0__crt_seek_guard@@QAE@H_J@Z 100818ca f i libucrt:chsize.obj + 0001:00080917 __chsize_nolock 10081917 f libucrt:chsize.obj + 0001:0008094e __chsize_nolock_internal 1008194e f libucrt:chsize.obj + 0001:00080ae5 ___acrt_initialize_fmode 10081ae5 f libucrt:txtmode.obj + 0001:00080afb __filter_x86_sse2_floating_point_exception 10081afb f LIBCMT:x86_exception_filter.obj + 0001:00080afb __filter_x86_sse2_floating_point_exception_default 10081afb f LIBCMT:x86_exception_filter.obj 0002:00000000 __imp__CreateDirectoryA@8 10088000 kernel32:KERNEL32.dll 0002:00000004 __imp__CreateFileA@28 10088004 kernel32:KERNEL32.dll 0002:00000008 __imp__DeleteFileA@4 10088008 kernel32:KERNEL32.dll @@ -3670,7 +3670,7 @@ 0002:00008200 __real@0000000000000000 10090200 misc_scripts.cpp.obj 0002:00008208 __real@3ff0000000000000 10090208 misc_scripts.cpp.obj 0002:00008210 __real@4000000000000000 10090210 misc_scripts.cpp.obj - 0002:00008218 __real@4040000000000000 10090218 misc_scripts.cpp.obj + 0002:00008218 __real@4040800000000000 10090218 misc_scripts.cpp.obj 0002:00008220 __real@408f400000000000 10090220 misc_scripts.cpp.obj 0002:0000822c ??_C@_0CD@FAFLFIPA@Casting?5next?5spell?5without?5queu@ 1009022c spell_scripts.cpp.obj 0002:00008250 ??_C@_0BO@KHCNJBCM@Force?5queuing?5next?5cast?5spell@ 10090250 spell_scripts.cpp.obj @@ -7272,7 +7272,7 @@ 0003:000222d8 ___scrt_ucrt_dll_is_in_use 100cd2d8 0003:000222e0 ?_OptionsStorage@?1??__local_stdio_printf_options@@9@9 100cd2e0 - entry point at 0001:0007b832 + entry point at 0001:0007b882 Static symbols @@ -7606,2940 +7606,2940 @@ 0001:000430c0 ?_Assign_grow@?$_Hash_vec@V?$allocator@V?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@@std@@@std@@@std@@@std@@@std@@QAEXIV?$_List_unchecked_iterator@V?$_List_val@U?$_List_simple_types@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@@std@@@std@@@2@@Z 100440c0 f helper.cpp.obj 0001:000432a0 ?_Forced_rehash@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAEXI@Z 100442a0 f helper.cpp.obj 0001:000437b4 __catch$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$0 100447b4 f i spellcast.cpp.obj - 0001:0004762c $LN19 1004862c spellevents.cpp.obj - 0001:00047640 $LN18 10048640 spellevents.cpp.obj - 0001:00048230 $LN210 10049230 spellevents.cpp.obj - 0001:00048238 $LN209 10049238 spellevents.cpp.obj - 0001:00049968 $LN47 1004a968 spellevents.cpp.obj - 0001:00049970 $LN46 1004a970 spellevents.cpp.obj - 0001:0004a2f4 $LN85 1004b2f4 misc_scripts.cpp.obj - 0001:0004a2f4 $LN85 1004b2f4 misc_scripts.cpp.obj - 0001:0004a2f4 $LN85 1004b2f4 spell_scripts.cpp.obj - 0001:0004b9fc $LN59 1004c9fc misc_scripts.cpp.obj - 0001:0004ba14 $LN60 1004ca14 misc_scripts.cpp.obj - 0001:0004be58 $LN160 1004ce58 misc_scripts.cpp.obj - 0001:0004be70 $LN161 1004ce70 misc_scripts.cpp.obj - 0001:0004c3f4 $LN56 1004d3f4 misc_scripts.cpp.obj - 0001:0004c40c $LN57 1004d40c misc_scripts.cpp.obj - 0001:0004c760 $LN101 1004d760 misc_scripts.cpp.obj - 0001:0004de84 $LN67 1004ee84 spell_scripts.cpp.obj - 0001:0004de9c $LN68 1004ee9c spell_scripts.cpp.obj - 0001:0004e38c $LN166 1004f38c spell_scripts.cpp.obj - 0001:0004e3a4 $LN167 1004f3a4 spell_scripts.cpp.obj - 0001:0004f910 ??R@@QBE@HIPAUCGItem_C@game@@@Z 10050910 f item_scripts.cpp.obj - 0001:00054ca9 ?_FilterSetCurrentException@@YAKPAU_EXCEPTION_POINTERS@@E@Z 10055ca9 f libvcruntime:ehhelpers.obj - 0001:00055250 $$000000 10056250 libvcruntime:memcpy.obj - 0001:00055250 $$000000 10056250 libvcruntime:memmove.obj - 0001:00055270 CopyUp 10056270 libvcruntime:memcpy.obj - 0001:00055270 CopyUp 10056270 libvcruntime:memmove.obj - 0001:00055294 CopyUpLargeMov 10056294 libvcruntime:memcpy.obj - 0001:00055294 CopyUpLargeMov 10056294 libvcruntime:memmove.obj - 0001:000552a7 CopyUpSSE2Check 100562a7 libvcruntime:memcpy.obj - 0001:000552a7 CopyUpSSE2Check 100562a7 libvcruntime:memmove.obj - 0001:000552c0 AtomChk 100562c0 libvcruntime:memcpy.obj - 0001:000552c0 AtomChk 100562c0 libvcruntime:memmove.obj - 0001:000552e6 PalignHead4 100562e6 libvcruntime:memcpy.obj - 0001:000552e6 PalignHead4 100562e6 libvcruntime:memmove.obj - 0001:000552f9 PalignHead8 100562f9 libvcruntime:memcpy.obj - 0001:000552f9 PalignHead8 100562f9 libvcruntime:memmove.obj - 0001:00055310 PalignLoop 10056310 libvcruntime:memcpy.obj - 0001:00055310 PalignLoop 10056310 libvcruntime:memmove.obj - 0001:00055322 MovPalign12 10056322 libvcruntime:memcpy.obj - 0001:00055322 MovPalign12 10056322 libvcruntime:memmove.obj - 0001:0005532c PalignLoop12 1005632c libvcruntime:memcpy.obj - 0001:0005532c PalignLoop12 1005632c libvcruntime:memmove.obj - 0001:0005537d MovPalign8 1005637d libvcruntime:memcpy.obj - 0001:0005537d MovPalign8 1005637d libvcruntime:memmove.obj - 0001:00055388 PalignLoop8 10056388 libvcruntime:memcpy.obj - 0001:00055388 PalignLoop8 10056388 libvcruntime:memmove.obj - 0001:000553d6 MovPalign4 100563d6 libvcruntime:memcpy.obj - 0001:000553d6 MovPalign4 100563d6 libvcruntime:memmove.obj - 0001:000553e0 PalignLoop4 100563e0 libvcruntime:memcpy.obj - 0001:000553e0 PalignLoop4 100563e0 libvcruntime:memmove.obj - 0001:0005542c PalignTail 1005642c libvcruntime:memcpy.obj - 0001:0005542c PalignTail 1005642c libvcruntime:memmove.obj - 0001:00055444 PalignTail4 10056444 libvcruntime:memcpy.obj - 0001:00055444 PalignTail4 10056444 libvcruntime:memmove.obj - 0001:00055457 PalignTail8 10056457 libvcruntime:memcpy.obj - 0001:00055457 PalignTail8 10056457 libvcruntime:memmove.obj - 0001:0005546e PalignTailLE3 1005646e libvcruntime:memcpy.obj - 0001:0005546e PalignTailLE3 1005646e libvcruntime:memmove.obj - 0001:00055477 Dword_align 10056477 libvcruntime:memcpy.obj - 0001:00055477 Dword_align 10056477 libvcruntime:memmove.obj - 0001:0005547f Dword_up_align_loop 1005647f libvcruntime:memcpy.obj - 0001:0005547f Dword_up_align_loop 1005647f libvcruntime:memmove.obj - 0001:00055492 Dword_align_Ok 10056492 libvcruntime:memcpy.obj - 0001:00055492 Dword_align_Ok 10056492 libvcruntime:memmove.obj - 0001:000554ac ByteCopyUp 100564ac libvcruntime:memcpy.obj - 0001:000554ac ByteCopyUp 100564ac libvcruntime:memmove.obj - 0001:000554b4 TrailingUpVec 100564b4 libvcruntime:memcpy.obj - 0001:000554b4 TrailingUpVec 100564b4 libvcruntime:memmove.obj - 0001:000554c4 TrailingUp0 100564c4 libvcruntime:memcpy.obj - 0001:000554c4 TrailingUp0 100564c4 libvcruntime:memmove.obj - 0001:000554cc TrailingUp1 100564cc libvcruntime:memcpy.obj - 0001:000554cc TrailingUp1 100564cc libvcruntime:memmove.obj - 0001:000554d8 TrailingUp2 100564d8 libvcruntime:memcpy.obj - 0001:000554d8 TrailingUp2 100564d8 libvcruntime:memmove.obj - 0001:000554ec TrailingUp3 100564ec libvcruntime:memcpy.obj - 0001:000554ec TrailingUp3 100564ec libvcruntime:memmove.obj - 0001:00055504 CopyDown 10056504 libvcruntime:memcpy.obj - 0001:00055504 CopyDown 10056504 libvcruntime:memmove.obj - 0001:00055529 CopyDownNotAligned 10056529 libvcruntime:memcpy.obj - 0001:00055529 CopyDownNotAligned 10056529 libvcruntime:memmove.obj - 0001:00055530 CopyDownAlignLoop 10056530 libvcruntime:memcpy.obj - 0001:00055530 CopyDownAlignLoop 10056530 libvcruntime:memmove.obj - 0001:0005553d CopyDownAligned 1005653d libvcruntime:memcpy.obj - 0001:0005553d CopyDownAligned 1005653d libvcruntime:memmove.obj - 0001:00055560 TrailingDownVec 10056560 libvcruntime:memcpy.obj - 0001:00055560 TrailingDownVec 10056560 libvcruntime:memmove.obj - 0001:00055570 TrailingDown0 10056570 libvcruntime:memcpy.obj - 0001:00055570 TrailingDown0 10056570 libvcruntime:memmove.obj - 0001:00055578 TrailingDown1 10056578 libvcruntime:memcpy.obj - 0001:00055578 TrailingDown1 10056578 libvcruntime:memmove.obj - 0001:00055588 TrailingDown2 10056588 libvcruntime:memcpy.obj - 0001:00055588 TrailingDown2 10056588 libvcruntime:memmove.obj - 0001:0005559c TrailingDown3 1005659c libvcruntime:memcpy.obj - 0001:0005559c TrailingDown3 1005659c libvcruntime:memmove.obj - 0001:000555b5 XmmMovLargeAlignTest 100565b5 libvcruntime:memcpy.obj - 0001:000555b5 XmmMovLargeAlignTest 100565b5 libvcruntime:memmove.obj - 0001:000555bd XmmMovAlignLoop 100565bd libvcruntime:memcpy.obj - 0001:000555bd XmmMovAlignLoop 100565bd libvcruntime:memmove.obj - 0001:000555cc XmmMovLargeLoop 100565cc libvcruntime:memcpy.obj - 0001:000555cc XmmMovLargeLoop 100565cc libvcruntime:memmove.obj - 0001:0005563c XmmMovSmallTest 1005663c libvcruntime:memcpy.obj - 0001:0005563c XmmMovSmallTest 1005663c libvcruntime:memmove.obj - 0001:00055641 XmmMovSmallLoop 10056641 libvcruntime:memcpy.obj - 0001:00055641 XmmMovSmallLoop 10056641 libvcruntime:memmove.obj - 0001:00055664 CopyDownSmall 10056664 libvcruntime:memcpy.obj - 0001:00055664 CopyDownSmall 10056664 libvcruntime:memmove.obj - 0001:0005566c CopyDownDwordLoop 1005666c libvcruntime:memcpy.obj - 0001:0005566c CopyDownDwordLoop 1005666c libvcruntime:memmove.obj - 0001:00055681 CopyDownByteTest 10056681 libvcruntime:memcpy.obj - 0001:00055681 CopyDownByteTest 10056681 libvcruntime:memmove.obj - 0001:00055685 CopyDownByteLoop 10056685 libvcruntime:memcpy.obj - 0001:00055685 CopyDownByteLoop 10056685 libvcruntime:memmove.obj - 0001:00055694 CopyDownReturn 10056694 libvcruntime:memcpy.obj - 0001:00055694 CopyDownReturn 10056694 libvcruntime:memmove.obj - 0001:000556a0 XmmCopy 100566a0 libvcruntime:memcpy.obj - 0001:000556a0 XmmCopy 100566a0 libvcruntime:memmove.obj - 0001:000556ad XmmCopyAligned 100566ad libvcruntime:memcpy.obj - 0001:000556ad XmmCopyAligned 100566ad libvcruntime:memmove.obj - 0001:000556c0 XmmCopyLargeLoop 100566c0 libvcruntime:memcpy.obj - 0001:000556c0 XmmCopyLargeLoop 100566c0 libvcruntime:memmove.obj - 0001:0005571d XmmCopySmallTest 1005671d libvcruntime:memcpy.obj - 0001:0005571d XmmCopySmallTest 1005671d libvcruntime:memmove.obj - 0001:00055730 XmmCopySmallLoop 10056730 libvcruntime:memcpy.obj - 0001:00055730 XmmCopySmallLoop 10056730 libvcruntime:memmove.obj - 0001:0005574b CopyUpDwordMov 1005674b libvcruntime:memcpy.obj - 0001:0005574b CopyUpDwordMov 1005674b libvcruntime:memmove.obj - 0001:00055750 CopyUpDwordTest 10056750 libvcruntime:memcpy.obj - 0001:00055750 CopyUpDwordTest 10056750 libvcruntime:memmove.obj - 0001:00055757 CopyUpDwordLoop 10056757 libvcruntime:memcpy.obj - 0001:00055757 CopyUpDwordLoop 10056757 libvcruntime:memmove.obj - 0001:00055766 CopyUpByteTest 10056766 libvcruntime:memcpy.obj - 0001:00055766 CopyUpByteTest 10056766 libvcruntime:memmove.obj - 0001:0005576d CopyUpByteLoop 1005676d libvcruntime:memcpy.obj - 0001:0005576d CopyUpByteLoop 1005676d libvcruntime:memmove.obj - 0001:00055780 CopyUpReturn 10056780 libvcruntime:memcpy.obj - 0001:00055780 CopyUpReturn 10056780 libvcruntime:memmove.obj - 0001:00055790 XmmCopyUnaligned 10056790 libvcruntime:memcpy.obj - 0001:00055790 XmmCopyUnaligned 10056790 libvcruntime:memmove.obj - 0001:000557a3 XmmAlignByte 100567a3 libvcruntime:memcpy.obj - 0001:000557a3 XmmAlignByte 100567a3 libvcruntime:memmove.obj - 0001:000557ac XmmAlignDwordTest 100567ac libvcruntime:memcpy.obj - 0001:000557ac XmmAlignDwordTest 100567ac libvcruntime:memmove.obj - 0001:000557b1 XmmAlignDwordLoop 100567b1 libvcruntime:memcpy.obj - 0001:000557b1 XmmAlignDwordLoop 100567b1 libvcruntime:memmove.obj - 0001:000557be XmmAlignAdjustCnt 100567be libvcruntime:memcpy.obj - 0001:000557be XmmAlignAdjustCnt 100567be libvcruntime:memmove.obj - 0001:00055833 ?FindMITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PAXPBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@H2@Z 10056833 f libvcruntime:rtti.obj - 0001:0005591c ?FindSITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@1@Z 1005691c f libvcruntime:rtti.obj - 0001:00055a05 ?FindVITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PAXPBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@H2@Z 10056a05 f libvcruntime:rtti.obj - 0001:00055b6d ?PMDtoOffset@@YAHPAXABUPMD@@@Z 10056b6d f libvcruntime:rtti.obj - 0001:00055b91 ?TypeidsEqual@@YA_NQBUTypeDescriptor@@0@Z 10056b91 f libvcruntime:rtti.obj - 0001:00055dab ?@@?1??__std_type_info_name@@YAPBDPAU__std_type_info_data@@PAU__type_info_node@@@Z@SA@I@Z 10056dab f libvcruntime:std_type_info.obj - 0001:00055db4 ?@@?1??__std_type_info_name@@YAPBDPAU__std_type_info_data@@PAU__type_info_node@@@Z@SA@QAX@Z 10056db4 f libvcruntime:std_type_info.obj - 0001:00055ee0 $$000000 10056ee0 libvcruntime:memset.obj - 0001:00055f25 XMMMov 10056f25 libvcruntime:memset.obj - 0001:00055f60 LargeRangeBytes 10056f60 libvcruntime:memset.obj - 0001:00055f9d XmmMovSmall 10056f9d libvcruntime:memset.obj - 0001:00055fb0 XmmSmallLoop 10056fb0 libvcruntime:memset.obj - 0001:00055fb5 MidRangeBytes 10056fb5 libvcruntime:memset.obj - 0001:00055fd1 XMMTrailingBytes 10056fd1 libvcruntime:memset.obj - 0001:00055fe5 SmallMov 10056fe5 libvcruntime:memset.obj - 0001:00055fed ByteLoop 10056fed libvcruntime:memset.obj - 0001:00055ffb DwordTest 10056ffb libvcruntime:memset.obj - 0001:0005600b QwordTest 1005700b libvcruntime:memset.obj - 0001:00056020 QwordLoop 10057020 libvcruntime:memset.obj - 0001:00056033 toend 10057033 libvcruntime:memset.obj - 0001:00056040 $$000000 10057040 libvcruntime:strstr.obj - 0001:00056083 strstr_sse_safeloop 10057083 libvcruntime:strstr.obj - 0001:000560aa strstr_sse_search 100570aa libvcruntime:strstr.obj - 0001:000560aa strstr_sse_unsafe 100570aa libvcruntime:strstr.obj - 0001:000560ae strstr_sse_srchloop 100570ae libvcruntime:strstr.obj - 0001:000560e4 strstr_sse_srchchar 100570e4 libvcruntime:strstr.obj - 0001:000560fb strstr_sse_cmploop 100570fb libvcruntime:strstr.obj - 0001:00056136 strstr_sse_cmpchars 10057136 libvcruntime:strstr.obj - 0001:0005613d strstr_sse_cmpunsafe 1005713d libvcruntime:strstr.obj - 0001:00056154 strstr_sse_match 10057154 libvcruntime:strstr.obj - 0001:00056159 strstr_sse_not_found 10057159 libvcruntime:strstr.obj - 0001:0005615b strstr_sse_exit 1005715b libvcruntime:strstr.obj - 0001:0005615f strstr_sttni 1005715f libvcruntime:strstr.obj - 0001:0005617b strstr_sttni_setchars 1005717b libvcruntime:strstr.obj - 0001:00056180 strstr_sttni_setloopchar 10057180 libvcruntime:strstr.obj - 0001:00056186 strstr_sttni_setloopnochar 10057186 libvcruntime:strstr.obj - 0001:0005619a strstr_sttni_srchnext 1005719a libvcruntime:strstr.obj - 0001:0005619d strstr_sttni_srch 1005719d libvcruntime:strstr.obj - 0001:000561a1 strstr_sttni_srchloop 100571a1 libvcruntime:strstr.obj - 0001:000561c0 strstr_sttni_srchxmm 100571c0 libvcruntime:strstr.obj - 0001:000561d3 strstr_sttni_srchcheck 100571d3 libvcruntime:strstr.obj - 0001:000561d7 strstr_sttni_cmploop 100571d7 libvcruntime:strstr.obj - 0001:0005620f strstr_sttni_cmpchar 1005720f libvcruntime:strstr.obj - 0001:0005622a strstr_no_sse 1005722a libvcruntime:strstr.obj - 0001:0005623d findnext 1005723d libvcruntime:strstr.obj - 0001:00056250 loop_start 10057250 libvcruntime:strstr.obj - 0001:00056255 in_loop 10057255 libvcruntime:strstr.obj - 0001:0005625d not_found 1005725d libvcruntime:strstr.obj - 0001:00056263 first_char_found 10057263 libvcruntime:strstr.obj - 0001:0005626c two_first_chars_equal 1005726c libvcruntime:strstr.obj - 0001:0005626f compare_loop 1005726f libvcruntime:strstr.obj - 0001:00056292 strchr_call 10057292 libvcruntime:strstr.obj - 0001:0005629e match 1005729e libvcruntime:strstr.obj - 0001:000562a5 empty_str2 100572a5 libvcruntime:strstr.obj - 0001:000562b0 $$000000 100572b0 libvcruntime:memchr.obj - 0001:000562cb str_misaligned 100572cb libvcruntime:memchr.obj - 0001:000562e1 main_loop_start 100572e1 libvcruntime:memchr.obj - 0001:000562f7 return_from_main 100572f7 libvcruntime:memchr.obj - 0001:000562f8 tail_less_then_4 100572f8 libvcruntime:memchr.obj - 0001:000562fd tail_loop 100572fd libvcruntime:memchr.obj - 0001:0005630b retnull 1005730b libvcruntime:memchr.obj - 0001:0005630d main_loop 1005730d libvcruntime:memchr.obj - 0001:00056312 main_loop_entry 10057312 libvcruntime:memchr.obj - 0001:0005632d char_is_found 1005732d libvcruntime:memchr.obj - 0001:00056345 byte_3 10057345 libvcruntime:memchr.obj - 0001:00056346 found 10057346 libvcruntime:memchr.obj - 0001:0005634b byte_2 1005734b libvcruntime:memchr.obj - 0001:00056351 byte_1 10057351 libvcruntime:memchr.obj - 0001:00056357 byte_0 10057357 libvcruntime:memchr.obj - 0001:000564d0 _ValidateLocalCookies 100574d0 f libvcruntime:chandler4.obj - 0001:0005666e ??$BuildCatchObjectHelperInternal@V__FrameHandler3@@@@YAHPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 1005766e f libvcruntime:frame.obj - 0001:000567ac ??$BuildCatchObjectInternal@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 100577ac f libvcruntime:frame.obj - 0001:00056845 ??$CatchIt@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@PBU_s_HandlerType@@PBU_s_CatchableType@@PBU_s_TryBlockMapEntry@@H1EE@Z 10057845 f libvcruntime:frame.obj - 0001:000568c5 ??$FindHandler@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@EH1@Z 100578c5 f libvcruntime:frame.obj - 0001:00056c6a ??$FindHandlerForForeignException@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@HH1@Z 10057c6a f libvcruntime:frame.obj - 0001:00056f39 ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PBU_s_FuncInfo@@PAXHK@Z 10057f39 f libvcruntime:frame.obj - 0001:00057108 ?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 10058108 f libvcruntime:frame.obj - 0001:00057128 __catch$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z$0 10058128 f libvcruntime:frame.obj - 0001:00057147 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 10058147 f libvcruntime:frame.obj - 0001:00057291 ?IsInExceptionSpec@@YAEPAUEHExceptionRecord@@PBU_s_ESTypeList@@@Z 10058291 f libvcruntime:frame.obj - 0001:00057360 $$000000 10058360 libvcruntime:lowhelpr.obj - 0001:0005739f _NLG_Continue 1005839f libvcruntime:lowhelpr.obj - 0001:000575a0 ??$get_encoding@M@@YA?A_P_K@Z 100585a0 f libvcruntime:undname.obj - 0001:00057600 ??$get_encoding@N@@YA?A_P_K@Z 10058600 f libvcruntime:undname.obj - 0001:00057935 ??1TrackRecursion@?1??getDecoratedName@UnDecorator@@CA?AVDName@@XZ@QAE@XZ 10058935 f libvcruntime:undname.obj - 0001:00059571 $LN197 1005a571 libvcruntime:undname.obj - 0001:00059595 $LN196 1005a595 libvcruntime:undname.obj - 0001:000595a9 $LN198 1005a5a9 libvcruntime:undname.obj - 0001:0005a4ad $LN40 1005b4ad libvcruntime:undname.obj - 0001:0005b644 $LN400 1005c644 libvcruntime:undname.obj - 0001:0005b650 $LN399 1005c650 libvcruntime:undname.obj - 0001:0005b668 $LN402 1005c668 libvcruntime:undname.obj - 0001:0005b684 $LN401 1005c684 libvcruntime:undname.obj - 0001:0005b69c $LN404 1005c69c libvcruntime:undname.obj - 0001:0005b6ac $LN403 1005c6ac libvcruntime:undname.obj - 0001:0005cc18 $LN88 1005dc18 libvcruntime:undname.obj - 0001:0005cc38 $LN87 1005dc38 libvcruntime:undname.obj - 0001:0005d0bf $LN145 1005e0bf libvcruntime:undname.obj - 0001:0005da26 ?und_memcpy@@YAXPADPBDI@Z 1005ea26 f libvcruntime:undname.obj - 0001:0005da47 ?und_strncmp@@YAIPBD0I@Z 1005ea47 f libvcruntime:undname.obj - 0001:0005db40 $$000000 1005eb40 libvcruntime:strchr.obj - 0001:0005db73 strchr_sse_loop 1005eb73 libvcruntime:strchr.obj - 0001:0005db97 strchr_sse_break 1005eb97 libvcruntime:strchr.obj - 0001:0005dba8 strchr_no_sse2 1005eba8 libvcruntime:strchr.obj - 0001:0005dbc0 str_misaligned 1005ebc0 libvcruntime:strchr.obj - 0001:0005dbd5 main_loop_start 1005ebd5 libvcruntime:strchr.obj - 0001:0005dbe0 main_loop 1005ebe0 libvcruntime:strchr.obj - 0001:0005dc1c retnull 1005ec1c libvcruntime:strchr.obj - 0001:0005dc1e retnull_bx 1005ec1e libvcruntime:strchr.obj - 0001:0005dc22 found_bx 1005ec22 libvcruntime:strchr.obj - 0001:0005dc27 chr_is_found 1005ec27 libvcruntime:strchr.obj - 0001:0005dc4f byte_3 1005ec4f libvcruntime:strchr.obj - 0001:0005dc56 byte_2 1005ec56 libvcruntime:strchr.obj - 0001:0005dc5d byte_1 1005ec5d libvcruntime:strchr.obj - 0001:0005dc64 byte_0 1005ec64 libvcruntime:strchr.obj - 0001:0005dc6b ?try_get_function@@YAPAXW4function_id@?A0x14174aea@@QBDQBW4module_id@2@2@Z 1005ec6b f libvcruntime:winapi_downlevel.obj - 0001:0005dd0b ?try_load_library_from_system_directory@@YAPAUHINSTANCE__@@QB_W@Z 1005ed0b f libvcruntime:winapi_downlevel.obj - 0001:0005de90 $$000000 1005ee90 libvcruntime:exsup4.obj - 0001:0005dec2 _lu_top 1005eec2 libvcruntime:exsup4.obj - 0001:0005df21 _lu_done 1005ef21 libvcruntime:exsup4.obj - 0001:0005df30 $$000000 1005ef30 libvcruntime:exsup4.obj - 0001:0005df30 __unwind_handler4 1005ef30 f libvcruntime:exsup4.obj + 0001:0004767c $LN19 1004867c spellevents.cpp.obj + 0001:00047690 $LN18 10048690 spellevents.cpp.obj + 0001:00048280 $LN210 10049280 spellevents.cpp.obj + 0001:00048288 $LN209 10049288 spellevents.cpp.obj + 0001:000499b8 $LN47 1004a9b8 spellevents.cpp.obj + 0001:000499c0 $LN46 1004a9c0 spellevents.cpp.obj + 0001:0004a344 $LN85 1004b344 misc_scripts.cpp.obj + 0001:0004a344 $LN85 1004b344 misc_scripts.cpp.obj + 0001:0004a344 $LN85 1004b344 spell_scripts.cpp.obj + 0001:0004ba2c $LN59 1004ca2c misc_scripts.cpp.obj + 0001:0004ba44 $LN60 1004ca44 misc_scripts.cpp.obj + 0001:0004be88 $LN160 1004ce88 misc_scripts.cpp.obj + 0001:0004bea0 $LN161 1004cea0 misc_scripts.cpp.obj + 0001:0004c424 $LN56 1004d424 misc_scripts.cpp.obj + 0001:0004c43c $LN57 1004d43c misc_scripts.cpp.obj + 0001:0004c790 $LN101 1004d790 misc_scripts.cpp.obj + 0001:0004deb4 $LN67 1004eeb4 spell_scripts.cpp.obj + 0001:0004decc $LN68 1004eecc spell_scripts.cpp.obj + 0001:0004e3bc $LN166 1004f3bc spell_scripts.cpp.obj + 0001:0004e3d4 $LN167 1004f3d4 spell_scripts.cpp.obj + 0001:0004f940 ??R@@QBE@HIPAUCGItem_C@game@@@Z 10050940 f item_scripts.cpp.obj + 0001:00054cf9 ?_FilterSetCurrentException@@YAKPAU_EXCEPTION_POINTERS@@E@Z 10055cf9 f libvcruntime:ehhelpers.obj + 0001:000552a0 $$000000 100562a0 libvcruntime:memcpy.obj + 0001:000552a0 $$000000 100562a0 libvcruntime:memmove.obj + 0001:000552c0 CopyUp 100562c0 libvcruntime:memcpy.obj + 0001:000552c0 CopyUp 100562c0 libvcruntime:memmove.obj + 0001:000552e4 CopyUpLargeMov 100562e4 libvcruntime:memcpy.obj + 0001:000552e4 CopyUpLargeMov 100562e4 libvcruntime:memmove.obj + 0001:000552f7 CopyUpSSE2Check 100562f7 libvcruntime:memcpy.obj + 0001:000552f7 CopyUpSSE2Check 100562f7 libvcruntime:memmove.obj + 0001:00055310 AtomChk 10056310 libvcruntime:memcpy.obj + 0001:00055310 AtomChk 10056310 libvcruntime:memmove.obj + 0001:00055336 PalignHead4 10056336 libvcruntime:memcpy.obj + 0001:00055336 PalignHead4 10056336 libvcruntime:memmove.obj + 0001:00055349 PalignHead8 10056349 libvcruntime:memcpy.obj + 0001:00055349 PalignHead8 10056349 libvcruntime:memmove.obj + 0001:00055360 PalignLoop 10056360 libvcruntime:memcpy.obj + 0001:00055360 PalignLoop 10056360 libvcruntime:memmove.obj + 0001:00055372 MovPalign12 10056372 libvcruntime:memcpy.obj + 0001:00055372 MovPalign12 10056372 libvcruntime:memmove.obj + 0001:0005537c PalignLoop12 1005637c libvcruntime:memcpy.obj + 0001:0005537c PalignLoop12 1005637c libvcruntime:memmove.obj + 0001:000553cd MovPalign8 100563cd libvcruntime:memcpy.obj + 0001:000553cd MovPalign8 100563cd libvcruntime:memmove.obj + 0001:000553d8 PalignLoop8 100563d8 libvcruntime:memcpy.obj + 0001:000553d8 PalignLoop8 100563d8 libvcruntime:memmove.obj + 0001:00055426 MovPalign4 10056426 libvcruntime:memcpy.obj + 0001:00055426 MovPalign4 10056426 libvcruntime:memmove.obj + 0001:00055430 PalignLoop4 10056430 libvcruntime:memcpy.obj + 0001:00055430 PalignLoop4 10056430 libvcruntime:memmove.obj + 0001:0005547c PalignTail 1005647c libvcruntime:memcpy.obj + 0001:0005547c PalignTail 1005647c libvcruntime:memmove.obj + 0001:00055494 PalignTail4 10056494 libvcruntime:memcpy.obj + 0001:00055494 PalignTail4 10056494 libvcruntime:memmove.obj + 0001:000554a7 PalignTail8 100564a7 libvcruntime:memcpy.obj + 0001:000554a7 PalignTail8 100564a7 libvcruntime:memmove.obj + 0001:000554be PalignTailLE3 100564be libvcruntime:memcpy.obj + 0001:000554be PalignTailLE3 100564be libvcruntime:memmove.obj + 0001:000554c7 Dword_align 100564c7 libvcruntime:memcpy.obj + 0001:000554c7 Dword_align 100564c7 libvcruntime:memmove.obj + 0001:000554cf Dword_up_align_loop 100564cf libvcruntime:memcpy.obj + 0001:000554cf Dword_up_align_loop 100564cf libvcruntime:memmove.obj + 0001:000554e2 Dword_align_Ok 100564e2 libvcruntime:memcpy.obj + 0001:000554e2 Dword_align_Ok 100564e2 libvcruntime:memmove.obj + 0001:000554fc ByteCopyUp 100564fc libvcruntime:memcpy.obj + 0001:000554fc ByteCopyUp 100564fc libvcruntime:memmove.obj + 0001:00055504 TrailingUpVec 10056504 libvcruntime:memcpy.obj + 0001:00055504 TrailingUpVec 10056504 libvcruntime:memmove.obj + 0001:00055514 TrailingUp0 10056514 libvcruntime:memcpy.obj + 0001:00055514 TrailingUp0 10056514 libvcruntime:memmove.obj + 0001:0005551c TrailingUp1 1005651c libvcruntime:memcpy.obj + 0001:0005551c TrailingUp1 1005651c libvcruntime:memmove.obj + 0001:00055528 TrailingUp2 10056528 libvcruntime:memcpy.obj + 0001:00055528 TrailingUp2 10056528 libvcruntime:memmove.obj + 0001:0005553c TrailingUp3 1005653c libvcruntime:memcpy.obj + 0001:0005553c TrailingUp3 1005653c libvcruntime:memmove.obj + 0001:00055554 CopyDown 10056554 libvcruntime:memcpy.obj + 0001:00055554 CopyDown 10056554 libvcruntime:memmove.obj + 0001:00055579 CopyDownNotAligned 10056579 libvcruntime:memcpy.obj + 0001:00055579 CopyDownNotAligned 10056579 libvcruntime:memmove.obj + 0001:00055580 CopyDownAlignLoop 10056580 libvcruntime:memcpy.obj + 0001:00055580 CopyDownAlignLoop 10056580 libvcruntime:memmove.obj + 0001:0005558d CopyDownAligned 1005658d libvcruntime:memcpy.obj + 0001:0005558d CopyDownAligned 1005658d libvcruntime:memmove.obj + 0001:000555b0 TrailingDownVec 100565b0 libvcruntime:memcpy.obj + 0001:000555b0 TrailingDownVec 100565b0 libvcruntime:memmove.obj + 0001:000555c0 TrailingDown0 100565c0 libvcruntime:memcpy.obj + 0001:000555c0 TrailingDown0 100565c0 libvcruntime:memmove.obj + 0001:000555c8 TrailingDown1 100565c8 libvcruntime:memcpy.obj + 0001:000555c8 TrailingDown1 100565c8 libvcruntime:memmove.obj + 0001:000555d8 TrailingDown2 100565d8 libvcruntime:memcpy.obj + 0001:000555d8 TrailingDown2 100565d8 libvcruntime:memmove.obj + 0001:000555ec TrailingDown3 100565ec libvcruntime:memcpy.obj + 0001:000555ec TrailingDown3 100565ec libvcruntime:memmove.obj + 0001:00055605 XmmMovLargeAlignTest 10056605 libvcruntime:memcpy.obj + 0001:00055605 XmmMovLargeAlignTest 10056605 libvcruntime:memmove.obj + 0001:0005560d XmmMovAlignLoop 1005660d libvcruntime:memcpy.obj + 0001:0005560d XmmMovAlignLoop 1005660d libvcruntime:memmove.obj + 0001:0005561c XmmMovLargeLoop 1005661c libvcruntime:memcpy.obj + 0001:0005561c XmmMovLargeLoop 1005661c libvcruntime:memmove.obj + 0001:0005568c XmmMovSmallTest 1005668c libvcruntime:memcpy.obj + 0001:0005568c XmmMovSmallTest 1005668c libvcruntime:memmove.obj + 0001:00055691 XmmMovSmallLoop 10056691 libvcruntime:memcpy.obj + 0001:00055691 XmmMovSmallLoop 10056691 libvcruntime:memmove.obj + 0001:000556b4 CopyDownSmall 100566b4 libvcruntime:memcpy.obj + 0001:000556b4 CopyDownSmall 100566b4 libvcruntime:memmove.obj + 0001:000556bc CopyDownDwordLoop 100566bc libvcruntime:memcpy.obj + 0001:000556bc CopyDownDwordLoop 100566bc libvcruntime:memmove.obj + 0001:000556d1 CopyDownByteTest 100566d1 libvcruntime:memcpy.obj + 0001:000556d1 CopyDownByteTest 100566d1 libvcruntime:memmove.obj + 0001:000556d5 CopyDownByteLoop 100566d5 libvcruntime:memcpy.obj + 0001:000556d5 CopyDownByteLoop 100566d5 libvcruntime:memmove.obj + 0001:000556e4 CopyDownReturn 100566e4 libvcruntime:memcpy.obj + 0001:000556e4 CopyDownReturn 100566e4 libvcruntime:memmove.obj + 0001:000556f0 XmmCopy 100566f0 libvcruntime:memcpy.obj + 0001:000556f0 XmmCopy 100566f0 libvcruntime:memmove.obj + 0001:000556fd XmmCopyAligned 100566fd libvcruntime:memcpy.obj + 0001:000556fd XmmCopyAligned 100566fd libvcruntime:memmove.obj + 0001:00055710 XmmCopyLargeLoop 10056710 libvcruntime:memcpy.obj + 0001:00055710 XmmCopyLargeLoop 10056710 libvcruntime:memmove.obj + 0001:0005576d XmmCopySmallTest 1005676d libvcruntime:memcpy.obj + 0001:0005576d XmmCopySmallTest 1005676d libvcruntime:memmove.obj + 0001:00055780 XmmCopySmallLoop 10056780 libvcruntime:memcpy.obj + 0001:00055780 XmmCopySmallLoop 10056780 libvcruntime:memmove.obj + 0001:0005579b CopyUpDwordMov 1005679b libvcruntime:memcpy.obj + 0001:0005579b CopyUpDwordMov 1005679b libvcruntime:memmove.obj + 0001:000557a0 CopyUpDwordTest 100567a0 libvcruntime:memcpy.obj + 0001:000557a0 CopyUpDwordTest 100567a0 libvcruntime:memmove.obj + 0001:000557a7 CopyUpDwordLoop 100567a7 libvcruntime:memcpy.obj + 0001:000557a7 CopyUpDwordLoop 100567a7 libvcruntime:memmove.obj + 0001:000557b6 CopyUpByteTest 100567b6 libvcruntime:memcpy.obj + 0001:000557b6 CopyUpByteTest 100567b6 libvcruntime:memmove.obj + 0001:000557bd CopyUpByteLoop 100567bd libvcruntime:memcpy.obj + 0001:000557bd CopyUpByteLoop 100567bd libvcruntime:memmove.obj + 0001:000557d0 CopyUpReturn 100567d0 libvcruntime:memcpy.obj + 0001:000557d0 CopyUpReturn 100567d0 libvcruntime:memmove.obj + 0001:000557e0 XmmCopyUnaligned 100567e0 libvcruntime:memcpy.obj + 0001:000557e0 XmmCopyUnaligned 100567e0 libvcruntime:memmove.obj + 0001:000557f3 XmmAlignByte 100567f3 libvcruntime:memcpy.obj + 0001:000557f3 XmmAlignByte 100567f3 libvcruntime:memmove.obj + 0001:000557fc XmmAlignDwordTest 100567fc libvcruntime:memcpy.obj + 0001:000557fc XmmAlignDwordTest 100567fc libvcruntime:memmove.obj + 0001:00055801 XmmAlignDwordLoop 10056801 libvcruntime:memcpy.obj + 0001:00055801 XmmAlignDwordLoop 10056801 libvcruntime:memmove.obj + 0001:0005580e XmmAlignAdjustCnt 1005680e libvcruntime:memcpy.obj + 0001:0005580e XmmAlignAdjustCnt 1005680e libvcruntime:memmove.obj + 0001:00055883 ?FindMITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PAXPBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@H2@Z 10056883 f libvcruntime:rtti.obj + 0001:0005596c ?FindSITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@1@Z 1005696c f libvcruntime:rtti.obj + 0001:00055a55 ?FindVITargetTypeInstance@@YAPBU_s_RTTIBaseClassDescriptor@@PAXPBU_s_RTTICompleteObjectLocator@@PAUTypeDescriptor@@H2@Z 10056a55 f libvcruntime:rtti.obj + 0001:00055bbd ?PMDtoOffset@@YAHPAXABUPMD@@@Z 10056bbd f libvcruntime:rtti.obj + 0001:00055be1 ?TypeidsEqual@@YA_NQBUTypeDescriptor@@0@Z 10056be1 f libvcruntime:rtti.obj + 0001:00055dfb ?@@?1??__std_type_info_name@@YAPBDPAU__std_type_info_data@@PAU__type_info_node@@@Z@SA@I@Z 10056dfb f libvcruntime:std_type_info.obj + 0001:00055e04 ?@@?1??__std_type_info_name@@YAPBDPAU__std_type_info_data@@PAU__type_info_node@@@Z@SA@QAX@Z 10056e04 f libvcruntime:std_type_info.obj + 0001:00055f30 $$000000 10056f30 libvcruntime:memset.obj + 0001:00055f75 XMMMov 10056f75 libvcruntime:memset.obj + 0001:00055fb0 LargeRangeBytes 10056fb0 libvcruntime:memset.obj + 0001:00055fed XmmMovSmall 10056fed libvcruntime:memset.obj + 0001:00056000 XmmSmallLoop 10057000 libvcruntime:memset.obj + 0001:00056005 MidRangeBytes 10057005 libvcruntime:memset.obj + 0001:00056021 XMMTrailingBytes 10057021 libvcruntime:memset.obj + 0001:00056035 SmallMov 10057035 libvcruntime:memset.obj + 0001:0005603d ByteLoop 1005703d libvcruntime:memset.obj + 0001:0005604b DwordTest 1005704b libvcruntime:memset.obj + 0001:0005605b QwordTest 1005705b libvcruntime:memset.obj + 0001:00056070 QwordLoop 10057070 libvcruntime:memset.obj + 0001:00056083 toend 10057083 libvcruntime:memset.obj + 0001:00056090 $$000000 10057090 libvcruntime:strstr.obj + 0001:000560d3 strstr_sse_safeloop 100570d3 libvcruntime:strstr.obj + 0001:000560fa strstr_sse_search 100570fa libvcruntime:strstr.obj + 0001:000560fa strstr_sse_unsafe 100570fa libvcruntime:strstr.obj + 0001:000560fe strstr_sse_srchloop 100570fe libvcruntime:strstr.obj + 0001:00056134 strstr_sse_srchchar 10057134 libvcruntime:strstr.obj + 0001:0005614b strstr_sse_cmploop 1005714b libvcruntime:strstr.obj + 0001:00056186 strstr_sse_cmpchars 10057186 libvcruntime:strstr.obj + 0001:0005618d strstr_sse_cmpunsafe 1005718d libvcruntime:strstr.obj + 0001:000561a4 strstr_sse_match 100571a4 libvcruntime:strstr.obj + 0001:000561a9 strstr_sse_not_found 100571a9 libvcruntime:strstr.obj + 0001:000561ab strstr_sse_exit 100571ab libvcruntime:strstr.obj + 0001:000561af strstr_sttni 100571af libvcruntime:strstr.obj + 0001:000561cb strstr_sttni_setchars 100571cb libvcruntime:strstr.obj + 0001:000561d0 strstr_sttni_setloopchar 100571d0 libvcruntime:strstr.obj + 0001:000561d6 strstr_sttni_setloopnochar 100571d6 libvcruntime:strstr.obj + 0001:000561ea strstr_sttni_srchnext 100571ea libvcruntime:strstr.obj + 0001:000561ed strstr_sttni_srch 100571ed libvcruntime:strstr.obj + 0001:000561f1 strstr_sttni_srchloop 100571f1 libvcruntime:strstr.obj + 0001:00056210 strstr_sttni_srchxmm 10057210 libvcruntime:strstr.obj + 0001:00056223 strstr_sttni_srchcheck 10057223 libvcruntime:strstr.obj + 0001:00056227 strstr_sttni_cmploop 10057227 libvcruntime:strstr.obj + 0001:0005625f strstr_sttni_cmpchar 1005725f libvcruntime:strstr.obj + 0001:0005627a strstr_no_sse 1005727a libvcruntime:strstr.obj + 0001:0005628d findnext 1005728d libvcruntime:strstr.obj + 0001:000562a0 loop_start 100572a0 libvcruntime:strstr.obj + 0001:000562a5 in_loop 100572a5 libvcruntime:strstr.obj + 0001:000562ad not_found 100572ad libvcruntime:strstr.obj + 0001:000562b3 first_char_found 100572b3 libvcruntime:strstr.obj + 0001:000562bc two_first_chars_equal 100572bc libvcruntime:strstr.obj + 0001:000562bf compare_loop 100572bf libvcruntime:strstr.obj + 0001:000562e2 strchr_call 100572e2 libvcruntime:strstr.obj + 0001:000562ee match 100572ee libvcruntime:strstr.obj + 0001:000562f5 empty_str2 100572f5 libvcruntime:strstr.obj + 0001:00056300 $$000000 10057300 libvcruntime:memchr.obj + 0001:0005631b str_misaligned 1005731b libvcruntime:memchr.obj + 0001:00056331 main_loop_start 10057331 libvcruntime:memchr.obj + 0001:00056347 return_from_main 10057347 libvcruntime:memchr.obj + 0001:00056348 tail_less_then_4 10057348 libvcruntime:memchr.obj + 0001:0005634d tail_loop 1005734d libvcruntime:memchr.obj + 0001:0005635b retnull 1005735b libvcruntime:memchr.obj + 0001:0005635d main_loop 1005735d libvcruntime:memchr.obj + 0001:00056362 main_loop_entry 10057362 libvcruntime:memchr.obj + 0001:0005637d char_is_found 1005737d libvcruntime:memchr.obj + 0001:00056395 byte_3 10057395 libvcruntime:memchr.obj + 0001:00056396 found 10057396 libvcruntime:memchr.obj + 0001:0005639b byte_2 1005739b libvcruntime:memchr.obj + 0001:000563a1 byte_1 100573a1 libvcruntime:memchr.obj + 0001:000563a7 byte_0 100573a7 libvcruntime:memchr.obj + 0001:00056520 _ValidateLocalCookies 10057520 f libvcruntime:chandler4.obj + 0001:000566be ??$BuildCatchObjectHelperInternal@V__FrameHandler3@@@@YAHPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 100576be f libvcruntime:frame.obj + 0001:000567fc ??$BuildCatchObjectInternal@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAXPBU_s_HandlerType@@PBU_s_CatchableType@@@Z 100577fc f libvcruntime:frame.obj + 0001:00056895 ??$CatchIt@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@PBU_s_HandlerType@@PBU_s_CatchableType@@PBU_s_TryBlockMapEntry@@H1EE@Z 10057895 f libvcruntime:frame.obj + 0001:00056915 ??$FindHandler@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@EH1@Z 10057915 f libvcruntime:frame.obj + 0001:00056cba ??$FindHandlerForForeignException@V__FrameHandler3@@@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPBU_s_FuncInfo@@HH1@Z 10057cba f libvcruntime:frame.obj + 0001:00056f89 ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PBU_s_FuncInfo@@PAXHK@Z 10057f89 f libvcruntime:frame.obj + 0001:00057158 ?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 10058158 f libvcruntime:frame.obj + 0001:00057178 __catch$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z$0 10058178 f libvcruntime:frame.obj + 0001:00057197 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 10058197 f libvcruntime:frame.obj + 0001:000572e1 ?IsInExceptionSpec@@YAEPAUEHExceptionRecord@@PBU_s_ESTypeList@@@Z 100582e1 f libvcruntime:frame.obj + 0001:000573b0 $$000000 100583b0 libvcruntime:lowhelpr.obj + 0001:000573ef _NLG_Continue 100583ef libvcruntime:lowhelpr.obj + 0001:000575f0 ??$get_encoding@M@@YA?A_P_K@Z 100585f0 f libvcruntime:undname.obj + 0001:00057650 ??$get_encoding@N@@YA?A_P_K@Z 10058650 f libvcruntime:undname.obj + 0001:00057985 ??1TrackRecursion@?1??getDecoratedName@UnDecorator@@CA?AVDName@@XZ@QAE@XZ 10058985 f libvcruntime:undname.obj + 0001:000595c1 $LN197 1005a5c1 libvcruntime:undname.obj + 0001:000595e5 $LN196 1005a5e5 libvcruntime:undname.obj + 0001:000595f9 $LN198 1005a5f9 libvcruntime:undname.obj + 0001:0005a4fd $LN40 1005b4fd libvcruntime:undname.obj + 0001:0005b694 $LN400 1005c694 libvcruntime:undname.obj + 0001:0005b6a0 $LN399 1005c6a0 libvcruntime:undname.obj + 0001:0005b6b8 $LN402 1005c6b8 libvcruntime:undname.obj + 0001:0005b6d4 $LN401 1005c6d4 libvcruntime:undname.obj + 0001:0005b6ec $LN404 1005c6ec libvcruntime:undname.obj + 0001:0005b6fc $LN403 1005c6fc libvcruntime:undname.obj + 0001:0005cc68 $LN88 1005dc68 libvcruntime:undname.obj + 0001:0005cc88 $LN87 1005dc88 libvcruntime:undname.obj + 0001:0005d10f $LN145 1005e10f libvcruntime:undname.obj + 0001:0005da76 ?und_memcpy@@YAXPADPBDI@Z 1005ea76 f libvcruntime:undname.obj + 0001:0005da97 ?und_strncmp@@YAIPBD0I@Z 1005ea97 f libvcruntime:undname.obj + 0001:0005db90 $$000000 1005eb90 libvcruntime:strchr.obj + 0001:0005dbc3 strchr_sse_loop 1005ebc3 libvcruntime:strchr.obj + 0001:0005dbe7 strchr_sse_break 1005ebe7 libvcruntime:strchr.obj + 0001:0005dbf8 strchr_no_sse2 1005ebf8 libvcruntime:strchr.obj + 0001:0005dc10 str_misaligned 1005ec10 libvcruntime:strchr.obj + 0001:0005dc25 main_loop_start 1005ec25 libvcruntime:strchr.obj + 0001:0005dc30 main_loop 1005ec30 libvcruntime:strchr.obj + 0001:0005dc6c retnull 1005ec6c libvcruntime:strchr.obj + 0001:0005dc6e retnull_bx 1005ec6e libvcruntime:strchr.obj + 0001:0005dc72 found_bx 1005ec72 libvcruntime:strchr.obj + 0001:0005dc77 chr_is_found 1005ec77 libvcruntime:strchr.obj + 0001:0005dc9f byte_3 1005ec9f libvcruntime:strchr.obj + 0001:0005dca6 byte_2 1005eca6 libvcruntime:strchr.obj + 0001:0005dcad byte_1 1005ecad libvcruntime:strchr.obj + 0001:0005dcb4 byte_0 1005ecb4 libvcruntime:strchr.obj + 0001:0005dcbb ?try_get_function@@YAPAXW4function_id@?A0x14174aea@@QBDQBW4module_id@2@2@Z 1005ecbb f libvcruntime:winapi_downlevel.obj + 0001:0005dd5b ?try_load_library_from_system_directory@@YAPAUHINSTANCE__@@QB_W@Z 1005ed5b f libvcruntime:winapi_downlevel.obj + 0001:0005dee0 $$000000 1005eee0 libvcruntime:exsup4.obj + 0001:0005df12 _lu_top 1005ef12 libvcruntime:exsup4.obj + 0001:0005df71 _lu_done 1005ef71 libvcruntime:exsup4.obj 0001:0005df80 $$000000 1005ef80 libvcruntime:exsup4.obj - 0001:0005dfa0 $$000000 1005efa0 libvcruntime:exsup4.obj - 0001:0005dfc0 $$000000 1005efc0 libvcruntime:exsup4.obj - 0001:0005dfd5 ReturnPoint 1005efd5 libvcruntime:exsup4.obj - 0001:0005dfe0 $$000000 1005efe0 libvcruntime:exsup4.obj - 0001:0005e040 $$000000 1005f040 libvcruntime:exsup.obj - 0001:0005e050 $$000000 1005f050 libvcruntime:exsup.obj - 0001:0005e05b __NLG_Go 1005f05b libvcruntime:exsup.obj - 0001:0005e070 $$000000 1005f070 libvcruntime:exsup.obj - 0001:0005e607 ?_fclose_internal@@YAHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1005f607 f libucrt:fclose.obj - 0001:0005e69e ?_fclose_nolock_internal@@YAHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1005f69e f libucrt:fclose.obj - 0001:0005e75c ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1005f75c f libucrt:fflush.obj - 0001:0005e7e8 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1005f7e8 f libucrt:fflush.obj - 0001:0005e894 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1005f894 f libucrt:fflush.obj - 0001:0005e8f4 ?common_flush_all@@YAH_N@Z 1005f8f4 f libucrt:fflush.obj - 0001:0005e941 ?common_flush_all_should_try_to_flush_stream@@YA_NV__crt_stdio_stream@@QAH@Z 1005f941 f libucrt:fflush.obj - 0001:0005e972 ?is_stream_flushable_or_commitable@@YA_NJ@Z 1005f972 f libucrt:fflush.obj - 0001:0005ec6f ?_fputc_internal@@YAHHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1005fc6f f libucrt:fputc.obj - 0001:0005f09a _memcpy_s 1006009a f libucrt:cfout.obj - 0001:0005f09a _memcpy_s 1006009a f libucrt:strtod.obj - 0001:0005f09a _memcpy_s 1006009a f libucrt:mbctype.obj - 0001:0005f09a _memcpy_s 1006009a f libucrt:fread.obj - 0001:0005f1d0 ?common_fseek@@YAHV__crt_stdio_stream@@_JHAAV__crt_cached_ptd_host@@@Z 100601d0 f libucrt:fseek.obj - 0001:0005f27a ?common_fseek_binary_mode_read_only_fast_track_nolock@@YA_NV__crt_stdio_stream@@_JH@Z 1006027a f libucrt:fseek.obj - 0001:0005f353 ?common_fseek_nolock@@YAHV__crt_stdio_stream@@_JHAAV__crt_cached_ptd_host@@@Z 10060353 f libucrt:fseek.obj - 0001:0005f4b3 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@I@@QAEI$$QAV@@AAV@@$$QAV@@@Z 100604b3 f libucrt:fwrite.obj - 0001:0005f50e ??R@@QBEIXZ 1006050e f libucrt:fwrite.obj - 0001:0005f7b2 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100607b2 f libucrt:setvbuf.obj - 0001:0005f80d ??R@@QBE@XZ 1006080d f libucrt:setvbuf.obj - 0001:0005f8ad ?_setvbuf_internal@@YAHQAU_iobuf@@QADHIAAV__crt_cached_ptd_host@@@Z 100608ad f libucrt:setvbuf.obj - 0001:0005f943 ?set_buffer@@YAHV__crt_stdio_stream@@QADIH@Z 10060943 f libucrt:setvbuf.obj - 0001:0005fde8 ??$common_vsprintf@Vformat_validation_base@__crt_stdio_output@@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 10060de8 f libucrt:output.obj - 0001:0005ff5c ??$common_vsprintf@Vstandard_base@__crt_stdio_output@@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 10060f5c f libucrt:output.obj - 0001:000600d0 ??$common_vsprintf_s@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 100610d0 f libucrt:output.obj - 0001:00061181 $LN140 10062181 libucrt:output.obj - 0001:00061455 $LN130 10062455 libucrt:output.obj - 0001:00061961 $LN18 10062961 libucrt:output.obj - 0001:00061975 $LN17 10062975 libucrt:output.obj - 0001:00062de0 ??$common_strtod_l@MD@@YAMQBDQAPADQAU__crt_locale_pointers@@@Z 10063de0 f libucrt:strtod.obj - 0001:000636bc $LN32 100646bc libucrt:strtod.obj - 0001:00066000 $$000000 10067000 libucrt:strcspn.obj - 0001:00066050 $$000000 10067050 libucrt:strncmp.obj - 0001:000660c8 ??$common_localtime_s@_J@@YAHQAUtm@@QB_J@Z 100670c8 f libucrt:localtime.obj - 0001:000668f0 $$000000 100678f0 libucrt:sqrt_sse2_precise.obj - 0001:000669f0 $$000000 100679f0 libucrt:ceil_pentium4.obj - 0001:00066d20 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10067d20 f libucrt:per_thread_data.obj - 0001:00066d72 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10067d72 f libucrt:per_thread_data.obj - 0001:00066ddd ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10067ddd f libucrt:per_thread_data.obj - 0001:00066e32 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10067e32 f libucrt:per_thread_data.obj - 0001:00066e8c ?construct_ptd@@YAXQAU__acrt_ptd@@QAPAU__crt_locale_data@@@Z 10067e8c f libucrt:per_thread_data.obj - 0001:00066f25 ?destroy_fls@@YGXPAX@Z 10067f25 f libucrt:per_thread_data.obj - 0001:00066f46 ?destroy_ptd@@YAXQAU__acrt_ptd@@@Z 10067f46 f libucrt:per_thread_data.obj - 0001:00067013 ?replace_current_thread_locale_nolock@@YAXQAU__acrt_ptd@@QAU__crt_locale_data@@@Z 10068013 f libucrt:per_thread_data.obj - 0001:00067375 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10068375 f libucrt:wsetlocale.obj - 0001:000673c2 ??$?RV@@AAV@@AAV@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@AAV@@@Z 100683c2 f libucrt:wsetlocale.obj - 0001:00067407 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10068407 f libucrt:wsetlocale.obj - 0001:000674ef ??R@@QBE@XZ 100684ef f libucrt:wsetlocale.obj - 0001:00067559 ??R@@QBE@XZ 10068559 f libucrt:wsetlocale.obj - 0001:0006790f __copytlocinfo_nolock 1006890f f libucrt:wsetlocale.obj - 0001:0006793e __expandlocale 1006893e f libucrt:wsetlocale.obj - 0001:00067dc8 __wsetlocale_get_all 10068dc8 f libucrt:wsetlocale.obj - 0001:00067f63 __wsetlocale_nolock 10068f63 f libucrt:wsetlocale.obj - 0001:00068253 __wsetlocale_set_cat 10069253 f libucrt:wsetlocale.obj - 0001:00068613 _get_default_code_page 10069613 f libucrt:wsetlocale.obj - 0001:00068642 _parse_bcp47 10069642 f libucrt:wsetlocale.obj - 0001:0006881c _parse_bcp47_code_page 1006981c f libucrt:wsetlocale.obj - 0001:0006885b _parse_bcp47_language 1006985b f libucrt:wsetlocale.obj - 0001:000688cd _parse_bcp47_region 100698cd f libucrt:wsetlocale.obj - 0001:0006898b _parse_bcp47_script 1006998b f libucrt:wsetlocale.obj - 0001:000689fb _string_is_alpha 100699fb f libucrt:wsetlocale.obj - 0001:00068ad1 ?@@@CG@PA_W@Z 10069ad1 f libucrt:winapi_thunks.obj - 0001:00068ade ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 10069ade f libucrt:winapi_thunks.obj - 0001:00068b79 ??R@@QBE@PA_W@Z 10069b79 f libucrt:winapi_thunks.obj - 0001:00068bac ?try_get_AreFileApisANSI@@YAP6GHXZXZ 10069bac f libucrt:winapi_thunks.obj - 0001:00068bc6 ?try_get_CompareStringEx@@YAP6GHPB_WK0H0HPAU_nlsversioninfo@@PAXJ@ZXZ 10069bc6 f libucrt:winapi_thunks.obj - 0001:00068be0 ?try_get_EnumSystemLocalesEx@@YAP6GHP6GHPA_WKJ@ZKJPAX@ZXZ 10069be0 f libucrt:winapi_thunks.obj - 0001:00068bfa ?try_get_GetDateFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH0@ZXZ 10069bfa f libucrt:winapi_thunks.obj - 0001:00068c14 ?try_get_GetLocaleInfoEx@@YAP6GHPB_WKPA_WH@ZXZ 10069c14 f libucrt:winapi_thunks.obj - 0001:00068c2e ?try_get_GetTimeFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH@ZXZ 10069c2e f libucrt:winapi_thunks.obj - 0001:00068c48 ?try_get_GetUserDefaultLocaleName@@YAP6GHPA_WH@ZXZ 10069c48 f libucrt:winapi_thunks.obj - 0001:00068c62 ?try_get_IsValidLocaleName@@YAP6GHPB_W@ZXZ 10069c62 f libucrt:winapi_thunks.obj - 0001:00068c7c ?try_get_LCIDToLocaleName@@YAP6GHKPA_WHK@ZXZ 10069c7c f libucrt:winapi_thunks.obj - 0001:00068c96 ?try_get_LCMapStringEx@@YAP6GHPB_WK0HPA_WHPAU_nlsversioninfo@@PAXJ@ZXZ 10069c96 f libucrt:winapi_thunks.obj - 0001:00068cb0 ?try_get_LocaleNameToLCID@@YAP6GKPB_WK@ZXZ 10069cb0 f libucrt:winapi_thunks.obj - 0001:00068cca ?try_get_first_available_module@@YAPAUHINSTANCE__@@QBW4module_id@?A0x391cf84c@@0@Z 10069cca f libucrt:winapi_thunks.obj - 0001:00068d95 ?try_get_function@@YAPAXW4function_id@?A0x391cf84c@@QBDQBW4module_id@2@2@Z 10069d95 f libucrt:winapi_thunks.obj - 0001:00069407 ?initialize_inherited_file_handles_nolock@@YAXXZ 1006a407 f libucrt:ioinit.obj - 0001:000694bd ?initialize_stdio_handles_nolock@@YAXXZ 1006a4bd f libucrt:ioinit.obj - 0001:00069620 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1006a620 f libucrt:close.obj - 0001:000698c8 ?find_or_allocate_unused_stream_nolock@@YA?AV__crt_stdio_stream@@XZ 1006a8c8 f libucrt:stream.obj - 0001:00069a41 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1006aa41 f libucrt:commit.obj - 0001:00069b60 ?write_double_translated_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDIAAV__crt_cached_ptd_host@@@Z 1006ab60 f libucrt:write.obj - 0001:00069f27 ?write_double_translated_unicode_nolock@@YA?AUwrite_result@?A0x17268360@@QBDI@Z 1006af27 f libucrt:write.obj - 0001:00069f8f ?write_requires_double_translation_nolock@@YA_NHAAV__crt_cached_ptd_host@@@Z 1006af8f f libucrt:write.obj - 0001:0006a00c ?write_text_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 1006b00c f libucrt:write.obj - 0001:0006a0e7 ?write_text_utf16le_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 1006b0e7 f libucrt:write.obj - 0001:0006a1d0 ?write_text_utf8_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 1006b1d0 f libucrt:write.obj - 0001:0006a666 ??$common_refill_and_read_nolock@D@@YAHV__crt_stdio_stream@@@Z 1006b666 f libucrt:_filbuf.obj - 0001:0006a800 ??$common_ftell@_J@@YA_JV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1006b800 f libucrt:ftell.obj - 0001:0006a88f ??$common_ftell_nolock@_J@@YA_JV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1006b88f f libucrt:ftell.obj - 0001:0006aa30 ?common_ftell_read_mode_nolock@@YA_JV__crt_stdio_stream@@_J1AAV__crt_cached_ptd_host@@@Z 1006ba30 f libucrt:ftell.obj - 0001:0006abfb ?common_ftell_translated_utf8_nolock@@YA_JV__crt_stdio_stream@@_JAAV__crt_cached_ptd_host@@@Z 1006bbfb f libucrt:ftell.obj - 0001:0006ada6 ?count_newline_bytes@@YA_JQBD0W4__crt_lowio_text_mode@@@Z 1006bda6 f libucrt:ftell.obj - 0001:0006ae38 ??$common_flush_and_write_nolock@D@@YAHHV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1006be38 f libucrt:_flsbuf.obj - 0001:0006af2e ??$write_buffer_nolock@D@@YA_NDV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1006bf2e f libucrt:_flsbuf.obj - 0001:0006b000 ?stream_is_at_end_of_file_nolock@@YA_NV__crt_stdio_stream@@@Z 1006c000 f libucrt:_flsbuf.obj - 0001:0006b090 ??$translate_text_mode_nolock@D@@YAHHQADI@Z 1006c090 f libucrt:read.obj - 0001:0006b1dd ??$translate_text_mode_nolock@_W@@YAHHQA_WI@Z 1006c1dd f libucrt:read.obj - 0001:0006b397 ?translate_ansi_or_utf8_nolock@@YAHHQADIQA_WI@Z 1006c397 f libucrt:read.obj - 0001:0006b4ee ?translate_utf16_from_console_nolock@@YAHHQA_WI@Z 1006c4ee f libucrt:read.obj - 0001:0006ba10 ??$common_lseek@_J@@YA_JH_JHAAV__crt_cached_ptd_host@@@Z 1006ca10 f libucrt:lseek.obj - 0001:0006bb35 ??$common_lseek_nolock@_J@@YA_JH_JHAAV__crt_cached_ptd_host@@@Z 1006cb35 f libucrt:lseek.obj - 0001:0006be45 ?filter_mbtowcs_flags@@YAKIK@Z 1006ce45 f libucrt:multibytetowidechar.obj - 0001:0006c324 ?fe_to_nearest@@YA_NQBN_KF@Z 1006d324 f libucrt:cvt.obj - 0001:0006c3c7 ?fp_format_a@@YAHQBNPADIQADIH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1006d3c7 f libucrt:cvt.obj - 0001:0006c6f4 ?fp_format_e@@YAHQBNQADI1IH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1006d6f4 f libucrt:cvt.obj - 0001:0006c798 ?fp_format_e_internal@@YAHQADIH_NIQAU_strflt@@1AAV__crt_cached_ptd_host@@@Z 1006d798 f libucrt:cvt.obj - 0001:0006c8eb ?fp_format_f@@YAHQBNQADI1IHW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1006d8eb f libucrt:cvt.obj - 0001:0006c981 ?fp_format_f_internal@@YAHQADIHQAU_strflt@@_NAAV__crt_cached_ptd_host@@@Z 1006d981 f libucrt:cvt.obj - 0001:0006ca6f ?fp_format_g@@YAHQBNQADI1IH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1006da6f f libucrt:cvt.obj - 0001:0006cb3e ?fp_format_nan_or_infinity@@YAHW4__acrt_fp_class@@_NPADI1@Z 1006db3e f libucrt:cvt.obj - 0001:0006cbd3 ?shift_bytes@@YAXQADI0H@Z 1006dbd3 f libucrt:cvt.obj - 0001:0006cc07 ?should_round_up@@YA_NQBN_KFW4__acrt_rounding_mode@@@Z 1006dc07 f libucrt:cvt.obj - 0001:0006daba ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1006eaba f libucrt:exit.obj - 0001:0006db22 ??R@@QBE@XZ 1006eb22 f libucrt:exit.obj - 0001:0006dc0a ?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 1006ec0a f libucrt:exit.obj - 0001:0006dca1 ?exit_or_terminate_process@@YAXI@Z 1006eca1 f libucrt:exit.obj - 0001:0006dcd2 ?is_managed_app@@YA_NXZ 1006ecd2 f libucrt:exit.obj - 0001:0006dd14 ?should_call_terminate_process@@YA_NXZ 1006ed14 f libucrt:exit.obj - 0001:0006dd2d ?try_cor_exit_process@@YAXI@Z 1006ed2d f libucrt:exit.obj - 0001:0006ddea ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@P6AXH@Z@@QAEP6AXH@Z$$QAV@@AAV@@$$QAV@@@Z 1006edea f libucrt:signal.obj - 0001:0006de52 ?get_global_action_nolock@@YAPAP6AXH@ZH@Z 1006ee52 f libucrt:signal.obj - 0001:0006de94 ?siglookup@@YAPAU__crt_signal_action_t@@HQAU1@@Z 1006ee94 f libucrt:signal.obj - 0001:0006e3ac ??$common_gmtime_s@_J@@YAHQAUtm@@QB_J@Z 1006f3ac f libucrt:gmtime.obj - 0001:0006e4f6 ?compute_year@@YAHAA_JAA_N@Z 1006f4f6 f libucrt:gmtime.obj - 0001:0006e5ba ?_isindst_nolock@@YAHQAUtm@@@Z 1006f5ba f libucrt:tzset.obj - 0001:0006e7d4 ?cvtdate@@YAXW4transition_type@?A0x7639d0b4@@W4date_type@2@HHHHHHHHH@Z 1006f7d4 f libucrt:tzset.obj - 0001:0006e917 ?get_tz_environment_variable@@YAPA_WAAY0BAA@_W@Z 1006f917 f libucrt:tzset.obj - 0001:0006e98e ?tzset_env_copy_to_tzname@@YAXQB_WQA_WQADI@Z 1006f98e f libucrt:tzset.obj - 0001:0006e9d5 ?tzset_from_environment_nolock@@YAXPA_W@Z 1006f9d5 f libucrt:tzset.obj - 0001:0006ec67 ?tzset_from_system_nolock@@YAXXZ 1006fc67 f libucrt:tzset.obj - 0001:0006edc1 ?tzset_nolock@@YAXXZ 1006fdc1 f libucrt:tzset.obj - 0001:0006ee37 ?tzset_os_copy_to_tzname@@YAXQB_WQA_WQADI@Z 1006fe37 f libucrt:tzset.obj - 0001:0006ef2a ?filter_wcstomb_flags@@YAKIK@Z 1006ff2a f libucrt:widechartomultibyte.obj - 0001:0006f02f ?compute_iso_week@@YAHHHH@Z 1007002f f libucrt:wcsftime.obj - 0001:0006f078 ?compute_iso_week_internal@@YAHHHH@Z 10070078 f libucrt:wcsftime.obj - 0001:0006f10d ?compute_iso_year@@YAHHHH@Z 1007010d f libucrt:wcsftime.obj - 0001:0006f138 ?expand_time@@YA_NPAU__crt_locale_pointers@@_WPBUtm@@PAPA_WPAIPBU__crt_lc_time_data@@_N@Z 10070138 f libucrt:wcsftime.obj - 0001:0006faec $LN191 10070aec libucrt:wcsftime.obj - 0001:0006fb0c ?store_number@@YAXHHQAPA_WQAI_W@Z 10070b0c f libucrt:wcsftime.obj - 0001:0006fba0 ?store_number_without_lead_zeroes@@YAXHQAPA_WQAI@Z 10070ba0 f libucrt:wcsftime.obj - 0001:0006fc1a ?store_string@@YAXPB_WQAPA_WQAI@Z 10070c1a f libucrt:wcsftime.obj - 0001:0006fc4d ?store_winword@@YA_NQAU__crt_locale_pointers@@HQBUtm@@QAPA_WQAIQBU__crt_lc_time_data@@@Z 10070c4d f libucrt:wcsftime.obj - 0001:00070975 ?__acrt_LCMapStringA_stat@@YAHPAU__crt_locale_pointers@@PB_WKPBDHPADHHH@Z 10071975 f libucrt:lcmapstringa.obj - 0001:00070db0 $$000000 10071db0 libucrt:sqrt.obj - 0001:00070e90 $$000000 10071e90 libucrt:_strnicm.obj - 0001:0007128b ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1007228b f libucrt:mbctype.obj - 0001:000712d8 ??R@@QBE@XZ 100722d8 f libucrt:mbctype.obj - 0001:0007135b ?CPtoLocaleName@@YAPB_WH@Z 1007235b f libucrt:mbctype.obj - 0001:00071399 ?getSystemCP@@YAHH@Z 10072399 f libucrt:mbctype.obj - 0001:0007140a ?setSBCS@@YAXPAU__crt_multibyte_data@@@Z 1007240a f libucrt:mbctype.obj - 0001:0007146d ?setSBUpLow@@YAXPAU__crt_multibyte_data@@@Z 1007246d f libucrt:mbctype.obj - 0001:00071612 ?setmbcp_internal@@YAHH_NQAU__acrt_ptd@@QAPAU__crt_multibyte_data@@@Z 10072612 f libucrt:mbctype.obj - 0001:00071767 ?update_thread_multibyte_data_internal@@YAPAU__crt_multibyte_data@@QAU__acrt_ptd@@QAPAU1@@Z 10072767 f libucrt:mbctype.obj - 0001:00072780 ?free_crt_array_internal@@YAXQAPBXI@Z 10073780 f libucrt:inittime.obj - 0001:000727a5 ?initialize_lc_time@@YA_NQAU__crt_lc_time_data@@QAU__crt_locale_data@@@Z 100737a5 f libucrt:inittime.obj - 0001:00072c53 ??$common_tcsncat_s@_W@@YAHQA_WIQB_WI@Z 10073c53 f libucrt:wcsncat_s.obj - 0001:00072d46 ??$common_tcsncpy_s@_W@@YAHQA_WIQB_WI@Z 10073d46 f libucrt:wcsncpy_s.obj - 0001:00072fc7 _GetLocaleNameFromDefault 10073fc7 f libucrt:get_qualified_locale.obj - 0001:0007304e _GetLocaleNameFromLangCountry 1007404e f libucrt:get_qualified_locale.obj - 0001:000730e7 _GetLocaleNameFromLanguage 100740e7 f libucrt:get_qualified_locale.obj - 0001:00073140 _GetPrimaryLen 10074140 f libucrt:get_qualified_locale.obj - 0001:00073174 _LangCountryEnumProcEx@12 10074174 f libucrt:get_qualified_locale.obj - 0001:00073455 _LanguageEnumProcEx@12 10074455 f libucrt:get_qualified_locale.obj - 0001:00073514 _ProcessCodePage 10074514 f libucrt:get_qualified_locale.obj - 0001:00073604 _TestDefaultCountry 10074604 f libucrt:get_qualified_locale.obj - 0001:00073651 _TranslateName 10074651 f libucrt:get_qualified_locale.obj - 0001:000738c3 _CountryEnumProc@4 100748c3 f libucrt:getqloc_downlevel.obj - 0001:0007396a _GetLcidFromCountry 1007496a f libucrt:getqloc_downlevel.obj - 0001:000739b5 _GetLcidFromLangCountry 100749b5 f libucrt:getqloc_downlevel.obj - 0001:00073a50 _GetLcidFromLanguage 10074a50 f libucrt:getqloc_downlevel.obj - 0001:00073aaf _GetPrimaryLen 10074aaf f libucrt:getqloc_downlevel.obj - 0001:00073adb _LangCountryEnumProc@4 10074adb f libucrt:getqloc_downlevel.obj - 0001:00073d2e _LanguageEnumProc@4 10074d2e f libucrt:getqloc_downlevel.obj - 0001:00073e03 _LcidFromHexString 10074e03 f libucrt:getqloc_downlevel.obj - 0001:00073e57 _ProcessCodePage 10074e57 f libucrt:getqloc_downlevel.obj - 0001:00073f38 _TestDefaultCountry 10074f38 f libucrt:getqloc_downlevel.obj - 0001:00073f5d _TestDefaultLanguage 10074f5d f libucrt:getqloc_downlevel.obj - 0001:00073fd2 _TranslateName 10074fd2 f libucrt:getqloc_downlevel.obj - 0001:000742d7 ?GetTableIndexFromLocaleName@@YAHPB_W@Z 100752d7 f libucrt:lcidtoname_downlevel.obj - 0001:000748a7 ??R@@QBEIPBD@Z 100758a7 f libucrt:mbrtowc.obj - 0001:00074a50 ?check_trailing@@YA_NPBDW4__acrt_has_trailing_digits@@@Z 10075a50 f libucrt:_fptostr.obj - 0001:00074a73 ?should_round_up@@YA_NQBD0HW4__acrt_has_trailing_digits@@W4__acrt_rounding_mode@@@Z 10075a73 f libucrt:_fptostr.obj - 0001:0007634e ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1007734e f libucrt:onexit.obj - 0001:000763a9 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100773a9 f libucrt:onexit.obj - 0001:00076404 ??R@@QBE@XZ 10077404 f libucrt:onexit.obj - 0001:00076506 ??R@@QBE@XZ 10077506 f libucrt:onexit.obj - 0001:000766ce ?to_abstract_control@@YA?AW4__acrt_fenv_abstract_control@@W4__acrt_fenv_machine_sse_control@@@Z 100776ce f libucrt:_fenvutils.obj - 0001:0007677e ?to_abstract_control@@YA?AW4__acrt_fenv_abstract_control@@W4__acrt_fenv_machine_x87_control@@@Z 1007777e f libucrt:_fenvutils.obj - 0001:0007682b ?to_machine_sse_control@@YA?AW4__acrt_fenv_machine_sse_control@@W4__acrt_fenv_abstract_control@@@Z 1007782b f libucrt:_fenvutils.obj - 0001:000768e1 ?to_machine_x87_control@@YA?AW4__acrt_fenv_machine_x87_control@@W4__acrt_fenv_abstract_control@@@Z 100778e1 f libucrt:_fenvutils.obj - 0001:00076c5a ??$common_getenv_nolock@_W@@YAPA_WQB_W@Z 10077c5a f libucrt:getenv.obj - 0001:00076cde ??$common_getenv_s@_W@@YAHQAIQA_WIQB_W@Z 10077cde f libucrt:getenv.obj - 0001:00076d3d ??$common_getenv_s_nolock@_W@@YAHQAIQA_WIQB_W@Z 10077d3d f libucrt:getenv.obj - 0001:00076f90 $$000000 10077f90 libucrt:common.obj - 0001:00077120 $$000000 10078120 libucrt:sqrt_impl.obj - 0001:000771e5 ?initialize_multibyte@@YAHXZ 100781e5 f libucrt:multibyte_initializer.obj - 0001:000771f4 ?InternalGetLocaleInfoA@@YAHQAU__crt_locale_pointers@@QB_WKQADH@Z 100781f4 f libucrt:getlocaleinfoa.obj - 0001:00077483 ??$common_xtox@K_W@@YAHKQA_WII_N@Z 10078483 f libucrt:xtoa.obj - 0001:0007753f ??$common_xtox_s@K_W@@YAHKQA_WII_N@Z 1007853f f libucrt:xtoa.obj - 0001:00077909 ?__dcrt_lowio_initialize_console_output@@YAXXZ 10078909 f libucrt:initcon.obj - 0001:00077ad0 $$000000 10078ad0 libucrt:log10_impl.obj - 0001:00077db0 ??$common_get_or_create_environment_nolock@_W@@YAPAPA_WXZ 10078db0 f libucrt:environment_initialization.obj - 0001:00077ddc ??$common_initialize_environment_nolock@D@@YAHXZ 10078ddc f libucrt:environment_initialization.obj - 0001:00077e36 ??$common_initialize_environment_nolock@_W@@YAHXZ 10078e36 f libucrt:environment_initialization.obj - 0001:00077e8b ??$create_environment@D@@YAQAPADQAD@Z 10078e8b f libucrt:environment_initialization.obj - 0001:00077f6d ??$create_environment@_W@@YAQAPA_WQA_W@Z 10078f6d f libucrt:environment_initialization.obj - 0001:0007808b ??$free_environment@D@@YAXQAPAD@Z 1007908b f libucrt:environment_initialization.obj - 0001:0007808b ??$free_environment@_W@@YAXQAPA_W@Z 1007908b f libucrt:environment_initialization.obj - 0001:000780ba ??$initialize_environment_by_cloning_nolock@_W@@YAHXZ 100790ba f libucrt:environment_initialization.obj - 0001:0007813b ??$uninitialize_environment_internal@D@@YAXAAPAPAD@Z 1007913b f libucrt:environment_initialization.obj - 0001:00078156 ??$uninitialize_environment_internal@_W@@YAXAAPAPA_W@Z 10079156 f libucrt:environment_initialization.obj - 0001:000782a0 $$000000 100792a0 libucrt:genexcep.obj - 0001:00078300 $$000000 10079300 libucrt:87disp.obj - 0001:00078554 ??$common_tcsncpy_s@D@@YAHQADIQBDI@Z 10079554 f libucrt:strncpy_s.obj - 0001:00078616 ___hw_cw_sse2 10079616 f libucrt:ieee87.obj - 0001:00078a9c __hw_cw 10079a9c f libucrt:ieee87.obj - 0001:00078b40 $$000000 10079b40 libucrt:log10_pentium4.obj - 0001:00078dd0 $$000000 10079dd0 libucrt:87tran.obj - 0001:000790da ?find_end_of_double_null_terminated_sequence@@YAPB_WQB_W@Z 1007a0da f libucrt:get_environment_from_os.obj - 0001:000791ff ??$common_set_variable_in_environment_nolock@_W@@YAHQA_WH@Z 1007a1ff f libucrt:setenv.obj - 0001:0007948a ??$copy_environment@_W@@YAPAPA_WQAPA_W@Z 1007a48a f libucrt:setenv.obj - 0001:00079548 ??$ensure_current_environment_is_not_initial_environment_nolock@_W@@YAXXZ 1007a548 f libucrt:setenv.obj - 0001:00079562 ??$find_in_environment_nolock@_W@@YAHQB_WI@Z 1007a562 f libucrt:setenv.obj - 0001:000798a6 ?_mbstowcs_internal@@YAHPAIPA_WIPBDIAAV__crt_cached_ptd_host@@@Z 1007a8a6 f libucrt:mbstowcs.obj - 0001:00079982 ?_mbstowcs_l_helper@@YAIPA_WPBDIAAV__crt_cached_ptd_host@@@Z 1007a982 f libucrt:mbstowcs.obj - 0001:0007a22e _tidy_global 1007b22e f libcpmt:locale0.obj - 0001:0007a70d ??$_Xfiopen@D@?A0x6dc13635@@YAPAU_iobuf@@PBDHH@Z 1007b70d f libcpmt:fiopen.obj - 0001:0007a7ad ?swfun@std@@YAXAAVios_base@1@_J@Z 1007b7ad f libcpmt:iomanip.obj - 0001:0007aa63 ?initialize_pointers@@YAHXZ 1007ba63 f libcpmt:winapisupp.obj - 0001:0007ab40 ?find_pe_section@@YAPAU_IMAGE_SECTION_HEADER@@QAEI@Z 1007bb40 f LIBCMT:utility.obj - 0001:0007aea0 $$000000 1007bea0 LIBCMT:llshl.obj - 0001:0007aeb0 MORE32 1007beb0 LIBCMT:llshl.obj - 0001:0007aeba RETZERO 1007beba LIBCMT:llshl.obj - 0001:0007aec0 $$000000 1007bec0 LIBCMT:ullshr.obj - 0001:0007aed0 MORE32 1007bed0 LIBCMT:ullshr.obj - 0001:0007aeda RETZERO 1007beda LIBCMT:ullshr.obj - 0001:0007afc0 $$000000 1007bfc0 LIBCMT:lldiv.obj - 0001:0007afe1 L1 1007bfe1 LIBCMT:lldiv.obj - 0001:0007affd L2 1007bffd LIBCMT:lldiv.obj - 0001:0007b019 L3 1007c019 LIBCMT:lldiv.obj - 0001:0007b027 L5 1007c027 LIBCMT:lldiv.obj - 0001:0007b055 L6 1007c055 LIBCMT:lldiv.obj - 0001:0007b056 L7 1007c056 LIBCMT:lldiv.obj - 0001:0007b05a L4 1007c05a LIBCMT:lldiv.obj - 0001:0007b064 L8 1007c064 LIBCMT:lldiv.obj - 0001:0007b070 $$000000 1007c070 LIBCMT:lldvrm.obj - 0001:0007b094 L1 1007c094 LIBCMT:lldvrm.obj - 0001:0007b0b0 L2 1007c0b0 LIBCMT:lldvrm.obj - 0001:0007b0dc L3 1007c0dc LIBCMT:lldvrm.obj - 0001:0007b0ea L5 1007c0ea LIBCMT:lldvrm.obj - 0001:0007b118 L6 1007c118 LIBCMT:lldvrm.obj - 0001:0007b121 L7 1007c121 LIBCMT:lldvrm.obj - 0001:0007b123 L4 1007c123 LIBCMT:lldvrm.obj - 0001:0007b135 L9 1007c135 LIBCMT:lldvrm.obj - 0001:0007b149 L8 1007c149 LIBCMT:lldvrm.obj - 0001:0007b150 $$000000 1007c150 LIBCMT:llmul.obj - 0001:0007b169 hard 1007c169 LIBCMT:llmul.obj - 0001:0007b190 $$000000 1007c190 LIBCMT:llrem.obj - 0001:0007b1b0 L1 1007c1b0 LIBCMT:llrem.obj - 0001:0007b1cb L2 1007c1cb LIBCMT:llrem.obj - 0001:0007b1ea L3 1007c1ea LIBCMT:llrem.obj - 0001:0007b1f8 L5 1007c1f8 LIBCMT:llrem.obj - 0001:0007b223 L6 1007c223 LIBCMT:llrem.obj - 0001:0007b22b L7 1007c22b LIBCMT:llrem.obj - 0001:0007b236 L4 1007c236 LIBCMT:llrem.obj - 0001:0007b23d L8 1007c23d LIBCMT:llrem.obj - 0001:0007b260 $$000000 1007c260 LIBCMT:ftol3.obj - 0001:0007b27f _ftol3_default 1007c27f LIBCMT:ftol3.obj - 0001:0007b293 _ftol3_notsafe 1007c293 LIBCMT:ftol3.obj - 0001:0007b2b3 _ftol3_mincheck 1007c2b3 LIBCMT:ftol3.obj - 0001:0007b2b9 _ftol3_NaN 1007c2b9 LIBCMT:ftol3.obj - 0001:0007b2c1 _ftol3_retmin 1007c2c1 LIBCMT:ftol3.obj - 0001:0007b2d0 $$000000 1007c2d0 LIBCMT:ftol3.obj - 0001:0007b2ee _dtoul3_default 1007c2ee LIBCMT:ftol3.obj - 0001:0007b319 _dtoul3_notsafe 1007c319 LIBCMT:ftol3.obj - 0001:0007b342 _dtoul3_exact 1007c342 LIBCMT:ftol3.obj - 0001:0007b349 _dtoul3_large 1007c349 LIBCMT:ftol3.obj - 0001:0007b354 _dtoul3_neg 1007c354 LIBCMT:ftol3.obj - 0001:0007b365 _dtoul3_NaN 1007c365 LIBCMT:ftol3.obj - 0001:0007b380 $$000000 1007c380 LIBCMT:ftol3.obj - 0001:0007b39e _dtoul3l_notsafe 1007c39e LIBCMT:ftol3.obj - 0001:0007b3b0 $$000000 1007c3b0 LIBCMT:ftol3.obj - 0001:0007b3ce _dtol3_default 1007c3ce LIBCMT:ftol3.obj - 0001:0007b3f8 _dtol3_getbits 1007c3f8 LIBCMT:ftol3.obj - 0001:0007b421 _dtol3_trunc 1007c421 LIBCMT:ftol3.obj - 0001:0007b428 _dtol3_lshift 1007c428 LIBCMT:ftol3.obj - 0001:0007b42e _dtol3_notsafe 1007c42e LIBCMT:ftol3.obj - 0001:0007b447 _dtol3_large 1007c447 LIBCMT:ftol3.obj - 0001:0007b44f _dtol3_NaN 1007c44f LIBCMT:ftol3.obj - 0001:0007b457 _dtol3_retmin 1007c457 LIBCMT:ftol3.obj - 0001:0007b460 $$000000 1007c460 LIBCMT:ftol3.obj - 0001:0007b47a _ultod3_default 1007c47a LIBCMT:ftol3.obj - 0001:0007b4a8 _ultod3_uint32 1007c4a8 LIBCMT:ftol3.obj + 0001:0005df80 __unwind_handler4 1005ef80 f libvcruntime:exsup4.obj + 0001:0005dfd0 $$000000 1005efd0 libvcruntime:exsup4.obj + 0001:0005dff0 $$000000 1005eff0 libvcruntime:exsup4.obj + 0001:0005e010 $$000000 1005f010 libvcruntime:exsup4.obj + 0001:0005e025 ReturnPoint 1005f025 libvcruntime:exsup4.obj + 0001:0005e030 $$000000 1005f030 libvcruntime:exsup4.obj + 0001:0005e090 $$000000 1005f090 libvcruntime:exsup.obj + 0001:0005e0a0 $$000000 1005f0a0 libvcruntime:exsup.obj + 0001:0005e0ab __NLG_Go 1005f0ab libvcruntime:exsup.obj + 0001:0005e0c0 $$000000 1005f0c0 libvcruntime:exsup.obj + 0001:0005e657 ?_fclose_internal@@YAHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1005f657 f libucrt:fclose.obj + 0001:0005e6ee ?_fclose_nolock_internal@@YAHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1005f6ee f libucrt:fclose.obj + 0001:0005e7ac ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1005f7ac f libucrt:fflush.obj + 0001:0005e838 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1005f838 f libucrt:fflush.obj + 0001:0005e8e4 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1005f8e4 f libucrt:fflush.obj + 0001:0005e944 ?common_flush_all@@YAH_N@Z 1005f944 f libucrt:fflush.obj + 0001:0005e991 ?common_flush_all_should_try_to_flush_stream@@YA_NV__crt_stdio_stream@@QAH@Z 1005f991 f libucrt:fflush.obj + 0001:0005e9c2 ?is_stream_flushable_or_commitable@@YA_NJ@Z 1005f9c2 f libucrt:fflush.obj + 0001:0005ecbf ?_fputc_internal@@YAHHQAU_iobuf@@AAV__crt_cached_ptd_host@@@Z 1005fcbf f libucrt:fputc.obj + 0001:0005f0e7 _memcpy_s 100600e7 f libucrt:cfout.obj + 0001:0005f0e7 _memcpy_s 100600e7 f libucrt:strtod.obj + 0001:0005f0e7 _memcpy_s 100600e7 f libucrt:mbctype.obj + 0001:0005f0e7 _memcpy_s 100600e7 f libucrt:fread.obj + 0001:0005f21d ?common_fseek@@YAHV__crt_stdio_stream@@_JHAAV__crt_cached_ptd_host@@@Z 1006021d f libucrt:fseek.obj + 0001:0005f2c7 ?common_fseek_binary_mode_read_only_fast_track_nolock@@YA_NV__crt_stdio_stream@@_JH@Z 100602c7 f libucrt:fseek.obj + 0001:0005f3a0 ?common_fseek_nolock@@YAHV__crt_stdio_stream@@_JHAAV__crt_cached_ptd_host@@@Z 100603a0 f libucrt:fseek.obj + 0001:0005f500 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@I@@QAEI$$QAV@@AAV@@$$QAV@@@Z 10060500 f libucrt:fwrite.obj + 0001:0005f55b ??R@@QBEIXZ 1006055b f libucrt:fwrite.obj + 0001:0005f7ff ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100607ff f libucrt:setvbuf.obj + 0001:0005f85a ??R@@QBE@XZ 1006085a f libucrt:setvbuf.obj + 0001:0005f8fa ?_setvbuf_internal@@YAHQAU_iobuf@@QADHIAAV__crt_cached_ptd_host@@@Z 100608fa f libucrt:setvbuf.obj + 0001:0005f990 ?set_buffer@@YAHV__crt_stdio_stream@@QADIH@Z 10060990 f libucrt:setvbuf.obj + 0001:0005fe35 ??$common_vsprintf@Vformat_validation_base@__crt_stdio_output@@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 10060e35 f libucrt:output.obj + 0001:0005ffa9 ??$common_vsprintf@Vstandard_base@__crt_stdio_output@@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 10060fa9 f libucrt:output.obj + 0001:0006011d ??$common_vsprintf_s@D@@YAH_KQADIQBDAAV__crt_cached_ptd_host@@1@Z 1006111d f libucrt:output.obj + 0001:000611ce $LN140 100621ce libucrt:output.obj + 0001:000614a2 $LN130 100624a2 libucrt:output.obj + 0001:000619ae $LN18 100629ae libucrt:output.obj + 0001:000619c2 $LN17 100629c2 libucrt:output.obj + 0001:00062e30 ??$common_strtod_l@MD@@YAMQBDQAPADQAU__crt_locale_pointers@@@Z 10063e30 f libucrt:strtod.obj + 0001:0006370c $LN32 1006470c libucrt:strtod.obj + 0001:00066050 $$000000 10067050 libucrt:strcspn.obj + 0001:000660a0 $$000000 100670a0 libucrt:strncmp.obj + 0001:00066118 ??$common_localtime_s@_J@@YAHQAUtm@@QB_J@Z 10067118 f libucrt:localtime.obj + 0001:00066940 $$000000 10067940 libucrt:sqrt_sse2_precise.obj + 0001:00066a40 $$000000 10067a40 libucrt:ceil_pentium4.obj + 0001:00066d70 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10067d70 f libucrt:per_thread_data.obj + 0001:00066dc2 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10067dc2 f libucrt:per_thread_data.obj + 0001:00066e2d ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10067e2d f libucrt:per_thread_data.obj + 0001:00066e82 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10067e82 f libucrt:per_thread_data.obj + 0001:00066edc ?construct_ptd@@YAXQAU__acrt_ptd@@QAPAU__crt_locale_data@@@Z 10067edc f libucrt:per_thread_data.obj + 0001:00066f75 ?destroy_fls@@YGXPAX@Z 10067f75 f libucrt:per_thread_data.obj + 0001:00066f96 ?destroy_ptd@@YAXQAU__acrt_ptd@@@Z 10067f96 f libucrt:per_thread_data.obj + 0001:00067063 ?replace_current_thread_locale_nolock@@YAXQAU__acrt_ptd@@QAU__crt_locale_data@@@Z 10068063 f libucrt:per_thread_data.obj + 0001:000673c5 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100683c5 f libucrt:wsetlocale.obj + 0001:00067412 ??$?RV@@AAV@@AAV@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@AAV@@@Z 10068412 f libucrt:wsetlocale.obj + 0001:00067457 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 10068457 f libucrt:wsetlocale.obj + 0001:0006753f ??R@@QBE@XZ 1006853f f libucrt:wsetlocale.obj + 0001:000675a9 ??R@@QBE@XZ 100685a9 f libucrt:wsetlocale.obj + 0001:0006795f __copytlocinfo_nolock 1006895f f libucrt:wsetlocale.obj + 0001:0006798e __expandlocale 1006898e f libucrt:wsetlocale.obj + 0001:00067e18 __wsetlocale_get_all 10068e18 f libucrt:wsetlocale.obj + 0001:00067fb3 __wsetlocale_nolock 10068fb3 f libucrt:wsetlocale.obj + 0001:000682a3 __wsetlocale_set_cat 100692a3 f libucrt:wsetlocale.obj + 0001:00068663 _get_default_code_page 10069663 f libucrt:wsetlocale.obj + 0001:00068692 _parse_bcp47 10069692 f libucrt:wsetlocale.obj + 0001:0006886c _parse_bcp47_code_page 1006986c f libucrt:wsetlocale.obj + 0001:000688ab _parse_bcp47_language 100698ab f libucrt:wsetlocale.obj + 0001:0006891d _parse_bcp47_region 1006991d f libucrt:wsetlocale.obj + 0001:000689db _parse_bcp47_script 100699db f libucrt:wsetlocale.obj + 0001:00068a4b _string_is_alpha 10069a4b f libucrt:wsetlocale.obj + 0001:00068b21 ?@@@CG@PA_W@Z 10069b21 f libucrt:winapi_thunks.obj + 0001:00068b2e ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 10069b2e f libucrt:winapi_thunks.obj + 0001:00068bc9 ??R@@QBE@PA_W@Z 10069bc9 f libucrt:winapi_thunks.obj + 0001:00068bfc ?try_get_AreFileApisANSI@@YAP6GHXZXZ 10069bfc f libucrt:winapi_thunks.obj + 0001:00068c16 ?try_get_CompareStringEx@@YAP6GHPB_WK0H0HPAU_nlsversioninfo@@PAXJ@ZXZ 10069c16 f libucrt:winapi_thunks.obj + 0001:00068c30 ?try_get_EnumSystemLocalesEx@@YAP6GHP6GHPA_WKJ@ZKJPAX@ZXZ 10069c30 f libucrt:winapi_thunks.obj + 0001:00068c4a ?try_get_GetDateFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH0@ZXZ 10069c4a f libucrt:winapi_thunks.obj + 0001:00068c64 ?try_get_GetLocaleInfoEx@@YAP6GHPB_WKPA_WH@ZXZ 10069c64 f libucrt:winapi_thunks.obj + 0001:00068c7e ?try_get_GetTimeFormatEx@@YAP6GHPB_WKPBU_SYSTEMTIME@@0PA_WH@ZXZ 10069c7e f libucrt:winapi_thunks.obj + 0001:00068c98 ?try_get_GetUserDefaultLocaleName@@YAP6GHPA_WH@ZXZ 10069c98 f libucrt:winapi_thunks.obj + 0001:00068cb2 ?try_get_IsValidLocaleName@@YAP6GHPB_W@ZXZ 10069cb2 f libucrt:winapi_thunks.obj + 0001:00068ccc ?try_get_LCIDToLocaleName@@YAP6GHKPA_WHK@ZXZ 10069ccc f libucrt:winapi_thunks.obj + 0001:00068ce6 ?try_get_LCMapStringEx@@YAP6GHPB_WK0HPA_WHPAU_nlsversioninfo@@PAXJ@ZXZ 10069ce6 f libucrt:winapi_thunks.obj + 0001:00068d00 ?try_get_LocaleNameToLCID@@YAP6GKPB_WK@ZXZ 10069d00 f libucrt:winapi_thunks.obj + 0001:00068d1a ?try_get_first_available_module@@YAPAUHINSTANCE__@@QBW4module_id@?A0x391cf84c@@0@Z 10069d1a f libucrt:winapi_thunks.obj + 0001:00068de5 ?try_get_function@@YAPAXW4function_id@?A0x391cf84c@@QBDQBW4module_id@2@2@Z 10069de5 f libucrt:winapi_thunks.obj + 0001:00069458 ?initialize_inherited_file_handles_nolock@@YAXXZ 1006a458 f libucrt:ioinit.obj + 0001:0006950e ?initialize_stdio_handles_nolock@@YAXXZ 1006a50e f libucrt:ioinit.obj + 0001:00069671 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1006a671 f libucrt:close.obj + 0001:00069919 ?find_or_allocate_unused_stream_nolock@@YA?AV__crt_stdio_stream@@XZ 1006a919 f libucrt:stream.obj + 0001:00069a92 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1006aa92 f libucrt:commit.obj + 0001:00069bb1 ?write_double_translated_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDIAAV__crt_cached_ptd_host@@@Z 1006abb1 f libucrt:write.obj + 0001:00069f78 ?write_double_translated_unicode_nolock@@YA?AUwrite_result@?A0x17268360@@QBDI@Z 1006af78 f libucrt:write.obj + 0001:00069fe0 ?write_requires_double_translation_nolock@@YA_NHAAV__crt_cached_ptd_host@@@Z 1006afe0 f libucrt:write.obj + 0001:0006a05d ?write_text_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 1006b05d f libucrt:write.obj + 0001:0006a138 ?write_text_utf16le_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 1006b138 f libucrt:write.obj + 0001:0006a221 ?write_text_utf8_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDI@Z 1006b221 f libucrt:write.obj + 0001:0006a6b7 ??$common_refill_and_read_nolock@D@@YAHV__crt_stdio_stream@@@Z 1006b6b7 f libucrt:_filbuf.obj + 0001:0006a851 ??$common_ftell@_J@@YA_JV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1006b851 f libucrt:ftell.obj + 0001:0006a8e0 ??$common_ftell_nolock@_J@@YA_JV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1006b8e0 f libucrt:ftell.obj + 0001:0006aa81 ?common_ftell_read_mode_nolock@@YA_JV__crt_stdio_stream@@_J1AAV__crt_cached_ptd_host@@@Z 1006ba81 f libucrt:ftell.obj + 0001:0006ac4c ?common_ftell_translated_utf8_nolock@@YA_JV__crt_stdio_stream@@_JAAV__crt_cached_ptd_host@@@Z 1006bc4c f libucrt:ftell.obj + 0001:0006adf7 ?count_newline_bytes@@YA_JQBD0W4__crt_lowio_text_mode@@@Z 1006bdf7 f libucrt:ftell.obj + 0001:0006ae89 ??$common_flush_and_write_nolock@D@@YAHHV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1006be89 f libucrt:_flsbuf.obj + 0001:0006af80 ??$write_buffer_nolock@D@@YA_NDV__crt_stdio_stream@@AAV__crt_cached_ptd_host@@@Z 1006bf80 f libucrt:_flsbuf.obj + 0001:0006b052 ?stream_is_at_end_of_file_nolock@@YA_NV__crt_stdio_stream@@@Z 1006c052 f libucrt:_flsbuf.obj + 0001:0006b0e2 ??$translate_text_mode_nolock@D@@YAHHQADI@Z 1006c0e2 f libucrt:read.obj + 0001:0006b22f ??$translate_text_mode_nolock@_W@@YAHHQA_WI@Z 1006c22f f libucrt:read.obj + 0001:0006b3e9 ?translate_ansi_or_utf8_nolock@@YAHHQADIQA_WI@Z 1006c3e9 f libucrt:read.obj + 0001:0006b540 ?translate_utf16_from_console_nolock@@YAHHQA_WI@Z 1006c540 f libucrt:read.obj + 0001:0006ba62 ??$common_lseek@_J@@YA_JH_JHAAV__crt_cached_ptd_host@@@Z 1006ca62 f libucrt:lseek.obj + 0001:0006bb87 ??$common_lseek_nolock@_J@@YA_JH_JHAAV__crt_cached_ptd_host@@@Z 1006cb87 f libucrt:lseek.obj + 0001:0006be97 ?filter_mbtowcs_flags@@YAKIK@Z 1006ce97 f libucrt:multibytetowidechar.obj + 0001:0006c377 ?fe_to_nearest@@YA_NQBN_KF@Z 1006d377 f libucrt:cvt.obj + 0001:0006c41a ?fp_format_a@@YAHQBNPADIQADIH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1006d41a f libucrt:cvt.obj + 0001:0006c747 ?fp_format_e@@YAHQBNQADI1IH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1006d747 f libucrt:cvt.obj + 0001:0006c7eb ?fp_format_e_internal@@YAHQADIH_NIQAU_strflt@@1AAV__crt_cached_ptd_host@@@Z 1006d7eb f libucrt:cvt.obj + 0001:0006c93e ?fp_format_f@@YAHQBNQADI1IHW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1006d93e f libucrt:cvt.obj + 0001:0006c9d4 ?fp_format_f_internal@@YAHQADIHQAU_strflt@@_NAAV__crt_cached_ptd_host@@@Z 1006d9d4 f libucrt:cvt.obj + 0001:0006cac2 ?fp_format_g@@YAHQBNQADI1IH_NIW4__acrt_rounding_mode@@AAV__crt_cached_ptd_host@@@Z 1006dac2 f libucrt:cvt.obj + 0001:0006cb91 ?fp_format_nan_or_infinity@@YAHW4__acrt_fp_class@@_NPADI1@Z 1006db91 f libucrt:cvt.obj + 0001:0006cc26 ?shift_bytes@@YAXQADI0H@Z 1006dc26 f libucrt:cvt.obj + 0001:0006cc5a ?should_round_up@@YA_NQBN_KFW4__acrt_rounding_mode@@@Z 1006dc5a f libucrt:cvt.obj + 0001:0006db0d ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 1006eb0d f libucrt:exit.obj + 0001:0006db75 ??R@@QBE@XZ 1006eb75 f libucrt:exit.obj + 0001:0006dc5d ?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 1006ec5d f libucrt:exit.obj + 0001:0006dcf4 ?exit_or_terminate_process@@YAXI@Z 1006ecf4 f libucrt:exit.obj + 0001:0006dd25 ?is_managed_app@@YA_NXZ 1006ed25 f libucrt:exit.obj + 0001:0006dd67 ?should_call_terminate_process@@YA_NXZ 1006ed67 f libucrt:exit.obj + 0001:0006dd80 ?try_cor_exit_process@@YAXI@Z 1006ed80 f libucrt:exit.obj + 0001:0006de3d ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@P6AXH@Z@@QAEP6AXH@Z$$QAV@@AAV@@$$QAV@@@Z 1006ee3d f libucrt:signal.obj + 0001:0006dea5 ?get_global_action_nolock@@YAPAP6AXH@ZH@Z 1006eea5 f libucrt:signal.obj + 0001:0006dee7 ?siglookup@@YAPAU__crt_signal_action_t@@HQAU1@@Z 1006eee7 f libucrt:signal.obj + 0001:0006e3ff ??$common_gmtime_s@_J@@YAHQAUtm@@QB_J@Z 1006f3ff f libucrt:gmtime.obj + 0001:0006e549 ?compute_year@@YAHAA_JAA_N@Z 1006f549 f libucrt:gmtime.obj + 0001:0006e60d ?_isindst_nolock@@YAHQAUtm@@@Z 1006f60d f libucrt:tzset.obj + 0001:0006e827 ?cvtdate@@YAXW4transition_type@?A0x7639d0b4@@W4date_type@2@HHHHHHHHH@Z 1006f827 f libucrt:tzset.obj + 0001:0006e96a ?get_tz_environment_variable@@YAPA_WAAY0BAA@_W@Z 1006f96a f libucrt:tzset.obj + 0001:0006e9e1 ?tzset_env_copy_to_tzname@@YAXQB_WQA_WQADI@Z 1006f9e1 f libucrt:tzset.obj + 0001:0006ea28 ?tzset_from_environment_nolock@@YAXPA_W@Z 1006fa28 f libucrt:tzset.obj + 0001:0006ecba ?tzset_from_system_nolock@@YAXXZ 1006fcba f libucrt:tzset.obj + 0001:0006ee14 ?tzset_nolock@@YAXXZ 1006fe14 f libucrt:tzset.obj + 0001:0006ee8a ?tzset_os_copy_to_tzname@@YAXQB_WQA_WQADI@Z 1006fe8a f libucrt:tzset.obj + 0001:0006ef7d ?filter_wcstomb_flags@@YAKIK@Z 1006ff7d f libucrt:widechartomultibyte.obj + 0001:0006f082 ?compute_iso_week@@YAHHHH@Z 10070082 f libucrt:wcsftime.obj + 0001:0006f0cb ?compute_iso_week_internal@@YAHHHH@Z 100700cb f libucrt:wcsftime.obj + 0001:0006f160 ?compute_iso_year@@YAHHHH@Z 10070160 f libucrt:wcsftime.obj + 0001:0006f18b ?expand_time@@YA_NPAU__crt_locale_pointers@@_WPBUtm@@PAPA_WPAIPBU__crt_lc_time_data@@_N@Z 1007018b f libucrt:wcsftime.obj + 0001:0006fb3f $LN191 10070b3f libucrt:wcsftime.obj + 0001:0006fb5f ?store_number@@YAXHHQAPA_WQAI_W@Z 10070b5f f libucrt:wcsftime.obj + 0001:0006fbf3 ?store_number_without_lead_zeroes@@YAXHQAPA_WQAI@Z 10070bf3 f libucrt:wcsftime.obj + 0001:0006fc6d ?store_string@@YAXPB_WQAPA_WQAI@Z 10070c6d f libucrt:wcsftime.obj + 0001:0006fca0 ?store_winword@@YA_NQAU__crt_locale_pointers@@HQBUtm@@QAPA_WQAIQBU__crt_lc_time_data@@@Z 10070ca0 f libucrt:wcsftime.obj + 0001:000709c8 ?__acrt_LCMapStringA_stat@@YAHPAU__crt_locale_pointers@@PB_WKPBDHPADHHH@Z 100719c8 f libucrt:lcmapstringa.obj + 0001:00070e00 $$000000 10071e00 libucrt:sqrt.obj + 0001:00070ee0 $$000000 10071ee0 libucrt:_strnicm.obj + 0001:000712db ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@X@@QAEX$$QAV@@AAV@@$$QAV@@@Z 100722db f libucrt:mbctype.obj + 0001:00071328 ??R@@QBE@XZ 10072328 f libucrt:mbctype.obj + 0001:000713ab ?CPtoLocaleName@@YAPB_WH@Z 100723ab f libucrt:mbctype.obj + 0001:000713e9 ?getSystemCP@@YAHH@Z 100723e9 f libucrt:mbctype.obj + 0001:0007145a ?setSBCS@@YAXPAU__crt_multibyte_data@@@Z 1007245a f libucrt:mbctype.obj + 0001:000714bd ?setSBUpLow@@YAXPAU__crt_multibyte_data@@@Z 100724bd f libucrt:mbctype.obj + 0001:00071662 ?setmbcp_internal@@YAHH_NQAU__acrt_ptd@@QAPAU__crt_multibyte_data@@@Z 10072662 f libucrt:mbctype.obj + 0001:000717b7 ?update_thread_multibyte_data_internal@@YAPAU__crt_multibyte_data@@QAU__acrt_ptd@@QAPAU1@@Z 100727b7 f libucrt:mbctype.obj + 0001:000727d0 ?free_crt_array_internal@@YAXQAPBXI@Z 100737d0 f libucrt:inittime.obj + 0001:000727f5 ?initialize_lc_time@@YA_NQAU__crt_lc_time_data@@QAU__crt_locale_data@@@Z 100737f5 f libucrt:inittime.obj + 0001:00072ca3 ??$common_tcsncat_s@_W@@YAHQA_WIQB_WI@Z 10073ca3 f libucrt:wcsncat_s.obj + 0001:00072d96 ??$common_tcsncpy_s@_W@@YAHQA_WIQB_WI@Z 10073d96 f libucrt:wcsncpy_s.obj + 0001:00073017 _GetLocaleNameFromDefault 10074017 f libucrt:get_qualified_locale.obj + 0001:0007309e _GetLocaleNameFromLangCountry 1007409e f libucrt:get_qualified_locale.obj + 0001:00073137 _GetLocaleNameFromLanguage 10074137 f libucrt:get_qualified_locale.obj + 0001:00073190 _GetPrimaryLen 10074190 f libucrt:get_qualified_locale.obj + 0001:000731c4 _LangCountryEnumProcEx@12 100741c4 f libucrt:get_qualified_locale.obj + 0001:000734a5 _LanguageEnumProcEx@12 100744a5 f libucrt:get_qualified_locale.obj + 0001:00073564 _ProcessCodePage 10074564 f libucrt:get_qualified_locale.obj + 0001:00073654 _TestDefaultCountry 10074654 f libucrt:get_qualified_locale.obj + 0001:000736a1 _TranslateName 100746a1 f libucrt:get_qualified_locale.obj + 0001:00073913 _CountryEnumProc@4 10074913 f libucrt:getqloc_downlevel.obj + 0001:000739ba _GetLcidFromCountry 100749ba f libucrt:getqloc_downlevel.obj + 0001:00073a05 _GetLcidFromLangCountry 10074a05 f libucrt:getqloc_downlevel.obj + 0001:00073aa0 _GetLcidFromLanguage 10074aa0 f libucrt:getqloc_downlevel.obj + 0001:00073aff _GetPrimaryLen 10074aff f libucrt:getqloc_downlevel.obj + 0001:00073b2b _LangCountryEnumProc@4 10074b2b f libucrt:getqloc_downlevel.obj + 0001:00073d7e _LanguageEnumProc@4 10074d7e f libucrt:getqloc_downlevel.obj + 0001:00073e53 _LcidFromHexString 10074e53 f libucrt:getqloc_downlevel.obj + 0001:00073ea7 _ProcessCodePage 10074ea7 f libucrt:getqloc_downlevel.obj + 0001:00073f88 _TestDefaultCountry 10074f88 f libucrt:getqloc_downlevel.obj + 0001:00073fad _TestDefaultLanguage 10074fad f libucrt:getqloc_downlevel.obj + 0001:00074022 _TranslateName 10075022 f libucrt:getqloc_downlevel.obj + 0001:00074327 ?GetTableIndexFromLocaleName@@YAHPB_W@Z 10075327 f libucrt:lcidtoname_downlevel.obj + 0001:000748f7 ??R@@QBEIPBD@Z 100758f7 f libucrt:mbrtowc.obj + 0001:00074aa0 ?check_trailing@@YA_NPBDW4__acrt_has_trailing_digits@@@Z 10075aa0 f libucrt:_fptostr.obj + 0001:00074ac3 ?should_round_up@@YA_NQBD0HW4__acrt_has_trailing_digits@@W4__acrt_rounding_mode@@@Z 10075ac3 f libucrt:_fptostr.obj + 0001:0007639e ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 1007739e f libucrt:onexit.obj + 0001:000763f9 ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@H@@QAEH$$QAV@@AAV@@$$QAV@@@Z 100773f9 f libucrt:onexit.obj + 0001:00076454 ??R@@QBE@XZ 10077454 f libucrt:onexit.obj + 0001:00076556 ??R@@QBE@XZ 10077556 f libucrt:onexit.obj + 0001:0007671e ?to_abstract_control@@YA?AW4__acrt_fenv_abstract_control@@W4__acrt_fenv_machine_sse_control@@@Z 1007771e f libucrt:_fenvutils.obj + 0001:000767ce ?to_abstract_control@@YA?AW4__acrt_fenv_abstract_control@@W4__acrt_fenv_machine_x87_control@@@Z 100777ce f libucrt:_fenvutils.obj + 0001:0007687b ?to_machine_sse_control@@YA?AW4__acrt_fenv_machine_sse_control@@W4__acrt_fenv_abstract_control@@@Z 1007787b f libucrt:_fenvutils.obj + 0001:00076931 ?to_machine_x87_control@@YA?AW4__acrt_fenv_machine_x87_control@@W4__acrt_fenv_abstract_control@@@Z 10077931 f libucrt:_fenvutils.obj + 0001:00076caa ??$common_getenv_nolock@_W@@YAPA_WQB_W@Z 10077caa f libucrt:getenv.obj + 0001:00076d2e ??$common_getenv_s@_W@@YAHQAIQA_WIQB_W@Z 10077d2e f libucrt:getenv.obj + 0001:00076d8d ??$common_getenv_s_nolock@_W@@YAHQAIQA_WIQB_W@Z 10077d8d f libucrt:getenv.obj + 0001:00076fe0 $$000000 10077fe0 libucrt:common.obj + 0001:00077170 $$000000 10078170 libucrt:sqrt_impl.obj + 0001:00077235 ?initialize_multibyte@@YAHXZ 10078235 f libucrt:multibyte_initializer.obj + 0001:00077244 ?InternalGetLocaleInfoA@@YAHQAU__crt_locale_pointers@@QB_WKQADH@Z 10078244 f libucrt:getlocaleinfoa.obj + 0001:000774d3 ??$common_xtox@K_W@@YAHKQA_WII_N@Z 100784d3 f libucrt:xtoa.obj + 0001:0007758f ??$common_xtox_s@K_W@@YAHKQA_WII_N@Z 1007858f f libucrt:xtoa.obj + 0001:00077959 ?__dcrt_lowio_initialize_console_output@@YAXXZ 10078959 f libucrt:initcon.obj + 0001:00077b20 $$000000 10078b20 libucrt:log10_impl.obj + 0001:00077e00 ??$common_get_or_create_environment_nolock@_W@@YAPAPA_WXZ 10078e00 f libucrt:environment_initialization.obj + 0001:00077e2c ??$common_initialize_environment_nolock@D@@YAHXZ 10078e2c f libucrt:environment_initialization.obj + 0001:00077e86 ??$common_initialize_environment_nolock@_W@@YAHXZ 10078e86 f libucrt:environment_initialization.obj + 0001:00077edb ??$create_environment@D@@YAQAPADQAD@Z 10078edb f libucrt:environment_initialization.obj + 0001:00077fbd ??$create_environment@_W@@YAQAPA_WQA_W@Z 10078fbd f libucrt:environment_initialization.obj + 0001:000780db ??$free_environment@D@@YAXQAPAD@Z 100790db f libucrt:environment_initialization.obj + 0001:000780db ??$free_environment@_W@@YAXQAPA_W@Z 100790db f libucrt:environment_initialization.obj + 0001:0007810a ??$initialize_environment_by_cloning_nolock@_W@@YAHXZ 1007910a f libucrt:environment_initialization.obj + 0001:0007818b ??$uninitialize_environment_internal@D@@YAXAAPAPAD@Z 1007918b f libucrt:environment_initialization.obj + 0001:000781a6 ??$uninitialize_environment_internal@_W@@YAXAAPAPA_W@Z 100791a6 f libucrt:environment_initialization.obj + 0001:000782f0 $$000000 100792f0 libucrt:genexcep.obj + 0001:00078350 $$000000 10079350 libucrt:87disp.obj + 0001:000785a4 ??$common_tcsncpy_s@D@@YAHQADIQBDI@Z 100795a4 f libucrt:strncpy_s.obj + 0001:00078666 ___hw_cw_sse2 10079666 f libucrt:ieee87.obj + 0001:00078aec __hw_cw 10079aec f libucrt:ieee87.obj + 0001:00078b90 $$000000 10079b90 libucrt:log10_pentium4.obj + 0001:00078e20 $$000000 10079e20 libucrt:87tran.obj + 0001:00079127 ?find_end_of_double_null_terminated_sequence@@YAPB_WQB_W@Z 1007a127 f libucrt:get_environment_from_os.obj + 0001:0007924c ??$common_set_variable_in_environment_nolock@_W@@YAHQA_WH@Z 1007a24c f libucrt:setenv.obj + 0001:000794d7 ??$copy_environment@_W@@YAPAPA_WQAPA_W@Z 1007a4d7 f libucrt:setenv.obj + 0001:00079595 ??$ensure_current_environment_is_not_initial_environment_nolock@_W@@YAXXZ 1007a595 f libucrt:setenv.obj + 0001:000795af ??$find_in_environment_nolock@_W@@YAHQB_WI@Z 1007a5af f libucrt:setenv.obj + 0001:000798f3 ?_mbstowcs_internal@@YAHPAIPA_WIPBDIAAV__crt_cached_ptd_host@@@Z 1007a8f3 f libucrt:mbstowcs.obj + 0001:000799cf ?_mbstowcs_l_helper@@YAIPA_WPBDIAAV__crt_cached_ptd_host@@@Z 1007a9cf f libucrt:mbstowcs.obj + 0001:0007a27b _tidy_global 1007b27b f libcpmt:locale0.obj + 0001:0007a75a ??$_Xfiopen@D@?A0x6dc13635@@YAPAU_iobuf@@PBDHH@Z 1007b75a f libcpmt:fiopen.obj + 0001:0007a7fa ?swfun@std@@YAXAAVios_base@1@_J@Z 1007b7fa f libcpmt:iomanip.obj + 0001:0007aab0 ?initialize_pointers@@YAHXZ 1007bab0 f libcpmt:winapisupp.obj + 0001:0007ab8d ?find_pe_section@@YAPAU_IMAGE_SECTION_HEADER@@QAEI@Z 1007bb8d f LIBCMT:utility.obj + 0001:0007aef0 $$000000 1007bef0 LIBCMT:llshl.obj + 0001:0007af00 MORE32 1007bf00 LIBCMT:llshl.obj + 0001:0007af0a RETZERO 1007bf0a LIBCMT:llshl.obj + 0001:0007af10 $$000000 1007bf10 LIBCMT:ullshr.obj + 0001:0007af20 MORE32 1007bf20 LIBCMT:ullshr.obj + 0001:0007af2a RETZERO 1007bf2a LIBCMT:ullshr.obj + 0001:0007b010 $$000000 1007c010 LIBCMT:lldiv.obj + 0001:0007b031 L1 1007c031 LIBCMT:lldiv.obj + 0001:0007b04d L2 1007c04d LIBCMT:lldiv.obj + 0001:0007b069 L3 1007c069 LIBCMT:lldiv.obj + 0001:0007b077 L5 1007c077 LIBCMT:lldiv.obj + 0001:0007b0a5 L6 1007c0a5 LIBCMT:lldiv.obj + 0001:0007b0a6 L7 1007c0a6 LIBCMT:lldiv.obj + 0001:0007b0aa L4 1007c0aa LIBCMT:lldiv.obj + 0001:0007b0b4 L8 1007c0b4 LIBCMT:lldiv.obj + 0001:0007b0c0 $$000000 1007c0c0 LIBCMT:lldvrm.obj + 0001:0007b0e4 L1 1007c0e4 LIBCMT:lldvrm.obj + 0001:0007b100 L2 1007c100 LIBCMT:lldvrm.obj + 0001:0007b12c L3 1007c12c LIBCMT:lldvrm.obj + 0001:0007b13a L5 1007c13a LIBCMT:lldvrm.obj + 0001:0007b168 L6 1007c168 LIBCMT:lldvrm.obj + 0001:0007b171 L7 1007c171 LIBCMT:lldvrm.obj + 0001:0007b173 L4 1007c173 LIBCMT:lldvrm.obj + 0001:0007b185 L9 1007c185 LIBCMT:lldvrm.obj + 0001:0007b199 L8 1007c199 LIBCMT:lldvrm.obj + 0001:0007b1a0 $$000000 1007c1a0 LIBCMT:llmul.obj + 0001:0007b1b9 hard 1007c1b9 LIBCMT:llmul.obj + 0001:0007b1e0 $$000000 1007c1e0 LIBCMT:llrem.obj + 0001:0007b200 L1 1007c200 LIBCMT:llrem.obj + 0001:0007b21b L2 1007c21b LIBCMT:llrem.obj + 0001:0007b23a L3 1007c23a LIBCMT:llrem.obj + 0001:0007b248 L5 1007c248 LIBCMT:llrem.obj + 0001:0007b273 L6 1007c273 LIBCMT:llrem.obj + 0001:0007b27b L7 1007c27b LIBCMT:llrem.obj + 0001:0007b286 L4 1007c286 LIBCMT:llrem.obj + 0001:0007b28d L8 1007c28d LIBCMT:llrem.obj + 0001:0007b2b0 $$000000 1007c2b0 LIBCMT:ftol3.obj + 0001:0007b2cf _ftol3_default 1007c2cf LIBCMT:ftol3.obj + 0001:0007b2e3 _ftol3_notsafe 1007c2e3 LIBCMT:ftol3.obj + 0001:0007b303 _ftol3_mincheck 1007c303 LIBCMT:ftol3.obj + 0001:0007b309 _ftol3_NaN 1007c309 LIBCMT:ftol3.obj + 0001:0007b311 _ftol3_retmin 1007c311 LIBCMT:ftol3.obj + 0001:0007b320 $$000000 1007c320 LIBCMT:ftol3.obj + 0001:0007b33e _dtoul3_default 1007c33e LIBCMT:ftol3.obj + 0001:0007b369 _dtoul3_notsafe 1007c369 LIBCMT:ftol3.obj + 0001:0007b392 _dtoul3_exact 1007c392 LIBCMT:ftol3.obj + 0001:0007b399 _dtoul3_large 1007c399 LIBCMT:ftol3.obj + 0001:0007b3a4 _dtoul3_neg 1007c3a4 LIBCMT:ftol3.obj + 0001:0007b3b5 _dtoul3_NaN 1007c3b5 LIBCMT:ftol3.obj + 0001:0007b3d0 $$000000 1007c3d0 LIBCMT:ftol3.obj + 0001:0007b3ee _dtoul3l_notsafe 1007c3ee LIBCMT:ftol3.obj + 0001:0007b400 $$000000 1007c400 LIBCMT:ftol3.obj + 0001:0007b41e _dtol3_default 1007c41e LIBCMT:ftol3.obj + 0001:0007b448 _dtol3_getbits 1007c448 LIBCMT:ftol3.obj + 0001:0007b471 _dtol3_trunc 1007c471 LIBCMT:ftol3.obj + 0001:0007b478 _dtol3_lshift 1007c478 LIBCMT:ftol3.obj + 0001:0007b47e _dtol3_notsafe 1007c47e LIBCMT:ftol3.obj + 0001:0007b497 _dtol3_large 1007c497 LIBCMT:ftol3.obj + 0001:0007b49f _dtol3_NaN 1007c49f LIBCMT:ftol3.obj + 0001:0007b4a7 _dtol3_retmin 1007c4a7 LIBCMT:ftol3.obj 0001:0007b4b0 $$000000 1007c4b0 LIBCMT:ftol3.obj - 0001:0007b4ca _ltod3_default 1007c4ca LIBCMT:ftol3.obj - 0001:0007b4f1 _ltod3_lt33 1007c4f1 LIBCMT:ftol3.obj - 0001:0007b4f2 ?dllmain_crt_dispatch@@YGHQAUHINSTANCE__@@KQAX@Z 1007c4f2 f LIBCMT:dll_dllmain.obj - 0001:0007b545 ?dllmain_crt_process_attach@@YAHQAUHINSTANCE__@@QAX@Z 1007c545 f LIBCMT:dll_dllmain.obj - 0001:0007b64c ?dllmain_crt_process_detach@@YAH_N@Z 1007c64c f LIBCMT:dll_dllmain.obj - 0001:0007b6fc ?dllmain_dispatch@@YAHQAUHINSTANCE__@@KQAX@Z 1007c6fc f LIBCMT:dll_dllmain.obj - 0001:0007b807 ?dllmain_raw@@YGHQAUHINSTANCE__@@KQAX@Z 1007c807 f LIBCMT:dll_dllmain.obj - 0001:0007b860 $$000000 1007c860 LIBCMT:sehprolg4.obj - 0001:0007bda0 $$000000 1007cda0 LIBCMT:ulldvrm.obj - 0001:0007bdd1 L1 1007cdd1 LIBCMT:ulldvrm.obj - 0001:0007bddf L3 1007cddf LIBCMT:ulldvrm.obj - 0001:0007be0d L4 1007ce0d LIBCMT:ulldvrm.obj - 0001:0007be16 L5 1007ce16 LIBCMT:ulldvrm.obj - 0001:0007be18 L2 1007ce18 LIBCMT:ulldvrm.obj - 0001:0007bf60 $$000000 1007cf60 LIBCMT:ulldiv.obj - 0001:0007bf82 L1 1007cf82 LIBCMT:ulldiv.obj - 0001:0007bf90 L3 1007cf90 LIBCMT:ulldiv.obj - 0001:0007bfbe L4 1007cfbe LIBCMT:ulldiv.obj - 0001:0007bfbf L5 1007cfbf LIBCMT:ulldiv.obj - 0001:0007bfc3 L2 1007cfc3 LIBCMT:ulldiv.obj - 0001:0007bfd0 $$000000 1007cfd0 LIBCMT:ullrem.obj - 0001:0007bff1 L1 1007cff1 LIBCMT:ullrem.obj - 0001:0007bfff L3 1007cfff LIBCMT:ullrem.obj - 0001:0007c02a L4 1007d02a LIBCMT:ullrem.obj - 0001:0007c032 L5 1007d032 LIBCMT:ullrem.obj - 0001:0007c041 L2 1007d041 LIBCMT:ullrem.obj - 0001:0007c250 $$000000 1007d250 LIBCMT:chkstk.obj - 0001:0007c264 cs10 1007d264 LIBCMT:chkstk.obj - 0001:0007c272 cs20 1007d272 LIBCMT:chkstk.obj - 0001:0007c280 $$000000 1007d280 LIBCMT:alloca16.obj - 0001:0007c296 alloca_8 1007d296 LIBCMT:alloca16.obj - 0001:0007c2b0 $$000000 1007d2b0 LIBCMT:ftol2.obj - 0001:0007c2c0 $$000000 1007d2c0 LIBCMT:ftol2.obj - 0001:0007c2d1 L3B 1007d2d1 LIBCMT:ftol2.obj - 0001:0007c314 L3F 1007d314 LIBCMT:ftol2.obj - 0001:0007c31c L40 1007d31c LIBCMT:ftol2.obj - 0001:0007c32f L41 1007d32f LIBCMT:ftol2.obj - 0001:0007c365 ___get_entropy 1007d365 f LIBCMT:gs_support.obj - 0001:0007da8c $LN1250 1007ea8c libvcruntime:memcmp.obj - 0001:0007db10 $$000000 1007eb10 libvcruntime:strrchr.obj - 0001:0007db4d strrchr_sse_loop 1007eb4d libvcruntime:strrchr.obj - 0001:0007db7d strrchr_sse_break 1007eb7d libvcruntime:strrchr.obj - 0001:0007db9d strrchr_sttni 1007eb9d libvcruntime:strrchr.obj - 0001:0007dbaf strrchr_sttni_chars 1007ebaf libvcruntime:strrchr.obj - 0001:0007dbc4 strrchr_sttni_aligned 1007ebc4 libvcruntime:strrchr.obj - 0001:0007dbc8 strrchr_sttni_xmm 1007ebc8 libvcruntime:strrchr.obj - 0001:0007dbdb exit 1007ebdb libvcruntime:strrchr.obj - 0001:0007dbde strrchr_zero 1007ebde libvcruntime:strrchr.obj - 0001:0007dc03 strchr_zero_loop 1007ec03 libvcruntime:strrchr.obj - 0001:0007dc17 strchr_zero_result 1007ec17 libvcruntime:strrchr.obj - 0001:0007dc1e strrchr_no_sse 1007ec1e libvcruntime:strrchr.obj - 0001:0007dc41 returndi 1007ec41 libvcruntime:strrchr.obj - 0001:0007dc43 toend 1007ec43 libvcruntime:strrchr.obj - 0001:0007dd4d ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@PAD@@QAEPAD$$QAV@@AAV@@$$QAV@@@Z 1007ed4d f libucrt:setlocale.obj - 0001:0007dda8 ??R@@QBEPADXZ 1007eda8 f libucrt:setlocale.obj - 0001:0007df07 _call_wsetlocale 1007ef07 f libucrt:setlocale.obj - 0001:0007e153 ??$common_fsopen@D@@YAPAU_iobuf@@QBD0H@Z 1007f153 f libucrt:fopen.obj - 0001:0007e215 ??$common_configure_argv@D@@YAHW4_crt_argv_mode@@@Z 1007f215 f libucrt:argv_parsing.obj - 0001:0007e352 ??$parse_command_line@D@@YAXPADPAPAD0PAI2@Z 1007f352 f libucrt:argv_parsing.obj - 0001:0007e520 _initialize_global_variables 1007f520 f libucrt:initialization.obj - 0001:0007e52d _initialize_c 1007f52d f libucrt:initialization.obj - 0001:0007e547 _uninitialize_environment 1007f547 f libucrt:initialization.obj - 0001:0007e54f _initialize_pointers 1007f54f f libucrt:initialization.obj - 0001:0007e57d _uninitialize_vcruntime 1007f57d f libucrt:initialization.obj - 0001:0007e586 _uninitialize_allocated_memory 1007f586 f libucrt:initialization.obj - 0001:0007e59d _uninitialize_allocated_io_buffers 1007f59d f libucrt:initialization.obj - 0001:0007e5ed ??R@@QBE@AAPAU__crt_multibyte_data@@@Z 1007f5ed f libucrt:initialization.obj - 0001:0007e682 ?_wcstombs_internal@@YAHPAIPADIPB_WIAAV__crt_cached_ptd_host@@@Z 1007f682 f libucrt:wcstombs.obj - 0001:0007e757 ?_wcstombs_l_helper@@YAIPADPB_WIAAV__crt_cached_ptd_host@@@Z 1007f757 f libucrt:wcstombs.obj - 0001:0007ec66 ??$common_openfile@D@@YAPAU_iobuf@@QBD0HV__crt_stdio_stream@@@Z 1007fc66 f libucrt:openfile.obj - 0001:0007ee08 ?@@@CAHPBX0@Z 1007fe08 f libucrt:argv_wildcards.obj - 0001:0007eee6 ??$common_expand_argv_wildcards@D@@YAHQAPADQAPAPAD@Z 1007fee6 f libucrt:argv_wildcards.obj - 0001:0007f063 ??$copy_and_add_argument_to_buffer@D@@YAHQBD0IAAV?$argument_list@D@?A0x5f5c8891@@@Z 10080063 f libucrt:argv_wildcards.obj - 0001:0007f114 ??$expand_argument_wildcards@D@@YAHQAD0AAV?$argument_list@D@?A0x5f5c8891@@@Z 10080114 f libucrt:argv_wildcards.obj - 0001:0007f399 ??1?$argument_list@D@?A0x5f5c8891@@QAE@XZ 10080399 f libucrt:argv_wildcards.obj - 0001:0007f3fa ?expand_if_necessary@?$argument_list@D@?A0x5f5c8891@@AAEHXZ 100803fa f libucrt:argv_wildcards.obj - 0001:0007f52d ?x_ismbbtype_l@@YAHPAU__crt_locale_pointers@@IHH@Z 1008052d f libucrt:ismbbyte.obj - 0001:0007f756 ??$common_sopen_dispatch@D@@YAHQBDHHHQAHH@Z 10080756 f libucrt:open.obj - 0001:0007f831 ?configure_text_mode@@YAHHUfile_options@?A0xa9d50aae@@HAAW4__crt_lowio_text_mode@@@Z 10080831 f libucrt:open.obj - 0001:0007fa87 ?create_file@@YAPAXQB_WQAU_SECURITY_ATTRIBUTES@@Ufile_options@?A0xa9d50aae@@@Z 10080a87 f libucrt:open.obj - 0001:0007faac ?decode_open_create_flags@@YAKH@Z 10080aac f libucrt:open.obj - 0001:0007fb1c ?decode_options@@YA?AUfile_options@?A0xa9d50aae@@HHH@Z 10080b1c f libucrt:open.obj - 0001:0007fc96 ?truncate_ctrl_z_if_present@@YAHH@Z 10080c96 f libucrt:open.obj - 0001:000805f0 $$000000 100815f0 libucrt:strpbrk.obj - 0001:00080b30 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$0 10081b30 f logging.cpp.obj - 0001:00080b30 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$0 10081b30 f main.cpp.obj - 0001:00080b38 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$2 10081b38 f logging.cpp.obj - 0001:00080b38 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$2 10081b38 f main.cpp.obj - 0001:00080b47 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$1 10081b47 f logging.cpp.obj - 0001:00080b47 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$1 10081b47 f main.cpp.obj - 0001:00080b54 __ehhandler$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z 10081b54 f logging.cpp.obj - 0001:00080b54 __ehhandler$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 10081b54 f main.cpp.obj - 0001:00080b80 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$0 10081b80 f logging.cpp.obj - 0001:00080b88 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$2 10081b88 f logging.cpp.obj - 0001:00080b97 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$1 10081b97 f logging.cpp.obj - 0001:00080ba4 __ehhandler$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z 10081ba4 f logging.cpp.obj - 0001:00080bd0 __unwindfunclet$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z$0 10081bd0 f logging.cpp.obj - 0001:00080bec __unwindfunclet$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z$2 10081bec f logging.cpp.obj - 0001:00080bf9 __ehhandler$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z 10081bf9 f logging.cpp.obj - 0001:00080c20 __ehhandler$??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ 10081c20 f logging.cpp.obj - 0001:00080c40 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$0 10081c40 f logging.cpp.obj - 0001:00080c48 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$1 10081c48 f logging.cpp.obj - 0001:00080c53 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$2 10081c53 f logging.cpp.obj - 0001:00080c5e __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$3 10081c5e f logging.cpp.obj - 0001:00080c69 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$4 10081c69 f logging.cpp.obj - 0001:00080c74 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$5 10081c74 f logging.cpp.obj - 0001:00080c7f __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$6 10081c7f f logging.cpp.obj - 0001:00080c8f __ehhandler$??0_Locinfo@std@@QAE@PBD@Z 10081c8f f logging.cpp.obj - 0001:00080cb0 __unwindfunclet$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$5 10081cb0 f logging.cpp.obj - 0001:00080cb8 __unwindfunclet$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$6 10081cb8 f logging.cpp.obj - 0001:00080cc5 __ehhandler$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10081cc5 f logging.cpp.obj - 0001:00080cf0 __unwindfunclet$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z$1 10081cf0 f logging.cpp.obj - 0001:00080cf0 __unwindfunclet$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z$0 10081cf0 f main.cpp.obj - 0001:00080cf0 __unwindfunclet$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z$0 10081cf0 f spellcast.cpp.obj - 0001:00080cfd __ehhandler$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z 10081cfd f logging.cpp.obj - 0001:00080cfd __ehhandler$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z 10081cfd f main.cpp.obj - 0001:00080cfd __ehhandler$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 10081cfd f spellcast.cpp.obj - 0001:00080d30 __ehhandler$??1?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAE@XZ 10081d30 f logging.cpp.obj - 0001:00080d30 __ehhandler$?try_cor_exit_process@@YAXI@Z 10081d30 f libucrt:exit.obj - 0001:00080d30 __ehhandler$?_Tidy@ios_base@std@@AAEXXZ 10081d30 f libcpmt:ios.obj - 0001:00080d50 __ehhandler$??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ 10081d50 f logging.cpp.obj - 0001:00080d70 __ehhandler$??1_Locinfo@std@@QAE@XZ 10081d70 f logging.cpp.obj - 0001:00080d70 __ehhandler$??1?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@exception_detail@boost@@QAE@XZ 10081d70 f main.cpp.obj - 0001:00080d70 __ehhandler$??1_Init_atexit@@QAE@XZ 10081d70 f libcpmt:iosptrs.obj - 0001:00080d70 __ehhandler$___crtGetSystemTimePreciseAsFileTime 10081d70 f libcpmt:winapisupp.obj - 0001:00080d90 __ehhandler$??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ 10081d90 f logging.cpp.obj - 0001:00080d90 __ehhandler$??$_Destroy_range@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAXPAVSuspendedThread@hadesmem@@QAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 10081d90 f main.cpp.obj - 0001:00080d90 __ehhandler$??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 10081d90 f main.cpp.obj - 0001:00080d90 __ehhandler$??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 10081d90 f main.cpp.obj - 0001:00080d90 __ehhandler$??_GError@hadesmem@@UAEPAXI@Z 10081d90 f main.cpp.obj - 0001:00080db0 __ehhandler$??_G?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10081db0 f logging.cpp.obj - 0001:00080db0 __ehhandler$??_G?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10081db0 f logging.cpp.obj - 0001:00080db0 __ehhandler$??_Gios_base@std@@UAEPAXI@Z 10081db0 f logging.cpp.obj - 0001:00080db0 __ehhandler$??1bad_alloc_@exception_detail@boost@@UAE@XZ 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??1bad_exception_@exception_detail@boost@@UAE@XZ 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??1exception@boost@@MAE@XZ 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??_D?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??_D?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??_D?$wrapexcept@VError@hadesmem@@@boost@@QAEXXZ 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??_DError@hadesmem@@QAEXXZ 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??_G?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??_G?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??_G?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??_GCDataStore@Nampower@@UAEPAXI@Z 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??_Gbad_alloc_@exception_detail@boost@@UAEPAXI@Z 10081db0 f main.cpp.obj - 0001:00080db0 __ehhandler$??_Gbad_exception_@exception_detail@boost@@UAEPAXI@Z 10081db0 f main.cpp.obj - 0001:00080dd0 __unwindfunclet$??__EdebugLogFile@Nampower@@YAXXZ$0 10081dd0 f logging.cpp.obj - 0001:00080deb __unwindfunclet$??__EdebugLogFile@Nampower@@YAXXZ$1 10081deb f logging.cpp.obj - 0001:00080dfa __ehhandler$??__EdebugLogFile@Nampower@@YAXXZ 10081dfa f logging.cpp.obj - 0001:00080e20 __ehhandler$??__FdebugLogFile@Nampower@@YAXXZ 10081e20 f logging.cpp.obj - 0001:00080e40 __unwindfunclet$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z$1 10081e40 f logging.cpp.obj - 0001:00080e4d __ehhandler$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z 10081e4d f logging.cpp.obj - 0001:00080e70 __unwindfunclet$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ$0 10081e70 f logging.cpp.obj - 0001:00080e70 __unwindfunclet$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 10081e70 f spellevents.cpp.obj - 0001:00080e7d __ehhandler$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 10081e7d f logging.cpp.obj - 0001:00080e7d __ehhandler$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10081e7d f spellevents.cpp.obj - 0001:00080eb0 __ehhandler$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 10081eb0 f main.cpp.obj - 0001:00080ed0 __ehhandler$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 10081ed0 f main.cpp.obj - 0001:00080ef0 __unwindfunclet$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z$0 10081ef0 f main.cpp.obj - 0001:00080ef0 __unwindfunclet$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z$0 10081ef0 f main.cpp.obj - 0001:00080f00 __ehhandler$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z 10081f00 f main.cpp.obj - 0001:00080f00 __ehhandler$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z 10081f00 f main.cpp.obj - 0001:00080f20 __ehhandler$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 10081f20 f main.cpp.obj - 0001:00080f40 __ehhandler$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 10081f40 f main.cpp.obj - 0001:00080f60 __ehhandler$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 10081f60 f main.cpp.obj - 0001:00080f80 __unwindfunclet$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$2 10081f80 f main.cpp.obj - 0001:00080f88 __unwindfunclet$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$3 10081f88 f main.cpp.obj - 0001:00080f95 __ehhandler$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 10081f95 f main.cpp.obj - 0001:00080fc0 __unwindfunclet$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z$2 10081fc0 f main.cpp.obj - 0001:00080fcd __ehhandler$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 10081fcd f main.cpp.obj - 0001:00080ff0 __unwindfunclet$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z$2 10081ff0 f main.cpp.obj - 0001:00080ffd __ehhandler$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 10081ffd f main.cpp.obj - 0001:00081020 __unwindfunclet$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z$2 10082020 f main.cpp.obj - 0001:0008102d __ehhandler$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z 1008202d f main.cpp.obj - 0001:00081050 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$1 10082050 f main.cpp.obj - 0001:00081058 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$2 10082058 f main.cpp.obj - 0001:00081060 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$3 10082060 f main.cpp.obj - 0001:00081068 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$4 10082068 f main.cpp.obj - 0001:00081078 __ehhandler$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 10082078 f main.cpp.obj - 0001:000810b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$0 100820b0 f main.cpp.obj - 0001:000810b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$0 100820b0 f main.cpp.obj - 0001:000810b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$0 100820b0 f main.cpp.obj - 0001:000810b8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$1 100820b8 f main.cpp.obj - 0001:000810b8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$1 100820b8 f main.cpp.obj - 0001:000810b8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$1 100820b8 f main.cpp.obj - 0001:000810c0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$2 100820c0 f main.cpp.obj - 0001:000810c0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$2 100820c0 f main.cpp.obj - 0001:000810c0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$2 100820c0 f main.cpp.obj - 0001:000810cd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z 100820cd f main.cpp.obj - 0001:000810cd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z 100820cd f main.cpp.obj - 0001:000810cd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z 100820cd f main.cpp.obj - 0001:00081100 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$0 10082100 f main.cpp.obj - 0001:00081108 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$1 10082108 f main.cpp.obj - 0001:00081110 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$2 10082110 f main.cpp.obj - 0001:0008111d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z 1008211d f main.cpp.obj - 0001:00081150 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$0 10082150 f main.cpp.obj - 0001:00081150 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$0 10082150 f main.cpp.obj - 0001:00081150 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$0 10082150 f main.cpp.obj - 0001:00081150 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$0 10082150 f main.cpp.obj - 0001:00081150 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$0 10082150 f main.cpp.obj - 0001:00081150 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$0 10082150 f main.cpp.obj - 0001:00081150 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$0 10082150 f main.cpp.obj - 0001:00081150 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$0 10082150 f main.cpp.obj - 0001:00081158 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$1 10082158 f main.cpp.obj - 0001:00081158 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$1 10082158 f main.cpp.obj - 0001:00081158 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$1 10082158 f main.cpp.obj - 0001:00081158 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$1 10082158 f main.cpp.obj - 0001:00081158 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$1 10082158 f main.cpp.obj - 0001:00081158 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$1 10082158 f main.cpp.obj - 0001:00081158 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$1 10082158 f main.cpp.obj - 0001:00081158 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$1 10082158 f main.cpp.obj - 0001:00081160 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$2 10082160 f main.cpp.obj - 0001:00081160 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$2 10082160 f main.cpp.obj - 0001:00081160 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$2 10082160 f main.cpp.obj - 0001:00081160 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$2 10082160 f main.cpp.obj - 0001:00081160 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$2 10082160 f main.cpp.obj - 0001:00081160 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$2 10082160 f main.cpp.obj - 0001:00081160 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$2 10082160 f main.cpp.obj - 0001:00081160 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$2 10082160 f main.cpp.obj - 0001:0008116d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z 1008216d f main.cpp.obj - 0001:0008116d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z 1008216d f main.cpp.obj - 0001:0008116d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z 1008216d f main.cpp.obj - 0001:0008116d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z 1008216d f main.cpp.obj - 0001:0008116d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z 1008216d f main.cpp.obj - 0001:0008116d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z 1008216d f main.cpp.obj - 0001:0008116d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z 1008216d f main.cpp.obj - 0001:0008116d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z 1008216d f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@HPAI3@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@HPAI6@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$0 100821a0 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@HPAI3@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@HPAI6@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$1 100821a8 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@HPAI3@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@HPAI6@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$2 100821b0 f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@HPAI3@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@HPAI6@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z 100821bd f main.cpp.obj - 0001:000811f0 __unwindfunclet$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z$2 100821f0 f main.cpp.obj - 0001:000811fd __ehhandler$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 100821fd f main.cpp.obj - 0001:00081220 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$0 10082220 f main.cpp.obj - 0001:00081228 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$1 10082228 f main.cpp.obj - 0001:00081230 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$2 10082230 f main.cpp.obj - 0001:00081238 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$3 10082238 f main.cpp.obj - 0001:00081245 __ehhandler$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z 10082245 f main.cpp.obj - 0001:00081270 __unwindfunclet$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z$2 10082270 f main.cpp.obj - 0001:0008127d __ehhandler$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 1008227d f main.cpp.obj - 0001:000812a0 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$4 100822a0 f main.cpp.obj - 0001:000812a8 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$21 100822a8 f main.cpp.obj - 0001:000812ba __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$22 100822ba f main.cpp.obj - 0001:000812dc __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$6 100822dc f main.cpp.obj - 0001:000812fe __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$7 100822fe f main.cpp.obj - 0001:00081306 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$8 10082306 f main.cpp.obj - 0001:0008130e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$10 1008230e f main.cpp.obj - 0001:00081316 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$11 10082316 f main.cpp.obj - 0001:0008131e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$12 1008231e f main.cpp.obj - 0001:00081326 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$13 10082326 f main.cpp.obj - 0001:0008132e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$14 1008232e f main.cpp.obj - 0001:00081336 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$15 10082336 f main.cpp.obj - 0001:0008133e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$16 1008233e f main.cpp.obj - 0001:00081349 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$17 10082349 f main.cpp.obj - 0001:00081354 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$9 10082354 f main.cpp.obj - 0001:00081361 __ehhandler$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 10082361 f main.cpp.obj - 0001:00081390 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$4 10082390 f main.cpp.obj - 0001:00081398 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$21 10082398 f main.cpp.obj - 0001:000813aa __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$22 100823aa f main.cpp.obj - 0001:000813cc __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$6 100823cc f main.cpp.obj - 0001:000813ee __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$7 100823ee f main.cpp.obj - 0001:000813f6 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$8 100823f6 f main.cpp.obj - 0001:000813fe __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$10 100823fe f main.cpp.obj - 0001:00081406 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$11 10082406 f main.cpp.obj - 0001:0008140e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$12 1008240e f main.cpp.obj - 0001:00081416 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$13 10082416 f main.cpp.obj - 0001:0008141e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$14 1008241e f main.cpp.obj - 0001:00081426 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$15 10082426 f main.cpp.obj - 0001:0008142e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$16 1008242e f main.cpp.obj - 0001:00081439 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$17 10082439 f main.cpp.obj - 0001:00081444 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$9 10082444 f main.cpp.obj - 0001:00081451 __ehhandler$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 10082451 f main.cpp.obj - 0001:00081480 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$4 10082480 f main.cpp.obj - 0001:00081488 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$21 10082488 f main.cpp.obj - 0001:0008149a __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$22 1008249a f main.cpp.obj - 0001:000814bc __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$6 100824bc f main.cpp.obj - 0001:000814de __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$7 100824de f main.cpp.obj - 0001:000814e6 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$8 100824e6 f main.cpp.obj - 0001:000814ee __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$10 100824ee f main.cpp.obj - 0001:000814f6 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$11 100824f6 f main.cpp.obj - 0001:000814fe __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$12 100824fe f main.cpp.obj - 0001:00081506 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$13 10082506 f main.cpp.obj - 0001:0008150e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$14 1008250e f main.cpp.obj - 0001:00081516 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$15 10082516 f main.cpp.obj - 0001:0008151e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$16 1008251e f main.cpp.obj - 0001:00081529 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$17 10082529 f main.cpp.obj - 0001:00081534 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$9 10082534 f main.cpp.obj - 0001:00081541 __ehhandler$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 10082541 f main.cpp.obj - 0001:00081570 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$4 10082570 f main.cpp.obj - 0001:00081578 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$21 10082578 f main.cpp.obj - 0001:0008158a __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$22 1008258a f main.cpp.obj - 0001:000815ac __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$6 100825ac f main.cpp.obj - 0001:000815ce __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$7 100825ce f main.cpp.obj - 0001:000815d6 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$8 100825d6 f main.cpp.obj - 0001:000815de __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$10 100825de f main.cpp.obj - 0001:000815e6 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$11 100825e6 f main.cpp.obj - 0001:000815ee __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$12 100825ee f main.cpp.obj - 0001:000815f6 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$13 100825f6 f main.cpp.obj - 0001:000815fe __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$14 100825fe f main.cpp.obj - 0001:00081606 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$15 10082606 f main.cpp.obj - 0001:0008160e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$16 1008260e f main.cpp.obj - 0001:00081619 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$17 10082619 f main.cpp.obj - 0001:00081624 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$9 10082624 f main.cpp.obj - 0001:00081631 __ehhandler$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 10082631 f main.cpp.obj - 0001:00081660 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$4 10082660 f main.cpp.obj - 0001:00081668 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$21 10082668 f main.cpp.obj - 0001:0008167a __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$22 1008267a f main.cpp.obj - 0001:0008169c __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$6 1008269c f main.cpp.obj - 0001:000816be __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$7 100826be f main.cpp.obj - 0001:000816c6 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$8 100826c6 f main.cpp.obj - 0001:000816ce __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$10 100826ce f main.cpp.obj - 0001:000816d6 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$11 100826d6 f main.cpp.obj - 0001:000816de __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$12 100826de f main.cpp.obj - 0001:000816e6 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$13 100826e6 f main.cpp.obj - 0001:000816ee __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$14 100826ee f main.cpp.obj - 0001:000816f6 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$15 100826f6 f main.cpp.obj - 0001:000816fe __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$16 100826fe f main.cpp.obj - 0001:00081709 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$17 10082709 f main.cpp.obj - 0001:00081714 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$9 10082714 f main.cpp.obj - 0001:00081721 __ehhandler$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 10082721 f main.cpp.obj - 0001:00081750 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$4 10082750 f main.cpp.obj - 0001:00081758 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$21 10082758 f main.cpp.obj - 0001:0008176a __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$22 1008276a f main.cpp.obj - 0001:0008178c __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$6 1008278c f main.cpp.obj - 0001:000817ae __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$7 100827ae f main.cpp.obj - 0001:000817b6 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$8 100827b6 f main.cpp.obj - 0001:000817be __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$10 100827be f main.cpp.obj - 0001:000817c6 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$11 100827c6 f main.cpp.obj - 0001:000817ce __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$12 100827ce f main.cpp.obj - 0001:000817d6 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$13 100827d6 f main.cpp.obj - 0001:000817de __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$14 100827de f main.cpp.obj - 0001:000817e6 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$15 100827e6 f main.cpp.obj - 0001:000817ee __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$16 100827ee f main.cpp.obj - 0001:000817f9 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$17 100827f9 f main.cpp.obj - 0001:00081804 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$9 10082804 f main.cpp.obj - 0001:00081811 __ehhandler$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z 10082811 f main.cpp.obj - 0001:00081840 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$4 10082840 f main.cpp.obj - 0001:00081848 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$21 10082848 f main.cpp.obj - 0001:0008185a __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$22 1008285a f main.cpp.obj - 0001:0008187c __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$6 1008287c f main.cpp.obj - 0001:0008189e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$7 1008289e f main.cpp.obj - 0001:000818a6 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$8 100828a6 f main.cpp.obj - 0001:000818ae __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$10 100828ae f main.cpp.obj - 0001:000818b6 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$11 100828b6 f main.cpp.obj - 0001:000818be __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$12 100828be f main.cpp.obj - 0001:000818c6 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$13 100828c6 f main.cpp.obj - 0001:000818ce __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$14 100828ce f main.cpp.obj - 0001:000818d6 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$15 100828d6 f main.cpp.obj - 0001:000818de __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$16 100828de f main.cpp.obj - 0001:000818e9 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$17 100828e9 f main.cpp.obj - 0001:000818f4 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$9 100828f4 f main.cpp.obj - 0001:00081901 __ehhandler$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 10082901 f main.cpp.obj - 0001:00081930 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$4 10082930 f main.cpp.obj - 0001:00081938 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$21 10082938 f main.cpp.obj - 0001:0008194a __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$22 1008294a f main.cpp.obj - 0001:0008196c __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$6 1008296c f main.cpp.obj - 0001:0008198e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$7 1008298e f main.cpp.obj - 0001:00081996 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$8 10082996 f main.cpp.obj - 0001:0008199e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$10 1008299e f main.cpp.obj - 0001:000819a6 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$11 100829a6 f main.cpp.obj - 0001:000819ae __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$12 100829ae f main.cpp.obj - 0001:000819b6 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$13 100829b6 f main.cpp.obj - 0001:000819be __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$14 100829be f main.cpp.obj - 0001:000819c6 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$15 100829c6 f main.cpp.obj - 0001:000819ce __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$16 100829ce f main.cpp.obj - 0001:000819d9 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$17 100829d9 f main.cpp.obj - 0001:000819e4 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$9 100829e4 f main.cpp.obj - 0001:000819f1 __ehhandler$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 100829f1 f main.cpp.obj - 0001:00081a20 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$4 10082a20 f main.cpp.obj - 0001:00081a28 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$21 10082a28 f main.cpp.obj - 0001:00081a3a __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$22 10082a3a f main.cpp.obj - 0001:00081a5c __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$6 10082a5c f main.cpp.obj - 0001:00081a7e __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$7 10082a7e f main.cpp.obj - 0001:00081a86 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$8 10082a86 f main.cpp.obj - 0001:00081a8e __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$10 10082a8e f main.cpp.obj - 0001:00081a96 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$11 10082a96 f main.cpp.obj - 0001:00081a9e __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$12 10082a9e f main.cpp.obj - 0001:00081aa6 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$13 10082aa6 f main.cpp.obj - 0001:00081aae __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$14 10082aae f main.cpp.obj - 0001:00081ab6 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$15 10082ab6 f main.cpp.obj - 0001:00081abe __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$16 10082abe f main.cpp.obj - 0001:00081ac9 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$17 10082ac9 f main.cpp.obj - 0001:00081ad4 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$9 10082ad4 f main.cpp.obj - 0001:00081ae1 __ehhandler$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 10082ae1 f main.cpp.obj - 0001:00081b10 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$4 10082b10 f main.cpp.obj - 0001:00081b18 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$21 10082b18 f main.cpp.obj - 0001:00081b2a __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$22 10082b2a f main.cpp.obj - 0001:00081b4c __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$6 10082b4c f main.cpp.obj - 0001:00081b6e __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$7 10082b6e f main.cpp.obj - 0001:00081b76 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$8 10082b76 f main.cpp.obj - 0001:00081b7e __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$10 10082b7e f main.cpp.obj - 0001:00081b86 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$11 10082b86 f main.cpp.obj - 0001:00081b8e __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$12 10082b8e f main.cpp.obj - 0001:00081b96 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$13 10082b96 f main.cpp.obj - 0001:00081b9e __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$14 10082b9e f main.cpp.obj - 0001:00081ba6 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$15 10082ba6 f main.cpp.obj - 0001:00081bae __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$16 10082bae f main.cpp.obj - 0001:00081bb9 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$17 10082bb9 f main.cpp.obj - 0001:00081bc4 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$9 10082bc4 f main.cpp.obj - 0001:00081bd1 __ehhandler$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 10082bd1 f main.cpp.obj - 0001:00081c00 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$4 10082c00 f main.cpp.obj - 0001:00081c08 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$21 10082c08 f main.cpp.obj - 0001:00081c1a __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$22 10082c1a f main.cpp.obj - 0001:00081c3c __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$6 10082c3c f main.cpp.obj - 0001:00081c5e __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$7 10082c5e f main.cpp.obj - 0001:00081c66 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$8 10082c66 f main.cpp.obj - 0001:00081c6e __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$10 10082c6e f main.cpp.obj - 0001:00081c76 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$11 10082c76 f main.cpp.obj - 0001:00081c7e __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$12 10082c7e f main.cpp.obj - 0001:00081c86 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$13 10082c86 f main.cpp.obj - 0001:00081c8e __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$14 10082c8e f main.cpp.obj - 0001:00081c96 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$15 10082c96 f main.cpp.obj - 0001:00081c9e __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$16 10082c9e f main.cpp.obj - 0001:00081ca9 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$17 10082ca9 f main.cpp.obj - 0001:00081cb4 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$9 10082cb4 f main.cpp.obj - 0001:00081cc1 __ehhandler$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 10082cc1 f main.cpp.obj - 0001:00081cf0 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$4 10082cf0 f main.cpp.obj - 0001:00081cf8 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$21 10082cf8 f main.cpp.obj - 0001:00081d0a __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$22 10082d0a f main.cpp.obj - 0001:00081d2c __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$6 10082d2c f main.cpp.obj - 0001:00081d4e __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$7 10082d4e f main.cpp.obj - 0001:00081d56 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$8 10082d56 f main.cpp.obj - 0001:00081d5e __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$10 10082d5e f main.cpp.obj - 0001:00081d66 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$11 10082d66 f main.cpp.obj - 0001:00081d6e __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$12 10082d6e f main.cpp.obj - 0001:00081d76 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$13 10082d76 f main.cpp.obj - 0001:00081d7e __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$14 10082d7e f main.cpp.obj - 0001:00081d86 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$15 10082d86 f main.cpp.obj - 0001:00081d8e __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$16 10082d8e f main.cpp.obj - 0001:00081d99 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$17 10082d99 f main.cpp.obj - 0001:00081da4 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$9 10082da4 f main.cpp.obj - 0001:00081db1 __ehhandler$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 10082db1 f main.cpp.obj - 0001:00081de0 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$4 10082de0 f main.cpp.obj - 0001:00081de8 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$21 10082de8 f main.cpp.obj - 0001:00081dfa __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$22 10082dfa f main.cpp.obj - 0001:00081e1c __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$6 10082e1c f main.cpp.obj - 0001:00081e3e __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$7 10082e3e f main.cpp.obj - 0001:00081e46 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$8 10082e46 f main.cpp.obj - 0001:00081e4e __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$10 10082e4e f main.cpp.obj - 0001:00081e56 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$11 10082e56 f main.cpp.obj - 0001:00081e5e __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$12 10082e5e f main.cpp.obj - 0001:00081e66 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$13 10082e66 f main.cpp.obj - 0001:00081e6e __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$14 10082e6e f main.cpp.obj - 0001:00081e76 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$15 10082e76 f main.cpp.obj - 0001:00081e7e __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$16 10082e7e f main.cpp.obj - 0001:00081e89 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$17 10082e89 f main.cpp.obj - 0001:00081e94 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$9 10082e94 f main.cpp.obj - 0001:00081ea1 __ehhandler$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 10082ea1 f main.cpp.obj - 0001:00081ed0 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$4 10082ed0 f main.cpp.obj - 0001:00081ed8 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$21 10082ed8 f main.cpp.obj - 0001:00081eea __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$22 10082eea f main.cpp.obj - 0001:00081f0c __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$6 10082f0c f main.cpp.obj - 0001:00081f2e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$7 10082f2e f main.cpp.obj - 0001:00081f36 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$8 10082f36 f main.cpp.obj - 0001:00081f3e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$10 10082f3e f main.cpp.obj - 0001:00081f46 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$11 10082f46 f main.cpp.obj - 0001:00081f4e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$12 10082f4e f main.cpp.obj - 0001:00081f56 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$13 10082f56 f main.cpp.obj - 0001:00081f5e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$14 10082f5e f main.cpp.obj - 0001:00081f66 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$15 10082f66 f main.cpp.obj - 0001:00081f6e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$16 10082f6e f main.cpp.obj - 0001:00081f79 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$17 10082f79 f main.cpp.obj - 0001:00081f84 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$9 10082f84 f main.cpp.obj - 0001:00081f91 __ehhandler$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 10082f91 f main.cpp.obj - 0001:00081fc0 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$4 10082fc0 f main.cpp.obj - 0001:00081fc8 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$21 10082fc8 f main.cpp.obj - 0001:00081fda __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$22 10082fda f main.cpp.obj - 0001:00081ffc __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$6 10082ffc f main.cpp.obj - 0001:0008201e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$7 1008301e f main.cpp.obj - 0001:00082026 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$8 10083026 f main.cpp.obj - 0001:0008202e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$10 1008302e f main.cpp.obj - 0001:00082036 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$11 10083036 f main.cpp.obj - 0001:0008203e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$12 1008303e f main.cpp.obj - 0001:00082046 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$13 10083046 f main.cpp.obj - 0001:0008204e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$14 1008304e f main.cpp.obj - 0001:00082056 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$15 10083056 f main.cpp.obj - 0001:0008205e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$16 1008305e f main.cpp.obj - 0001:00082069 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$17 10083069 f main.cpp.obj - 0001:00082074 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$9 10083074 f main.cpp.obj - 0001:00082081 __ehhandler$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 10083081 f main.cpp.obj - 0001:000820b0 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$4 100830b0 f main.cpp.obj - 0001:000820b8 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$21 100830b8 f main.cpp.obj - 0001:000820ca __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$22 100830ca f main.cpp.obj - 0001:000820ec __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$6 100830ec f main.cpp.obj - 0001:0008210e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$7 1008310e f main.cpp.obj - 0001:00082116 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$8 10083116 f main.cpp.obj - 0001:0008211e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$10 1008311e f main.cpp.obj - 0001:00082126 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$11 10083126 f main.cpp.obj - 0001:0008212e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$12 1008312e f main.cpp.obj - 0001:00082136 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$13 10083136 f main.cpp.obj - 0001:0008213e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$14 1008313e f main.cpp.obj - 0001:00082146 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$15 10083146 f main.cpp.obj - 0001:0008214e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$16 1008314e f main.cpp.obj - 0001:00082159 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$17 10083159 f main.cpp.obj - 0001:00082164 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$9 10083164 f main.cpp.obj - 0001:00082171 __ehhandler$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 10083171 f main.cpp.obj - 0001:000821a0 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$4 100831a0 f main.cpp.obj - 0001:000821a8 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$21 100831a8 f main.cpp.obj - 0001:000821ba __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$22 100831ba f main.cpp.obj - 0001:000821dc __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$6 100831dc f main.cpp.obj - 0001:000821fe __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$7 100831fe f main.cpp.obj - 0001:00082206 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$8 10083206 f main.cpp.obj - 0001:0008220e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$10 1008320e f main.cpp.obj - 0001:00082216 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$11 10083216 f main.cpp.obj - 0001:0008221e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$12 1008321e f main.cpp.obj - 0001:00082226 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$13 10083226 f main.cpp.obj - 0001:0008222e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$14 1008322e f main.cpp.obj - 0001:00082236 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$15 10083236 f main.cpp.obj - 0001:0008223e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$16 1008323e f main.cpp.obj - 0001:00082249 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$17 10083249 f main.cpp.obj - 0001:00082254 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$9 10083254 f main.cpp.obj - 0001:00082261 __ehhandler$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 10083261 f main.cpp.obj - 0001:00082290 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$4 10083290 f main.cpp.obj - 0001:00082298 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$21 10083298 f main.cpp.obj - 0001:000822aa __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$22 100832aa f main.cpp.obj - 0001:000822cc __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$6 100832cc f main.cpp.obj - 0001:000822ee __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$7 100832ee f main.cpp.obj - 0001:000822f6 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$8 100832f6 f main.cpp.obj - 0001:000822fe __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$10 100832fe f main.cpp.obj - 0001:00082306 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$11 10083306 f main.cpp.obj - 0001:0008230e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$12 1008330e f main.cpp.obj - 0001:00082316 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$13 10083316 f main.cpp.obj - 0001:0008231e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$14 1008331e f main.cpp.obj - 0001:00082326 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$15 10083326 f main.cpp.obj - 0001:0008232e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$16 1008332e f main.cpp.obj - 0001:00082339 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$17 10083339 f main.cpp.obj - 0001:00082344 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$9 10083344 f main.cpp.obj - 0001:00082351 __ehhandler$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 10083351 f main.cpp.obj - 0001:00082380 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$4 10083380 f main.cpp.obj - 0001:00082388 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$21 10083388 f main.cpp.obj - 0001:0008239a __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$22 1008339a f main.cpp.obj - 0001:000823bc __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$6 100833bc f main.cpp.obj - 0001:000823de __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$7 100833de f main.cpp.obj - 0001:000823e6 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$8 100833e6 f main.cpp.obj - 0001:000823ee __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$10 100833ee f main.cpp.obj - 0001:000823f6 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$11 100833f6 f main.cpp.obj - 0001:000823fe __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$12 100833fe f main.cpp.obj - 0001:00082406 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$13 10083406 f main.cpp.obj - 0001:0008240e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$14 1008340e f main.cpp.obj - 0001:00082416 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$15 10083416 f main.cpp.obj - 0001:0008241e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$16 1008341e f main.cpp.obj - 0001:00082429 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$17 10083429 f main.cpp.obj - 0001:00082434 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$9 10083434 f main.cpp.obj - 0001:00082441 __ehhandler$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 10083441 f main.cpp.obj - 0001:00082470 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$4 10083470 f main.cpp.obj - 0001:00082478 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$21 10083478 f main.cpp.obj - 0001:0008248a __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$22 1008348a f main.cpp.obj - 0001:000824ac __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$6 100834ac f main.cpp.obj - 0001:000824ce __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$7 100834ce f main.cpp.obj - 0001:000824d6 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$8 100834d6 f main.cpp.obj - 0001:000824de __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$10 100834de f main.cpp.obj - 0001:000824e6 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$11 100834e6 f main.cpp.obj - 0001:000824ee __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$12 100834ee f main.cpp.obj - 0001:000824f6 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$13 100834f6 f main.cpp.obj - 0001:000824fe __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$14 100834fe f main.cpp.obj - 0001:00082506 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$15 10083506 f main.cpp.obj - 0001:0008250e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$16 1008350e f main.cpp.obj - 0001:00082519 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$17 10083519 f main.cpp.obj - 0001:00082524 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$9 10083524 f main.cpp.obj - 0001:00082531 __ehhandler$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 10083531 f main.cpp.obj - 0001:00082560 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$4 10083560 f main.cpp.obj - 0001:00082568 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$21 10083568 f main.cpp.obj - 0001:0008257a __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$22 1008357a f main.cpp.obj - 0001:0008259c __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$6 1008359c f main.cpp.obj - 0001:000825be __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$7 100835be f main.cpp.obj - 0001:000825c6 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$8 100835c6 f main.cpp.obj - 0001:000825ce __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$10 100835ce f main.cpp.obj - 0001:000825d6 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$11 100835d6 f main.cpp.obj - 0001:000825de __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$12 100835de f main.cpp.obj - 0001:000825e6 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$13 100835e6 f main.cpp.obj - 0001:000825ee __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$14 100835ee f main.cpp.obj - 0001:000825f6 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$15 100835f6 f main.cpp.obj - 0001:000825fe __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$16 100835fe f main.cpp.obj - 0001:00082609 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$17 10083609 f main.cpp.obj - 0001:00082614 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$9 10083614 f main.cpp.obj - 0001:00082621 __ehhandler$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 10083621 f main.cpp.obj - 0001:00082650 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$4 10083650 f main.cpp.obj - 0001:00082658 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$21 10083658 f main.cpp.obj - 0001:0008266a __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$22 1008366a f main.cpp.obj - 0001:0008268c __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$6 1008368c f main.cpp.obj - 0001:000826ae __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$7 100836ae f main.cpp.obj - 0001:000826b6 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$8 100836b6 f main.cpp.obj - 0001:000826be __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$10 100836be f main.cpp.obj - 0001:000826c6 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$11 100836c6 f main.cpp.obj - 0001:000826ce __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$12 100836ce f main.cpp.obj - 0001:000826d6 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$13 100836d6 f main.cpp.obj - 0001:000826de __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$14 100836de f main.cpp.obj - 0001:000826e6 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$15 100836e6 f main.cpp.obj - 0001:000826ee __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$16 100836ee f main.cpp.obj - 0001:000826f9 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$17 100836f9 f main.cpp.obj - 0001:00082704 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$9 10083704 f main.cpp.obj - 0001:00082711 __ehhandler$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 10083711 f main.cpp.obj - 0001:00082740 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$4 10083740 f main.cpp.obj - 0001:00082748 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$21 10083748 f main.cpp.obj - 0001:0008275a __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$22 1008375a f main.cpp.obj - 0001:0008277c __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$6 1008377c f main.cpp.obj - 0001:0008279e __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$7 1008379e f main.cpp.obj - 0001:000827a6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$8 100837a6 f main.cpp.obj - 0001:000827ae __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$10 100837ae f main.cpp.obj - 0001:000827b6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$11 100837b6 f main.cpp.obj - 0001:000827be __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$12 100837be f main.cpp.obj - 0001:000827c6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$13 100837c6 f main.cpp.obj - 0001:000827ce __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$14 100837ce f main.cpp.obj - 0001:000827d6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$15 100837d6 f main.cpp.obj - 0001:000827de __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$16 100837de f main.cpp.obj - 0001:000827e9 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$17 100837e9 f main.cpp.obj - 0001:000827f4 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$9 100837f4 f main.cpp.obj - 0001:00082801 __ehhandler$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 10083801 f main.cpp.obj - 0001:00082830 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$4 10083830 f main.cpp.obj - 0001:00082838 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$21 10083838 f main.cpp.obj - 0001:0008284a __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$22 1008384a f main.cpp.obj - 0001:0008286c __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$6 1008386c f main.cpp.obj - 0001:0008288e __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$7 1008388e f main.cpp.obj - 0001:00082896 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$8 10083896 f main.cpp.obj - 0001:0008289e __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$10 1008389e f main.cpp.obj - 0001:000828a6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$11 100838a6 f main.cpp.obj - 0001:000828ae __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$12 100838ae f main.cpp.obj - 0001:000828b6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$13 100838b6 f main.cpp.obj - 0001:000828be __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$14 100838be f main.cpp.obj - 0001:000828c6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$15 100838c6 f main.cpp.obj - 0001:000828ce __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$16 100838ce f main.cpp.obj - 0001:000828d9 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$17 100838d9 f main.cpp.obj - 0001:000828e4 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$9 100838e4 f main.cpp.obj - 0001:000828f1 __ehhandler$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 100838f1 f main.cpp.obj - 0001:00082920 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$4 10083920 f main.cpp.obj - 0001:00082928 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$21 10083928 f main.cpp.obj - 0001:0008293a __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$22 1008393a f main.cpp.obj - 0001:0008295c __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$6 1008395c f main.cpp.obj - 0001:0008297e __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$7 1008397e f main.cpp.obj - 0001:00082986 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$8 10083986 f main.cpp.obj - 0001:0008298e __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$10 1008398e f main.cpp.obj - 0001:00082996 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$11 10083996 f main.cpp.obj - 0001:0008299e __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$12 1008399e f main.cpp.obj - 0001:000829a6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$13 100839a6 f main.cpp.obj - 0001:000829ae __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$14 100839ae f main.cpp.obj - 0001:000829b6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$15 100839b6 f main.cpp.obj - 0001:000829be __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$16 100839be f main.cpp.obj - 0001:000829c9 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$17 100839c9 f main.cpp.obj - 0001:000829d4 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$9 100839d4 f main.cpp.obj - 0001:000829e1 __ehhandler$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 100839e1 f main.cpp.obj - 0001:00082a10 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$4 10083a10 f main.cpp.obj - 0001:00082a18 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$21 10083a18 f main.cpp.obj - 0001:00082a2a __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$22 10083a2a f main.cpp.obj - 0001:00082a4c __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$6 10083a4c f main.cpp.obj - 0001:00082a6e __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$7 10083a6e f main.cpp.obj - 0001:00082a76 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$8 10083a76 f main.cpp.obj - 0001:00082a7e __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$10 10083a7e f main.cpp.obj - 0001:00082a86 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$11 10083a86 f main.cpp.obj - 0001:00082a8e __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$12 10083a8e f main.cpp.obj - 0001:00082a96 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$13 10083a96 f main.cpp.obj - 0001:00082a9e __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$14 10083a9e f main.cpp.obj - 0001:00082aa6 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$15 10083aa6 f main.cpp.obj - 0001:00082aae __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$16 10083aae f main.cpp.obj - 0001:00082ab9 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$17 10083ab9 f main.cpp.obj - 0001:00082ac4 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$9 10083ac4 f main.cpp.obj - 0001:00082ad1 __ehhandler$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 10083ad1 f main.cpp.obj - 0001:00082b00 __ehhandler$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 10083b00 f main.cpp.obj - 0001:00082b20 __ehhandler$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 10083b20 f main.cpp.obj - 0001:00082b40 __unwindfunclet$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z$0 10083b40 f main.cpp.obj - 0001:00082b4d __ehhandler$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z 10083b4d f main.cpp.obj - 0001:00082b70 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$0 10083b70 f main.cpp.obj - 0001:00082b78 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$7 10083b78 f main.cpp.obj - 0001:00082b91 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$8 10083b91 f main.cpp.obj - 0001:00082b99 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$13 10083b99 f main.cpp.obj - 0001:00082ba1 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$14 10083ba1 f main.cpp.obj - 0001:00082ba9 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$1 10083ba9 f main.cpp.obj - 0001:00082bb1 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$2 10083bb1 f main.cpp.obj - 0001:00082bbd __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$3 10083bbd f main.cpp.obj - 0001:00082bcc __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$28 10083bcc f main.cpp.obj - 0001:00082bd9 __ehhandler$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10083bd9 f main.cpp.obj - 0001:00082c00 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$0 10083c00 f main.cpp.obj - 0001:00082c08 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$7 10083c08 f main.cpp.obj - 0001:00082c21 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$8 10083c21 f main.cpp.obj - 0001:00082c29 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$13 10083c29 f main.cpp.obj - 0001:00082c31 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$14 10083c31 f main.cpp.obj - 0001:00082c39 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$1 10083c39 f main.cpp.obj - 0001:00082c41 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$2 10083c41 f main.cpp.obj - 0001:00082c4d __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$3 10083c4d f main.cpp.obj - 0001:00082c5c __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$28 10083c5c f main.cpp.obj - 0001:00082c69 __ehhandler$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10083c69 f main.cpp.obj - 0001:00082c90 __unwindfunclet$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z$0 10083c90 f main.cpp.obj - 0001:00082ca4 __ehhandler$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z 10083ca4 f main.cpp.obj - 0001:00082cd0 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$0 10083cd0 f main.cpp.obj - 0001:00082cd8 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$1 10083cd8 f main.cpp.obj - 0001:00082ce7 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$2 10083ce7 f main.cpp.obj - 0001:00082cf4 __ehhandler$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 10083cf4 f main.cpp.obj - 0001:00082d20 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$0 10083d20 f main.cpp.obj - 0001:00082d28 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$1 10083d28 f main.cpp.obj - 0001:00082d37 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$2 10083d37 f main.cpp.obj - 0001:00082d44 __ehhandler$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 10083d44 f main.cpp.obj - 0001:00082d70 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$0 10083d70 f main.cpp.obj - 0001:00082d7b __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$1 10083d7b f main.cpp.obj - 0001:00082d83 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$2 10083d83 f main.cpp.obj - 0001:00082d8b __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$3 10083d8b f main.cpp.obj - 0001:00082d93 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$4 10083d93 f main.cpp.obj - 0001:00082da0 __ehhandler$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 10083da0 f main.cpp.obj - 0001:00082dd0 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$10 10083dd0 f main.cpp.obj - 0001:00082df2 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$9 10083df2 f main.cpp.obj - 0001:00082dfd __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$0 10083dfd f main.cpp.obj - 0001:00082e08 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$1 10083e08 f main.cpp.obj - 0001:00082e10 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$2 10083e10 f main.cpp.obj - 0001:00082e18 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$3 10083e18 f main.cpp.obj - 0001:00082e20 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$4 10083e20 f main.cpp.obj - 0001:00082e2d __ehhandler$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 10083e2d f main.cpp.obj - 0001:00082e60 __unwindfunclet$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z$4 10083e60 f main.cpp.obj - 0001:00082e79 __unwindfunclet$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z$3 10083e79 f main.cpp.obj - 0001:00082e89 __ehhandler$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z 10083e89 f main.cpp.obj - 0001:00082eb0 __unwindfunclet$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z$0 10083eb0 f main.cpp.obj - 0001:00082eb8 __unwindfunclet$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z$1 10083eb8 f main.cpp.obj - 0001:00082ec5 __ehhandler$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z 10083ec5 f main.cpp.obj - 0001:00082ef0 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$0 10083ef0 f main.cpp.obj - 0001:00082ef8 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$2 10083ef8 f main.cpp.obj - 0001:00082f07 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$1 10083f07 f main.cpp.obj - 0001:00082f14 __ehhandler$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 10083f14 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f40 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$0 10083f40 f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f4b __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$13 10083f4b f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f53 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$1 10083f53 f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f5e __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$2 10083f5e f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f69 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$3 10083f69 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f74 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$4 10083f74 f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f7f __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$5 10083f7f f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f8a __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$7 10083f8a f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f95 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$8 10083f95 f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082f9d __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$9 10083f9d f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fa5 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$10 10083fa5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fb5 __ehhandler$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z 10083fb5 f main.cpp.obj - 0001:00082fe0 __unwindfunclet$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$0 10083fe0 f main.cpp.obj - 0001:00082ffc __unwindfunclet$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$1 10083ffc f main.cpp.obj - 0001:0008300c __ehhandler$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 1008400c f main.cpp.obj - 0001:00083030 __unwindfunclet$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ$0 10084030 f main.cpp.obj - 0001:0008304c __unwindfunclet$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ$1 1008404c f main.cpp.obj - 0001:0008305c __ehhandler$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 1008405c f main.cpp.obj - 0001:00083080 __unwindfunclet$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z$0 10084080 f main.cpp.obj - 0001:00083080 __unwindfunclet$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z$0 10084080 f main.cpp.obj - 0001:000830a1 __ehhandler$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100840a1 f main.cpp.obj - 0001:000830a1 __ehhandler$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100840a1 f main.cpp.obj - 0001:000830c0 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$0 100840c0 f main.cpp.obj - 0001:000830dc __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$1 100840dc f main.cpp.obj - 0001:000830f8 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$2 100840f8 f main.cpp.obj - 0001:00083105 __ehhandler$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z 10084105 f main.cpp.obj - 0001:00083130 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$0 10084130 f main.cpp.obj - 0001:0008314c __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$1 1008414c f main.cpp.obj - 0001:00083168 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$2 10084168 f main.cpp.obj - 0001:00083175 __ehhandler$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z 10084175 f main.cpp.obj - 0001:000831a0 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$0 100841a0 f main.cpp.obj - 0001:000831a0 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$0 100841a0 f main.cpp.obj - 0001:000831a0 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$0 100841a0 f main.cpp.obj - 0001:000831a0 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$0 100841a0 f main.cpp.obj - 0001:000831a8 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$1 100841a8 f main.cpp.obj - 0001:000831a8 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$1 100841a8 f main.cpp.obj - 0001:000831a8 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$1 100841a8 f main.cpp.obj - 0001:000831a8 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$1 100841a8 f main.cpp.obj - 0001:000831b0 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$2 100841b0 f main.cpp.obj - 0001:000831b0 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$2 100841b0 f main.cpp.obj - 0001:000831b0 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$2 100841b0 f main.cpp.obj - 0001:000831b0 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$2 100841b0 f main.cpp.obj - 0001:000831b8 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$3 100841b8 f main.cpp.obj - 0001:000831b8 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$3 100841b8 f main.cpp.obj - 0001:000831b8 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$3 100841b8 f main.cpp.obj - 0001:000831b8 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$3 100841b8 f main.cpp.obj - 0001:000831c5 __ehhandler$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z 100841c5 f main.cpp.obj - 0001:000831c5 __ehhandler$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ 100841c5 f main.cpp.obj - 0001:000831c5 __ehhandler$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z 100841c5 f main.cpp.obj - 0001:000831c5 __ehhandler$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z 100841c5 f main.cpp.obj - 0001:000831f0 __unwindfunclet$??0Error@hadesmem@@QAE@ABV01@@Z$0 100841f0 f main.cpp.obj - 0001:00083211 __ehhandler$??0Error@hadesmem@@QAE@ABV01@@Z 10084211 f main.cpp.obj - 0001:00083230 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$0 10084230 f main.cpp.obj - 0001:00083238 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$3 10084238 f main.cpp.obj - 0001:00083240 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$4 10084240 f main.cpp.obj - 0001:00083248 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$5 10084248 f main.cpp.obj - 0001:00083250 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$6 10084250 f main.cpp.obj - 0001:0008325b __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$8 1008425b f main.cpp.obj - 0001:00083263 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$9 10084263 f main.cpp.obj - 0001:0008326b __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$10 1008426b f main.cpp.obj - 0001:0008327b __ehhandler$??0Process@hadesmem@@QAE@K@Z 1008427b f main.cpp.obj - 0001:000832b0 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$2 100842b0 f main.cpp.obj - 0001:000832b8 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$3 100842b8 f main.cpp.obj - 0001:000832c0 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$4 100842c0 f main.cpp.obj - 0001:000832cd __ehhandler$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 100842cd f main.cpp.obj - 0001:00083300 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$2 10084300 f main.cpp.obj - 0001:0008330b __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$3 1008430b f main.cpp.obj - 0001:00083313 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$4 10084313 f main.cpp.obj - 0001:0008331e __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$5 1008431e f main.cpp.obj - 0001:00083329 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$15 10084329 f main.cpp.obj - 0001:00083334 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$6 10084334 f main.cpp.obj - 0001:0008333f __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$42 1008433f f main.cpp.obj - 0001:00083347 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$7 10084347 f main.cpp.obj - 0001:0008334f __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$30 1008434f f main.cpp.obj - 0001:00083357 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$31 10084357 f main.cpp.obj - 0001:00083362 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$32 10084362 f main.cpp.obj - 0001:0008336a __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$33 1008436a f main.cpp.obj - 0001:00083375 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$35 10084375 f main.cpp.obj - 0001:0008337d __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$36 1008437d f main.cpp.obj - 0001:00083388 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$37 10084388 f main.cpp.obj - 0001:00083390 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$38 10084390 f main.cpp.obj - 0001:0008339b __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$39 1008439b f main.cpp.obj - 0001:000833a3 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$40 100843a3 f main.cpp.obj - 0001:000833ab __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$41 100843ab f main.cpp.obj - 0001:000833b6 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$8 100843b6 f main.cpp.obj - 0001:000833be __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$9 100843be f main.cpp.obj - 0001:000833c6 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$10 100843c6 f main.cpp.obj - 0001:000833d6 __ehhandler$??0SuspendedProcess@hadesmem@@QAE@KK@Z 100843d6 f main.cpp.obj - 0001:00083400 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$3 10084400 f main.cpp.obj - 0001:00083400 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$0 10084400 f main.cpp.obj - 0001:00083400 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$0 10084400 f main.cpp.obj - 0001:00083400 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$0 10084400 f main.cpp.obj - 0001:00083400 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$0 10084400 f main.cpp.obj - 0001:00083408 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$4 10084408 f main.cpp.obj - 0001:00083408 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$1 10084408 f main.cpp.obj - 0001:00083408 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$1 10084408 f main.cpp.obj - 0001:00083408 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$1 10084408 f main.cpp.obj - 0001:00083408 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$1 10084408 f main.cpp.obj - 0001:00083410 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$5 10084410 f main.cpp.obj - 0001:00083410 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$2 10084410 f main.cpp.obj - 0001:00083410 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$2 10084410 f main.cpp.obj - 0001:00083410 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$2 10084410 f main.cpp.obj - 0001:00083410 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$2 10084410 f main.cpp.obj - 0001:00083418 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$6 10084418 f main.cpp.obj - 0001:00083418 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$3 10084418 f main.cpp.obj - 0001:00083418 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$3 10084418 f main.cpp.obj - 0001:00083418 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$3 10084418 f main.cpp.obj - 0001:00083418 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$3 10084418 f main.cpp.obj - 0001:00083425 __ehhandler$??0Thread@hadesmem@@QAE@K@Z 10084425 f main.cpp.obj - 0001:00083425 __ehhandler$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z 10084425 f main.cpp.obj - 0001:00083425 __ehhandler$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z 10084425 f main.cpp.obj - 0001:00083425 __ehhandler$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 10084425 f main.cpp.obj - 0001:00083425 __ehhandler$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 10084425 f main.cpp.obj - 0001:00083450 __unwindfunclet$??0error_info_container_impl@exception_detail@boost@@QAE@XZ$0 10084450 f main.cpp.obj - 0001:0008345d __ehhandler$??0error_info_container_impl@exception_detail@boost@@QAE@XZ 1008445d f main.cpp.obj - 0001:00083480 __unwindfunclet$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z$0 10084480 f main.cpp.obj - 0001:0008348d __ehhandler$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z 1008448d f main.cpp.obj - 0001:000834b0 __ehhandler$??1CDataStore@Nampower@@UAE@XZ 100844b0 f main.cpp.obj - 0001:000834b0 __ehhandler$??1_Sentry_base@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 100844b0 f main.cpp.obj - 0001:000834d0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$2 100844d0 f main.cpp.obj - 0001:000834d8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$3 100844d8 f main.cpp.obj - 0001:000834e5 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 100844e5 f main.cpp.obj - 0001:00083510 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$2 10084510 f main.cpp.obj - 0001:00083510 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$2 10084510 f main.cpp.obj - 0001:00083518 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$3 10084518 f main.cpp.obj - 0001:00083518 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$3 10084518 f main.cpp.obj - 0001:00083525 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 10084525 f main.cpp.obj - 0001:00083525 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 10084525 f main.cpp.obj - 0001:00083550 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$2 10084550 f main.cpp.obj - 0001:00083558 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$3 10084558 f main.cpp.obj - 0001:00083565 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 10084565 f main.cpp.obj - 0001:00083590 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$2 10084590 f main.cpp.obj - 0001:00083598 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$3 10084598 f main.cpp.obj - 0001:000835a5 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 100845a5 f main.cpp.obj - 0001:000835d0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$2 100845d0 f main.cpp.obj - 0001:000835d8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$3 100845d8 f main.cpp.obj - 0001:000835e5 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 100845e5 f main.cpp.obj - 0001:00083610 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$2 10084610 f main.cpp.obj - 0001:00083618 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$3 10084618 f main.cpp.obj - 0001:00083625 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 10084625 f main.cpp.obj - 0001:00083650 __unwindfunclet$??R@@QBE@XZ$0 10084650 f main.cpp.obj - 0001:00083658 __unwindfunclet$??R@@QBE@XZ$2 10084658 f main.cpp.obj - 0001:00083667 __unwindfunclet$??R@@QBE@XZ$3 10084667 f main.cpp.obj - 0001:00083685 __ehhandler$??R@@QBE@XZ 10084685 f main.cpp.obj - 0001:000836b0 __unwindfunclet$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ$1 100846b0 f main.cpp.obj - 0001:000836b0 __unwindfunclet$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ$1 100846b0 f main.cpp.obj - 0001:000836bd __ehhandler$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100846bd f main.cpp.obj - 0001:000836bd __ehhandler$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 100846bd f main.cpp.obj - 0001:000836f0 __unwindfunclet$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z$2 100846f0 f main.cpp.obj - 0001:00083704 __ehhandler$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z 10084704 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:00083730 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$12 10084730 f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:0008373b __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$1 1008473b f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:00083746 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$14 10084746 f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:0008374e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$3 1008474e f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:00083756 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$4 10084756 f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:0008375e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$5 1008475e f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083769 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$7 10084769 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083771 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$8 10084771 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083779 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$9 10084779 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:00083789 __ehhandler$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10084789 f main.cpp.obj - 0001:000837c0 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$2 100847c0 f main.cpp.obj - 0001:000837cd __ehhandler$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 100847cd f main.cpp.obj - 0001:00083800 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$2 10084800 f main.cpp.obj - 0001:00083808 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$3 10084808 f main.cpp.obj - 0001:00083810 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$4 10084810 f main.cpp.obj - 0001:00083818 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$5 10084818 f main.cpp.obj - 0001:00083820 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$6 10084820 f main.cpp.obj - 0001:00083830 __ehhandler$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 10084830 f main.cpp.obj - 0001:00083860 __unwindfunclet$?CleanupUnchecked@Process@hadesmem@@AAEXXZ$2 10084860 f main.cpp.obj - 0001:0008386d __ehhandler$?CleanupUnchecked@Process@hadesmem@@AAEXXZ 1008486d f main.cpp.obj - 0001:000838a0 __unwindfunclet$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ$2 100848a0 f main.cpp.obj - 0001:000838ad __ehhandler$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 100848ad f main.cpp.obj - 0001:000838e0 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$0 100848e0 f main.cpp.obj - 0001:000838f9 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$1 100848f9 f main.cpp.obj - 0001:00083901 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$2 10084901 f main.cpp.obj - 0001:00083909 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$3 10084909 f main.cpp.obj - 0001:00083911 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$4 10084911 f main.cpp.obj - 0001:0008391e __ehhandler$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z 1008491e f main.cpp.obj - 0001:00083950 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$0 10084950 f main.cpp.obj - 0001:00083958 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$1 10084958 f main.cpp.obj - 0001:00083960 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$2 10084960 f main.cpp.obj - 0001:00083968 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$3 10084968 f main.cpp.obj - 0001:00083975 __ehhandler$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z 10084975 f main.cpp.obj - 0001:000839a0 __unwindfunclet$?GetUnitGuidFromString@Nampower@@YA_KPBD@Z$0 100849a0 f helper.cpp.obj - 0001:000839a0 __unwindfunclet$?DoesItemMatch@Nampower@@YA_NIIPBD@Z$0 100849a0 f items.cpp.obj - 0001:000839a0 __unwindfunclet$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z$0 100849a0 f main.cpp.obj - 0001:000839a0 __unwindfunclet$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z$0 100849a0 f spell_scripts.cpp.obj - 0001:000839a0 __unwindfunclet$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z$0 100849a0 f spellcast.cpp.obj - 0001:000839ad __ehhandler$?GetUnitGuidFromString@Nampower@@YA_KPBD@Z 100849ad f helper.cpp.obj - 0001:000839ad __ehhandler$?DoesItemMatch@Nampower@@YA_NIIPBD@Z 100849ad f items.cpp.obj - 0001:000839ad __ehhandler$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z 100849ad f main.cpp.obj - 0001:000839ad __ehhandler$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 100849ad f spell_scripts.cpp.obj - 0001:000839ad __ehhandler$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 100849ad f spellcast.cpp.obj - 0001:000839e0 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$2 100849e0 f main.cpp.obj - 0001:000839e8 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$3 100849e8 f main.cpp.obj - 0001:000839f0 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$4 100849f0 f main.cpp.obj - 0001:000839f8 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$5 100849f8 f main.cpp.obj - 0001:00083a00 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$6 10084a00 f main.cpp.obj - 0001:00083a10 __ehhandler$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 10084a10 f main.cpp.obj - 0001:00083a40 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$2 10084a40 f main.cpp.obj - 0001:00083a59 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$3 10084a59 f main.cpp.obj - 0001:00083a64 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$0 10084a64 f main.cpp.obj - 0001:00083a74 __ehhandler$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 10084a74 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$0 10084aa0 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083aa8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$1 10084aa8 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083ab0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$2 10084ab0 f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083abd __ehhandler$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ 10084abd f main.cpp.obj - 0001:00083af0 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$0 10084af0 f main.cpp.obj - 0001:00083af8 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$1 10084af8 f main.cpp.obj - 0001:00083b00 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$2 10084b00 f main.cpp.obj - 0001:00083b0b __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$3 10084b0b f main.cpp.obj - 0001:00083b13 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$4 10084b13 f main.cpp.obj - 0001:00083b1b __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$5 10084b1b f main.cpp.obj - 0001:00083b23 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$6 10084b23 f main.cpp.obj - 0001:00083b33 __ehhandler$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z 10084b33 f main.cpp.obj - 0001:00083b60 __unwindfunclet$?LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z$0 10084b60 f main.cpp.obj - 0001:00083b70 __ehhandler$?LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 10084b70 f main.cpp.obj - 0001:00083ba0 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$1 10084ba0 f main.cpp.obj - 0001:00083bab __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$0 10084bab f main.cpp.obj - 0001:00083bb6 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$2 10084bb6 f main.cpp.obj - 0001:00083bbe __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$3 10084bbe f main.cpp.obj - 0001:00083bc9 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$4 10084bc9 f main.cpp.obj - 0001:00083bd1 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$5 10084bd1 f main.cpp.obj - 0001:00083bdc __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$6 10084bdc f main.cpp.obj - 0001:00083be4 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$7 10084be4 f main.cpp.obj - 0001:00083bef __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$8 10084bef f main.cpp.obj - 0001:00083bf7 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$9 10084bf7 f main.cpp.obj - 0001:00083c07 __ehhandler$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 10084c07 f main.cpp.obj - 0001:00083c40 __unwindfunclet$?CacheItemNameToId@Nampower@@YAXPBDI@Z$0 10084c40 f items.cpp.obj - 0001:00083c40 __unwindfunclet$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z$0 10084c40 f main.cpp.obj - 0001:00083c40 __unwindfunclet$?addCustomEvent@Nampower@@YAXIPAD@Z$0 10084c40 f main.cpp.obj - 0001:00083c40 __unwindfunclet$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z$0 10084c40 f spell_scripts.cpp.obj - 0001:00083c40 __unwindfunclet$?TriggerQuickcast@Nampower@@YAXXZ$0 10084c40 f spellcast.cpp.obj - 0001:00083c4d __ehhandler$?CacheItemNameToId@Nampower@@YAXPBDI@Z 10084c4d f items.cpp.obj - 0001:00083c4d __ehhandler$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z 10084c4d f main.cpp.obj - 0001:00083c4d __ehhandler$?addCustomEvent@Nampower@@YAXIPAD@Z 10084c4d f main.cpp.obj - 0001:00083c4d __ehhandler$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 10084c4d f spell_scripts.cpp.obj - 0001:00083c4d __ehhandler$?TriggerQuickcast@Nampower@@YAXXZ 10084c4d f spellcast.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c80 __unwindfunclet$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$0 10084c80 f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083c8d __ehhandler$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10084c8d f main.cpp.obj - 0001:00083cb0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10084cb0 f main.cpp.obj - 0001:00083cbd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084cbd f main.cpp.obj - 0001:00083cf0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$2 10084cf0 f main.cpp.obj - 0001:00083cfd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10084cfd f main.cpp.obj - 0001:00083d30 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10084d30 f main.cpp.obj - 0001:00083d3d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084d3d f main.cpp.obj - 0001:00083d70 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$2 10084d70 f main.cpp.obj - 0001:00083d7d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10084d7d f main.cpp.obj - 0001:00083db0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$2 10084db0 f main.cpp.obj - 0001:00083dbd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10084dbd f main.cpp.obj - 0001:00083df0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$2 10084df0 f main.cpp.obj - 0001:00083dfd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ 10084dfd f main.cpp.obj - 0001:00083e30 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$2 10084e30 f main.cpp.obj - 0001:00083e3d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10084e3d f main.cpp.obj - 0001:00083e70 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$2 10084e70 f main.cpp.obj - 0001:00083e7d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10084e7d f main.cpp.obj - 0001:00083eb0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$2 10084eb0 f main.cpp.obj - 0001:00083ebd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10084ebd f main.cpp.obj - 0001:00083ef0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$2 10084ef0 f main.cpp.obj - 0001:00083efd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10084efd f main.cpp.obj - 0001:00083f30 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$2 10084f30 f main.cpp.obj - 0001:00083f3d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 10084f3d f main.cpp.obj - 0001:00083f70 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$2 10084f70 f main.cpp.obj - 0001:00083f7d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 10084f7d f main.cpp.obj - 0001:00083fb0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$2 10084fb0 f main.cpp.obj - 0001:00083fbd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 10084fbd f main.cpp.obj - 0001:00083ff0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$2 10084ff0 f main.cpp.obj - 0001:00083ffd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 10084ffd f main.cpp.obj - 0001:00084030 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$2 10085030 f main.cpp.obj - 0001:0008403d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 1008503d f main.cpp.obj - 0001:00084070 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$2 10085070 f main.cpp.obj - 0001:0008407d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 1008507d f main.cpp.obj - 0001:000840b0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$2 100850b0 f main.cpp.obj - 0001:000840bd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100850bd f main.cpp.obj - 0001:000840f0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$2 100850f0 f main.cpp.obj - 0001:000840fd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100850fd f main.cpp.obj - 0001:00084130 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$2 10085130 f main.cpp.obj - 0001:0008413d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 1008513d f main.cpp.obj - 0001:00084170 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10085170 f main.cpp.obj - 0001:0008417d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1008517d f main.cpp.obj - 0001:000841b0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$2 100851b0 f main.cpp.obj - 0001:000841bd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100851bd f main.cpp.obj - 0001:000841f0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 100851f0 f main.cpp.obj - 0001:000841fd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100851fd f main.cpp.obj - 0001:00084230 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$2 10085230 f main.cpp.obj - 0001:0008423d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 1008523d f main.cpp.obj - 0001:00084270 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$2 10085270 f main.cpp.obj - 0001:0008427d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 1008527d f main.cpp.obj - 0001:000842b0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$2 100852b0 f main.cpp.obj - 0001:000842bd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100852bd f main.cpp.obj - 0001:000842f0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$2 100852f0 f main.cpp.obj - 0001:000842fd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100852fd f main.cpp.obj - 0001:00084330 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$2 10085330 f main.cpp.obj - 0001:0008433d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 1008533d f main.cpp.obj - 0001:00084370 __unwindfunclet$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$3 10085370 f main.cpp.obj - 0001:00084378 __unwindfunclet$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$2 10085378 f main.cpp.obj - 0001:00084385 __ehhandler$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 10085385 f main.cpp.obj - 0001:000843b0 __unwindfunclet$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ$2 100853b0 f main.cpp.obj - 0001:000843bd __ehhandler$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 100853bd f main.cpp.obj - 0001:000843f0 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$2 100853f0 f main.cpp.obj - 0001:000843f8 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$3 100853f8 f main.cpp.obj - 0001:00084400 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$4 10085400 f main.cpp.obj - 0001:00084408 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$5 10085408 f main.cpp.obj - 0001:00084410 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$6 10085410 f main.cpp.obj - 0001:00084420 __ehhandler$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 10085420 f main.cpp.obj - 0001:00084450 __unwindfunclet$?SetSelectionTarget@Nampower@@YAX_K@Z$0 10085450 f main.cpp.obj - 0001:0008445d __ehhandler$?SetSelectionTarget@Nampower@@YAX_K@Z 1008545d f main.cpp.obj - 0001:00084480 __unwindfunclet$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z$0 10085480 f main.cpp.obj - 0001:00084480 __unwindfunclet$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ$0 10085480 f main.cpp.obj - 0001:00084480 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ$0 10085480 f main.cpp.obj - 0001:0008448d __ehhandler$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z 1008548d f main.cpp.obj - 0001:0008448d __ehhandler$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ 1008548d f main.cpp.obj - 0001:0008448d __ehhandler$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ 1008548d f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIHPAI0@Z@detail@hadesmem@@SIIHPAI0@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z$0 100854b0 f main.cpp.obj - 0001:000844b0 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z$0 100854b0 f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IIHPAI0@Z@detail@hadesmem@@SIIHPAI0@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z 100854bd f main.cpp.obj - 0001:000844bd __ehhandler$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z 100854bd f main.cpp.obj - 0001:000844e0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z$0 100854e0 f main.cpp.obj - 0001:000844e0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z$0 100854e0 f main.cpp.obj - 0001:000844e0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z$0 100854e0 f main.cpp.obj - 0001:000844e0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z$0 100854e0 f main.cpp.obj - 0001:000844e0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z$0 100854e0 f main.cpp.obj - 0001:000844ed __ehhandler$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z 100854ed f main.cpp.obj - 0001:000844ed __ehhandler$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z 100854ed f main.cpp.obj - 0001:000844ed __ehhandler$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z 100854ed f main.cpp.obj - 0001:000844ed __ehhandler$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z 100854ed f main.cpp.obj - 0001:000844ed __ehhandler$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z 100854ed f main.cpp.obj - 0001:00084510 __unwindfunclet$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z$0 10085510 f main.cpp.obj - 0001:00084510 __unwindfunclet$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z$0 10085510 f main.cpp.obj - 0001:0008451d __ehhandler$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z 1008551d f main.cpp.obj - 0001:0008451d __ehhandler$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z 1008551d f main.cpp.obj - 0001:00084540 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z$0 10085540 f main.cpp.obj - 0001:00084540 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z$0 10085540 f main.cpp.obj - 0001:0008454d __ehhandler$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z 1008554d f main.cpp.obj - 0001:0008454d __ehhandler$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z 1008554d f main.cpp.obj - 0001:00084570 __unwindfunclet$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z$0 10085570 f main.cpp.obj - 0001:0008457d __ehhandler$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z 1008557d f main.cpp.obj - 0001:000845a0 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$2 100855a0 f main.cpp.obj - 0001:000845a8 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$3 100855a8 f main.cpp.obj - 0001:000845b0 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$4 100855b0 f main.cpp.obj - 0001:000845b8 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$5 100855b8 f main.cpp.obj - 0001:000845c5 __ehhandler$?SuspendThread@hadesmem@@YAKABVThread@1@@Z 100855c5 f main.cpp.obj - 0001:000845f0 __unwindfunclet$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z$0 100855f0 f main.cpp.obj - 0001:000845fd __ehhandler$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 100855fd f main.cpp.obj - 0001:00084620 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$0 10085620 f main.cpp.obj - 0001:00084628 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$1 10085628 f main.cpp.obj - 0001:00084630 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$7 10085630 f main.cpp.obj - 0001:00084638 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$2 10085638 f main.cpp.obj - 0001:00084640 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$3 10085640 f main.cpp.obj - 0001:00084648 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$4 10085648 f main.cpp.obj - 0001:00084658 __ehhandler$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z 10085658 f main.cpp.obj - 0001:00084690 __unwindfunclet$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z$0 10085690 f main.cpp.obj - 0001:0008469d __ehhandler$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 1008569d f main.cpp.obj - 0001:000846d0 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$0 100856d0 f main.cpp.obj - 0001:000846db __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$2 100856db f main.cpp.obj - 0001:000846e3 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$3 100856e3 f main.cpp.obj - 0001:000846ee __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$4 100856ee f main.cpp.obj - 0001:000846f6 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$5 100856f6 f main.cpp.obj - 0001:00084701 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$6 10085701 f main.cpp.obj - 0001:00084709 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$7 10085709 f main.cpp.obj - 0001:00084714 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$8 10085714 f main.cpp.obj - 0001:0008471c __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$9 1008571c f main.cpp.obj - 0001:0008472c __ehhandler$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 1008572c f main.cpp.obj - 0001:00084760 __unwindfunclet$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z$0 10085760 f main.cpp.obj - 0001:0008476d __ehhandler$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 1008576d f main.cpp.obj - 0001:000847a0 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$0 100857a0 f main.cpp.obj - 0001:000847af __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$1 100857af f main.cpp.obj - 0001:000847c8 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$2 100857c8 f main.cpp.obj - 0001:000847d0 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$4 100857d0 f main.cpp.obj - 0001:000847dd __ehhandler$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z 100857dd f main.cpp.obj - 0001:00084800 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$0 10085800 f main.cpp.obj - 0001:00084808 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$1 10085808 f main.cpp.obj - 0001:00084810 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$2 10085810 f main.cpp.obj - 0001:00084818 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$3 10085818 f main.cpp.obj - 0001:00084825 __ehhandler$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z 10085825 f main.cpp.obj - 0001:00084850 __ehhandler$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 10085850 f main.cpp.obj - 0001:00084870 __ehhandler$?begin@ThreadList@hadesmem@@QAE?AV?$ThreadIterator@VThreadEntry@hadesmem@@@2@XZ 10085870 f main.cpp.obj - 0001:000848a0 __unwindfunclet$?checkForStopChanneling@Nampower@@YAXXZ$0 100858a0 f main.cpp.obj - 0001:000848a8 __unwindfunclet$?checkForStopChanneling@Nampower@@YAXXZ$1 100858a8 f main.cpp.obj - 0001:000848b5 __ehhandler$?checkForStopChanneling@Nampower@@YAXXZ 100858b5 f main.cpp.obj - 0001:000848e0 __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$0 100858e0 f main.cpp.obj - 0001:000848ef __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$1 100858ef f main.cpp.obj - 0001:0008490b __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$2 1008590b f main.cpp.obj - 0001:00084918 __ehhandler$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10085918 f main.cpp.obj - 0001:00084940 __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$0 10085940 f main.cpp.obj - 0001:0008494f __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$1 1008594f f main.cpp.obj - 0001:0008496b __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$2 1008596b f main.cpp.obj - 0001:00084978 __ehhandler$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10085978 f main.cpp.obj - 0001:000849a0 __unwindfunclet$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ$0 100859a0 f main.cpp.obj - 0001:000849af __unwindfunclet$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ$1 100859af f main.cpp.obj - 0001:000849bc __ehhandler$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 100859bc f main.cpp.obj - 0001:000849e0 __unwindfunclet$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ$0 100859e0 f main.cpp.obj - 0001:000849ef __unwindfunclet$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ$1 100859ef f main.cpp.obj - 0001:000849fc __ehhandler$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ 100859fc f main.cpp.obj - 0001:00084a20 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$0 10085a20 f main.cpp.obj - 0001:00084a39 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$1 10085a39 f main.cpp.obj - 0001:00084a48 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$4 10085a48 f main.cpp.obj - 0001:00084a50 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$2 10085a50 f main.cpp.obj - 0001:00084a58 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$3 10085a58 f main.cpp.obj - 0001:00084a60 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$11 10085a60 f main.cpp.obj - 0001:00084a6d __ehhandler$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ 10085a6d f main.cpp.obj - 0001:00084a90 __unwindfunclet$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z$0 10085a90 f main.cpp.obj - 0001:00084a98 __unwindfunclet$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z$1 10085a98 f main.cpp.obj - 0001:00084aa5 __ehhandler$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z 10085aa5 f main.cpp.obj - 0001:00084ad0 __unwindfunclet$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z$0 10085ad0 f main.cpp.obj - 0001:00084adb __unwindfunclet$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z$1 10085adb f main.cpp.obj - 0001:00084ae8 __ehhandler$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z 10085ae8 f main.cpp.obj - 0001:00084b20 __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$1 10085b20 f main.cpp.obj - 0001:00084b2b __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$2 10085b2b f main.cpp.obj - 0001:00084b33 __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$3 10085b33 f main.cpp.obj - 0001:00084b3b __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$4 10085b3b f main.cpp.obj - 0001:00084b48 __ehhandler$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z 10085b48 f main.cpp.obj - 0001:00084b80 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z$0 10085b80 f main.cpp.obj - 0001:00084b80 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z$0 10085b80 f main.cpp.obj - 0001:00084b8d __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z 10085b8d f main.cpp.obj - 0001:00084b8d __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z 10085b8d f main.cpp.obj - 0001:00084bc0 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z$0 10085bc0 f main.cpp.obj - 0001:00084bc8 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z$1 10085bc8 f main.cpp.obj - 0001:00084bd5 __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z 10085bd5 f main.cpp.obj - 0001:00084c00 __unwindfunclet$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z$0 10085c00 f main.cpp.obj - 0001:00084c0d __ehhandler$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z 10085c0d f main.cpp.obj - 0001:00084c40 __unwindfunclet$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ$2 10085c40 f main.cpp.obj - 0001:00084c4d __ehhandler$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 10085c4d f main.cpp.obj - 0001:00084c70 __unwindfunclet$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z$2 10085c70 f main.cpp.obj - 0001:00084c84 __ehhandler$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 10085c84 f main.cpp.obj - 0001:00084cb0 __unwindfunclet$?initHooks@Nampower@@YAXXZ$0 10085cb0 f main.cpp.obj - 0001:00084cb8 __unwindfunclet$?initHooks@Nampower@@YAXXZ$1 10085cb8 f main.cpp.obj - 0001:00084cc0 __unwindfunclet$?initHooks@Nampower@@YAXXZ$42 10085cc0 f main.cpp.obj - 0001:00084ccd __ehhandler$?initHooks@Nampower@@YAXXZ 10085ccd f main.cpp.obj - 0001:00084d00 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$0 10085d00 f main.cpp.obj - 0001:00084d0b __unwindfunclet$?loadConfig@Nampower@@YAXXZ$1 10085d0b f main.cpp.obj - 0001:00084d16 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$2 10085d16 f main.cpp.obj - 0001:00084d21 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$3 10085d21 f main.cpp.obj - 0001:00084d2c __unwindfunclet$?loadConfig@Nampower@@YAXXZ$4 10085d2c f main.cpp.obj - 0001:00084d37 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$5 10085d37 f main.cpp.obj - 0001:00084d42 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$6 10085d42 f main.cpp.obj - 0001:00084d4d __unwindfunclet$?loadConfig@Nampower@@YAXXZ$7 10085d4d f main.cpp.obj - 0001:00084d58 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$8 10085d58 f main.cpp.obj - 0001:00084d63 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$9 10085d63 f main.cpp.obj - 0001:00084d6e __unwindfunclet$?loadConfig@Nampower@@YAXXZ$10 10085d6e f main.cpp.obj - 0001:00084d79 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$11 10085d79 f main.cpp.obj - 0001:00084d89 __ehhandler$?loadConfig@Nampower@@YAXXZ 10085d89 f main.cpp.obj - 0001:00084dc0 __unwindfunclet$?loadUserVar@Nampower@@YAXPBD@Z$0 10085dc0 f main.cpp.obj - 0001:00084dc8 __unwindfunclet$?loadUserVar@Nampower@@YAXPBD@Z$1 10085dc8 f main.cpp.obj - 0001:00084dd5 __ehhandler$?loadUserVar@Nampower@@YAXPBD@Z 10085dd5 f main.cpp.obj - 0001:00084e00 __unwindfunclet$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z$0 10085e00 f main.cpp.obj - 0001:00084e0d __ehhandler$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z 10085e0d f main.cpp.obj - 0001:00084e30 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$0 10085e30 f main.cpp.obj - 0001:00084e38 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$1 10085e38 f main.cpp.obj - 0001:00084e40 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$2 10085e40 f main.cpp.obj - 0001:00084e4d __ehhandler$?processQueues@Nampower@@YA_NXZ 10085e4d f main.cpp.obj - 0001:00084e80 __unwindfunclet$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z$2 10085e80 f main.cpp.obj - 0001:00084e8d __ehhandler$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 10085e8d f main.cpp.obj - 0001:00084eb0 __unwindfunclet$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z$0 10085eb0 f main.cpp.obj - 0001:00084ebd __ehhandler$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z 10085ebd f main.cpp.obj - 0001:00084ee0 __unwindfunclet$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z$2 10085ee0 f main.cpp.obj - 0001:00084eed __ehhandler$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 10085eed f main.cpp.obj - 0001:00084f10 __unwindfunclet$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ$0 10085f10 f main.cpp.obj - 0001:00084f2e __ehhandler$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 10085f2e f main.cpp.obj - 0001:00084f50 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$0 10085f50 f main.cpp.obj - 0001:00084f58 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$1 10085f58 f main.cpp.obj - 0001:00084f60 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$2 10085f60 f main.cpp.obj - 0001:00084f68 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$3 10085f68 f main.cpp.obj - 0001:00084f70 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$4 10085f70 f main.cpp.obj - 0001:00084f78 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$5 10085f78 f main.cpp.obj - 0001:00084f80 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$6 10085f80 f main.cpp.obj - 0001:00084f88 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$7 10085f88 f main.cpp.obj - 0001:00084f90 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$8 10085f90 f main.cpp.obj - 0001:00084f98 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$9 10085f98 f main.cpp.obj - 0001:00084fa0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$10 10085fa0 f main.cpp.obj - 0001:00084fa8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$11 10085fa8 f main.cpp.obj - 0001:00084fb0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$12 10085fb0 f main.cpp.obj - 0001:00084fb8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$13 10085fb8 f main.cpp.obj - 0001:00084fc0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$14 10085fc0 f main.cpp.obj - 0001:00084fc8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$15 10085fc8 f main.cpp.obj - 0001:00084fd0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$16 10085fd0 f main.cpp.obj - 0001:00084fd8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$17 10085fd8 f main.cpp.obj - 0001:00084fe0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$18 10085fe0 f main.cpp.obj - 0001:00084fe8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$19 10085fe8 f main.cpp.obj - 0001:00084ff0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$20 10085ff0 f main.cpp.obj - 0001:00084ff8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$21 10085ff8 f main.cpp.obj - 0001:00085000 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$22 10086000 f main.cpp.obj - 0001:00085008 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$23 10086008 f main.cpp.obj - 0001:00085010 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$24 10086010 f main.cpp.obj - 0001:00085018 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$25 10086018 f main.cpp.obj - 0001:00085020 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$26 10086020 f main.cpp.obj - 0001:00085028 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$27 10086028 f main.cpp.obj - 0001:00085030 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$28 10086030 f main.cpp.obj - 0001:00085038 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$29 10086038 f main.cpp.obj - 0001:00085040 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$30 10086040 f main.cpp.obj - 0001:00085048 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$31 10086048 f main.cpp.obj - 0001:00085050 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$32 10086050 f main.cpp.obj - 0001:00085058 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$33 10086058 f main.cpp.obj - 0001:00085065 __ehhandler$?updateFromCvar@Nampower@@YAXPBD0@Z 10086065 f main.cpp.obj - 0001:00085090 __unwindfunclet$_Load$4 10086090 f main.cpp.obj - 0001:00085098 __unwindfunclet$_Load$3 10086098 f main.cpp.obj - 0001:000850a5 __ehhandler$_Load 100860a5 f main.cpp.obj - 0001:000850d0 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 100860d0 f helper.cpp.obj - 0001:000850d8 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 100860d8 f helper.cpp.obj - 0001:000850e5 __ehhandler$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100860e5 f helper.cpp.obj - 0001:00085110 __unwindfunclet$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z$1 10086110 f helper.cpp.obj - 0001:00085118 __unwindfunclet$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z$0 10086118 f helper.cpp.obj - 0001:00085125 __ehhandler$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z 10086125 f helper.cpp.obj - 0001:00085150 __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$0 10086150 f helper.cpp.obj - 0001:0008515c __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$2 1008615c f helper.cpp.obj - 0001:00085166 __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$3 10086166 f helper.cpp.obj - 0001:00085175 __ehhandler$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z 10086175 f helper.cpp.obj - 0001:000851a0 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z$1 100861a0 f helper.cpp.obj - 0001:000851a8 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z$3 100861a8 f helper.cpp.obj - 0001:000851b0 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z$0 100861b0 f helper.cpp.obj - 0001:000851bc __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z$9 100861bc f helper.cpp.obj - 0001:000851c6 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z$10 100861c6 f helper.cpp.obj - 0001:000851d5 __ehhandler$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z 100861d5 f helper.cpp.obj - 0001:00085200 __unwindfunclet$?GetUnitGuidFromLuaParam@Nampower@@YA_KPAIH@Z$0 10086200 f helper.cpp.obj - 0001:00085200 __unwindfunclet$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z$0 10086200 f spellcast.cpp.obj - 0001:00085200 __unwindfunclet$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z$0 10086200 f spellcast.cpp.obj - 0001:00085200 __unwindfunclet$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z$0 10086200 f spellevents.cpp.obj - 0001:0008520d __ehhandler$?GetUnitGuidFromLuaParam@Nampower@@YA_KPAIH@Z 1008620d f helper.cpp.obj - 0001:0008520d __ehhandler$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z 1008620d f spellcast.cpp.obj - 0001:0008520d __ehhandler$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z 1008620d f spellcast.cpp.obj - 0001:0008520d __ehhandler$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1008620d f spellevents.cpp.obj - 0001:00085240 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$2 10086240 f spellcast.cpp.obj - 0001:00085248 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$3 10086248 f spellcast.cpp.obj - 0001:00085255 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 10086255 f spellcast.cpp.obj - 0001:00085280 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$0 10086280 f spellcast.cpp.obj - 0001:00085288 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$4 10086288 f spellcast.cpp.obj - 0001:00085290 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$1 10086290 f spellcast.cpp.obj - 0001:00085298 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$2 10086298 f spellcast.cpp.obj - 0001:000852a0 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$3 100862a0 f spellcast.cpp.obj - 0001:000852ad __ehhandler$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z 100862ad f spellcast.cpp.obj - 0001:000852e0 __unwindfunclet$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z$0 100862e0 f spellcast.cpp.obj - 0001:000852e8 __unwindfunclet$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z$1 100862e8 f spellcast.cpp.obj - 0001:000852f5 __ehhandler$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z 100862f5 f spellcast.cpp.obj - 0001:00085320 __unwindfunclet$?CastQueuedNonGcdSpell@Nampower@@YAXXZ$0 10086320 f spellcast.cpp.obj - 0001:00085328 __unwindfunclet$?CastQueuedNonGcdSpell@Nampower@@YAXXZ$1 10086328 f spellcast.cpp.obj - 0001:00085335 __ehhandler$?CastQueuedNonGcdSpell@Nampower@@YAXXZ 10086335 f spellcast.cpp.obj - 0001:00085360 __unwindfunclet$?CastQueuedNormalSpell@Nampower@@YAXXZ$0 10086360 f spellcast.cpp.obj - 0001:00085368 __unwindfunclet$?CastQueuedNormalSpell@Nampower@@YAXXZ$1 10086368 f spellcast.cpp.obj - 0001:00085375 __ehhandler$?CastQueuedNormalSpell@Nampower@@YAXXZ 10086375 f spellcast.cpp.obj - 0001:000853a0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$0 100863a0 f spellcast.cpp.obj - 0001:000853a8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$1 100863a8 f spellcast.cpp.obj - 0001:000853b0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$2 100863b0 f spellcast.cpp.obj - 0001:000853b8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$3 100863b8 f spellcast.cpp.obj - 0001:000853c0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$4 100863c0 f spellcast.cpp.obj - 0001:000853c8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$6 100863c8 f spellcast.cpp.obj - 0001:000853d0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$5 100863d0 f spellcast.cpp.obj - 0001:000853d8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$7 100863d8 f spellcast.cpp.obj - 0001:000853e0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$8 100863e0 f spellcast.cpp.obj - 0001:000853e8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$9 100863e8 f spellcast.cpp.obj - 0001:000853f0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$10 100863f0 f spellcast.cpp.obj - 0001:000853f8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$11 100863f8 f spellcast.cpp.obj - 0001:00085400 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$12 10086400 f spellcast.cpp.obj - 0001:00085408 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$13 10086408 f spellcast.cpp.obj - 0001:00085410 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$17 10086410 f spellcast.cpp.obj - 0001:00085418 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$14 10086418 f spellcast.cpp.obj - 0001:00085420 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$15 10086420 f spellcast.cpp.obj - 0001:00085428 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$16 10086428 f spellcast.cpp.obj - 0001:00085430 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$18 10086430 f spellcast.cpp.obj - 0001:00085438 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$19 10086438 f spellcast.cpp.obj - 0001:00085440 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$20 10086440 f spellcast.cpp.obj - 0001:00085448 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$21 10086448 f spellcast.cpp.obj - 0001:00085450 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$22 10086450 f spellcast.cpp.obj - 0001:00085458 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$23 10086458 f spellcast.cpp.obj - 0001:00085465 __ehhandler$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 10086465 f spellcast.cpp.obj - 0001:00085490 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 10086490 f spellchannel.cpp.obj - 0001:00085498 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 10086498 f spellchannel.cpp.obj - 0001:000854a0 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$2 100864a0 f spellchannel.cpp.obj - 0001:000854a8 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$3 100864a8 f spellchannel.cpp.obj - 0001:000854b0 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$4 100864b0 f spellchannel.cpp.obj - 0001:000854b8 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$5 100864b8 f spellchannel.cpp.obj - 0001:000854c5 __ehhandler$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 100864c5 f spellchannel.cpp.obj - 0001:000854f0 __unwindfunclet$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 100864f0 f spellchannel.cpp.obj - 0001:000854f8 __unwindfunclet$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 100864f8 f spellchannel.cpp.obj - 0001:00085505 __ehhandler$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10086505 f spellchannel.cpp.obj - 0001:00085530 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 10086530 f spellevents.cpp.obj - 0001:00085538 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 10086538 f spellevents.cpp.obj - 0001:00085540 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$2 10086540 f spellevents.cpp.obj - 0001:0008554d __ehhandler$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 1008654d f spellevents.cpp.obj - 0001:00085580 __unwindfunclet$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z$1 10086580 f spellevents.cpp.obj - 0001:00085588 __unwindfunclet$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z$0 10086588 f spellevents.cpp.obj - 0001:00085595 __ehhandler$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 10086595 f spellevents.cpp.obj - 0001:000855c0 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$0 100865c0 f spellevents.cpp.obj - 0001:000855c8 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$1 100865c8 f spellevents.cpp.obj - 0001:000855d0 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$2 100865d0 f spellevents.cpp.obj - 0001:000855dd __ehhandler$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 100865dd f spellevents.cpp.obj - 0001:00085610 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$0 10086610 f spellevents.cpp.obj - 0001:00085618 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$13 10086618 f spellevents.cpp.obj - 0001:00085620 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$14 10086620 f spellevents.cpp.obj - 0001:00085628 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$2 10086628 f spellevents.cpp.obj - 0001:00085630 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$1 10086630 f spellevents.cpp.obj - 0001:00085638 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$3 10086638 f spellevents.cpp.obj - 0001:00085640 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$4 10086640 f spellevents.cpp.obj - 0001:00085648 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$5 10086648 f spellevents.cpp.obj - 0001:00085650 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$8 10086650 f spellevents.cpp.obj - 0001:00085658 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$9 10086658 f spellevents.cpp.obj - 0001:00085660 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$7 10086660 f spellevents.cpp.obj - 0001:00085668 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$6 10086668 f spellevents.cpp.obj - 0001:00085670 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$10 10086670 f spellevents.cpp.obj - 0001:00085678 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$11 10086678 f spellevents.cpp.obj - 0001:00085680 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$12 10086680 f spellevents.cpp.obj - 0001:0008568d __ehhandler$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 1008668d f spellevents.cpp.obj - 0001:000856c0 __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$0 100866c0 f spellevents.cpp.obj - 0001:000856cb __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$1 100866cb f spellevents.cpp.obj - 0001:000856d6 __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$2 100866d6 f spellevents.cpp.obj - 0001:000856de __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$3 100866de f spellevents.cpp.obj - 0001:000856eb __ehhandler$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 100866eb f spellevents.cpp.obj - 0001:00085720 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10086720 f misc_scripts.cpp.obj - 0001:00085720 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10086720 f misc_scripts.cpp.obj - 0001:00085720 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10086720 f spell_scripts.cpp.obj - 0001:0008572d __ehhandler$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1008672d f misc_scripts.cpp.obj - 0001:0008572d __ehhandler$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1008672d f misc_scripts.cpp.obj - 0001:0008572d __ehhandler$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1008672d f spell_scripts.cpp.obj - 0001:00085760 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10086760 f dbc_fields.cpp.obj - 0001:00085760 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10086760 f misc_scripts.cpp.obj - 0001:00085768 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10086768 f dbc_fields.cpp.obj - 0001:00085768 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10086768 f misc_scripts.cpp.obj - 0001:00085775 __ehhandler$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10086775 f dbc_fields.cpp.obj - 0001:00085775 __ehhandler$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10086775 f misc_scripts.cpp.obj - 0001:000857a0 __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ$1 100867a0 f items.cpp.obj - 0001:000857a0 __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ$1 100867a0 f misc_scripts.cpp.obj - 0001:000857ab __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ$2 100867ab f items.cpp.obj - 0001:000857ab __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ$2 100867ab f misc_scripts.cpp.obj - 0001:000857bb __ehhandler$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 100867bb f items.cpp.obj - 0001:000857bb __ehhandler$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 100867bb f misc_scripts.cpp.obj - 0001:000857e0 __unwindfunclet$?RunQueuedScript@Nampower@@YA_NH@Z$0 100867e0 f misc_scripts.cpp.obj - 0001:000857e0 __unwindfunclet$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z$0 100867e0 f misc_scripts.cpp.obj - 0001:000857ed __ehhandler$?RunQueuedScript@Nampower@@YA_NH@Z 100867ed f misc_scripts.cpp.obj - 0001:000857ed __ehhandler$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 100867ed f misc_scripts.cpp.obj - 0001:00085820 __unwindfunclet$?Script_DisenchantAll@Nampower@@YAIPAI@Z$0 10086820 f misc_scripts.cpp.obj - 0001:0008582d __ehhandler$?Script_DisenchantAll@Nampower@@YAIPAI@Z 1008682d f misc_scripts.cpp.obj - 0001:00085860 __unwindfunclet$?Script_GetItemStatsField@Nampower@@YAIPAI@Z$2 10086860 f misc_scripts.cpp.obj - 0001:00085860 __unwindfunclet$?Script_GetUnitField@Nampower@@YAIPAI@Z$2 10086860 f misc_scripts.cpp.obj - 0001:00085860 __unwindfunclet$?Script_GetSpellRecField@Nampower@@YAIPAI@Z$2 10086860 f spell_scripts.cpp.obj - 0001:0008586d __ehhandler$?Script_GetItemStatsField@Nampower@@YAIPAI@Z 1008686d f misc_scripts.cpp.obj - 0001:0008586d __ehhandler$?Script_GetUnitField@Nampower@@YAIPAI@Z 1008686d f misc_scripts.cpp.obj - 0001:0008586d __ehhandler$?Script_GetSpellRecField@Nampower@@YAIPAI@Z 1008686d f spell_scripts.cpp.obj - 0001:000858a0 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$0 100868a0 f dbc_fields.cpp.obj - 0001:000858a0 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$0 100868a0 f misc_scripts.cpp.obj - 0001:000858a8 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$1 100868a8 f dbc_fields.cpp.obj - 0001:000858a8 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$1 100868a8 f misc_scripts.cpp.obj - 0001:000858b0 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$2 100868b0 f dbc_fields.cpp.obj - 0001:000858b0 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$2 100868b0 f misc_scripts.cpp.obj - 0001:000858b8 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$3 100868b8 f dbc_fields.cpp.obj - 0001:000858b8 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$3 100868b8 f misc_scripts.cpp.obj - 0001:000858c5 __ehhandler$?InitializeFieldMaps@Nampower@@YAXXZ 100868c5 f dbc_fields.cpp.obj - 0001:000858c5 __ehhandler$?Script_QueueScript@Nampower@@YAIPAI@Z 100868c5 f misc_scripts.cpp.obj - 0001:000858f0 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$0 100868f0 f misc_scripts.cpp.obj - 0001:000858f8 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$1 100868f8 f misc_scripts.cpp.obj - 0001:00085900 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$3 10086900 f misc_scripts.cpp.obj - 0001:00085908 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$4 10086908 f misc_scripts.cpp.obj - 0001:00085910 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$2 10086910 f misc_scripts.cpp.obj - 0001:0008591d __ehhandler$?TryDisenchant@Nampower@@YA_NXZ 1008691d f misc_scripts.cpp.obj - 0001:00085950 __unwindfunclet$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z$0 10086950 f spell_scripts.cpp.obj - 0001:00085950 __unwindfunclet$?Script_QueueSpellByName@Nampower@@YAIPAI@Z$0 10086950 f spell_scripts.cpp.obj - 0001:0008595d __ehhandler$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 1008695d f spell_scripts.cpp.obj - 0001:0008595d __ehhandler$?Script_QueueSpellByName@Nampower@@YAIPAI@Z 1008695d f spell_scripts.cpp.obj - 0001:00085990 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$1 10086990 f spell_scripts.cpp.obj - 0001:00085998 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$4 10086998 f spell_scripts.cpp.obj - 0001:000859a0 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$0 100869a0 f spell_scripts.cpp.obj - 0001:000859ad __ehhandler$?Script_IsSpellInRange@Nampower@@YAIPAI@Z 100869ad f spell_scripts.cpp.obj - 0001:000859e0 __unwindfunclet$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z$0 100869e0 f item_scripts.cpp.obj - 0001:000859e8 __unwindfunclet$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z$1 100869e8 f item_scripts.cpp.obj - 0001:000859f5 __ehhandler$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 100869f5 f item_scripts.cpp.obj - 0001:00085a20 __unwindfunclet$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z$1 10086a20 f items.cpp.obj - 0001:00085a28 __unwindfunclet$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z$0 10086a28 f items.cpp.obj - 0001:00085a35 __ehhandler$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 10086a35 f items.cpp.obj - 0001:00085a60 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10086a60 f items.cpp.obj - 0001:00085a68 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10086a68 f items.cpp.obj - 0001:00085a75 __ehhandler$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10086a75 f items.cpp.obj - 0001:00085aa0 __unwindfunclet$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z$1 10086aa0 f items.cpp.obj - 0001:00085aa8 __unwindfunclet$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z$0 10086aa8 f items.cpp.obj - 0001:00085ab5 __ehhandler$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 10086ab5 f items.cpp.obj - 0001:00085ae0 __unwindfunclet$??__EitemNameToIdCache@Nampower@@YAXXZ$1 10086ae0 f items.cpp.obj - 0001:00085aea __unwindfunclet$??__EitemNameToIdCache@Nampower@@YAXXZ$2 10086aea f items.cpp.obj - 0001:00085af9 __ehhandler$??__EitemNameToIdCache@Nampower@@YAXXZ 10086af9 f items.cpp.obj - 0001:00085b20 __unwindfunclet$??__EitemStatsCache@Nampower@@YAXXZ$1 10086b20 f items.cpp.obj - 0001:00085b2a __unwindfunclet$??__EitemStatsCache@Nampower@@YAXXZ$2 10086b2a f items.cpp.obj - 0001:00085b39 __ehhandler$??__EitemStatsCache@Nampower@@YAXXZ 10086b39 f items.cpp.obj - 0001:00085b60 __unwindfunclet$??__EpendingItemIds@Nampower@@YAXXZ$1 10086b60 f items.cpp.obj - 0001:00085b6a __unwindfunclet$??__EpendingItemIds@Nampower@@YAXXZ$2 10086b6a f items.cpp.obj - 0001:00085b79 __ehhandler$??__EpendingItemIds@Nampower@@YAXXZ 10086b79 f items.cpp.obj - 0001:00085ba0 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$0 10086ba0 f items.cpp.obj - 0001:00085ba8 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$1 10086ba8 f items.cpp.obj - 0001:00085bb0 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$2 10086bb0 f items.cpp.obj - 0001:00085bb8 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$3 10086bb8 f items.cpp.obj - 0001:00085bc0 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$4 10086bc0 f items.cpp.obj - 0001:00085bc8 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$5 10086bc8 f items.cpp.obj - 0001:00085bd5 __ehhandler$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 10086bd5 f items.cpp.obj - 0001:00085c00 __unwindfunclet$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z$0 10086c00 f items.cpp.obj - 0001:00085c08 __unwindfunclet$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z$1 10086c08 f items.cpp.obj - 0001:00085c15 __ehhandler$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 10086c15 f items.cpp.obj - 0001:00085c40 __unwindfunclet$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z$0 10086c40 f items.cpp.obj - 0001:00085c5e __ehhandler$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 10086c5e f items.cpp.obj - 0001:00085c80 __unwindfunclet$?InitializeUnitFieldMaps@Nampower@@YAXXZ$0 10086c80 f unit_fields.cpp.obj - 0001:00085c88 __unwindfunclet$?InitializeUnitFieldMaps@Nampower@@YAXXZ$1 10086c88 f unit_fields.cpp.obj - 0001:00085c95 __ehhandler$?InitializeUnitFieldMaps@Nampower@@YAXXZ 10086c95 f unit_fields.cpp.obj - 0001:00085cc0 __unwindfunclet$?CleanupAllLuaTableRefs@Nampower@@YAXXZ$0 10086cc0 f lua_refs.cpp.obj - 0001:00085cc8 __unwindfunclet$?CleanupAllLuaTableRefs@Nampower@@YAXXZ$1 10086cc8 f lua_refs.cpp.obj - 0001:00085cd5 __ehhandler$?CleanupAllLuaTableRefs@Nampower@@YAXXZ 10086cd5 f lua_refs.cpp.obj - 0001:00085cfc __ehhandler$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 10086cfc f libvcruntime:frame.obj - 0001:00085d19 __unwindfunclet$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ$0 10086d19 f libvcruntime:undname.obj - 0001:00085d26 __ehhandler$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 10086d26 f libvcruntime:undname.obj - 0001:00085d43 __ehhandler$?write_double_translated_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDIAAV__crt_cached_ptd_host@@@Z 10086d43 f libucrt:write.obj - 0001:00085d6d __ehhandler$?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 10086d6d f libucrt:exit.obj - 0001:00085d8a __ehhandler$__execute_onexit_table 10086d8a f libucrt:onexit.obj - 0001:00085da7 __ehhandler$___dcrt_uninitialize_environments_nolock 10086da7 f libucrt:environment_initialization.obj - 0001:00085dc4 __ehhandler$?_mbstowcs_l_helper@@YAIPA_WPBDIAAV__crt_cached_ptd_host@@@Z 10086dc4 f libucrt:mbstowcs.obj - 0001:00085de1 __unwindfunclet$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z$0 10086de1 f libcpmt:locale0.obj - 0001:00085dee __ehhandler$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 10086dee f libcpmt:locale0.obj - 0001:00085e10 ??__FdebugLogFile@Nampower@@YAXXZ 10086e10 f logging.cpp.obj - 0001:00085ec0 ??__F?e@?$exception_ptr_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B@@YAXXZ 10086ec0 f main.cpp.obj - 0001:00085f00 ??__F?e@?$exception_ptr_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B@@YAXXZ 10086f00 f main.cpp.obj - 0001:00085f40 ??__Fep@?1???$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ@YAXXZ 10086f40 f main.cpp.obj - 0001:00085f80 ??__Fep@?1???$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ@YAXXZ 10086f80 f main.cpp.obj - 0001:00085fc0 ??__FgAttackRoundInfo_ReadPacketDetour@Nampower@@YAXXZ 10086fc0 f main.cpp.obj - 0001:00085fe0 ??__FgCGActionBar_UseActionDetour@Nampower@@YAXXZ 10086fe0 f main.cpp.obj - 0001:00086000 ??__FgCGBuffBar_UpdateDurationDetour@Nampower@@YAXXZ 10087000 f main.cpp.obj - 0001:00086020 ??__FgCGPlayer_C_OnAttackIconPressedDetour@Nampower@@YAXXZ 10087020 f main.cpp.obj - 0001:00086040 ??__FgCGSpellBook_CastSpellDetour@Nampower@@YAXXZ 10087040 f main.cpp.obj - 0001:00086060 ??__FgCGUnit_C_OnAuraAddedDetour@Nampower@@YAXXZ 10087060 f main.cpp.obj - 0001:00086080 ??__FgCGUnit_C_OnAuraRemovedDetour@Nampower@@YAXXZ 10087080 f main.cpp.obj - 0001:000860a0 ??__FgCGUnit_C_OnAuraStacksChangedDetour@Nampower@@YAXXZ 100870a0 f main.cpp.obj - 0001:000860c0 ??__FgCGWorldFrame_OnLayerTrackTerrainDetour@Nampower@@YAXXZ 100870c0 f main.cpp.obj - 0001:000860e0 ??__FgCSimpleFrame_GetNameDetour@Nampower@@YAXXZ 100870e0 f main.cpp.obj - 0001:00086100 ??__FgCancelSpellDetour@Nampower@@YAXXZ 10087100 f main.cpp.obj - 0001:00086120 ??__FgCastDetour@Nampower@@YAXXZ 10087120 f main.cpp.obj - 0001:00086140 ??__FgCastHistory@Nampower@@YAXXZ 10087140 f main.cpp.obj - 0001:00086150 ??__FgCastResultHandlerDetour@Nampower@@YAXXZ 10087150 f main.cpp.obj - 0001:00086170 ??__FgCastbarPatch@Nampower@@YAXXZ 10087170 f main.cpp.obj - 0001:00086240 ??__FgCreateEventsDetour@Nampower@@YAXXZ 10087240 f main.cpp.obj - 0001:00086260 ??__FgGetSpellSlotFromLuaDetour@Nampower@@YAXXZ 10087260 f main.cpp.obj - 0001:00086280 ??__FgIEndSceneDetour@Nampower@@YAXXZ 10087280 f main.cpp.obj - 0001:000862a0 ??__FgInvalidFunctionPtrCheckDetour@Nampower@@YAXXZ 100872a0 f main.cpp.obj - 0001:000862c0 ??__FgLoadScriptFunctionsDetour@Nampower@@YAXXZ 100872c0 f main.cpp.obj - 0001:000862e0 ??__FgNonGcdCastQueue@Nampower@@YAXXZ 100872e0 f main.cpp.obj - 0001:000862f0 ??__FgOnSpriteRightClickDetour@Nampower@@YAXXZ 100872f0 f main.cpp.obj - 0001:00086310 ??__FgPeriodicAuraLogHandlerDetour@Nampower@@YAXXZ 10087310 f main.cpp.obj - 0001:00086330 ??__FgPlaySpellVisualHandlerDetour@Nampower@@YAXXZ 10087330 f main.cpp.obj - 0001:00086350 ??__FgProcResistHandlerDetour@Nampower@@YAXXZ 10087350 f main.cpp.obj - 0001:00086370 ??__FgSendCastDetour@Nampower@@YAXXZ 10087370 f main.cpp.obj - 0001:00086390 ??__FgSetCVarDetour@Nampower@@YAXXZ 10087390 f main.cpp.obj - 0001:000863b0 ??__FgSetEventCountDetour@Nampower@@YAXXZ 100873b0 f main.cpp.obj - 0001:000863d0 ??__FgSignalEventDetour@Nampower@@YAXXZ 100873d0 f main.cpp.obj - 0001:000863f0 ??__FgSpellChannelStartHandlerDetour@Nampower@@YAXXZ 100873f0 f main.cpp.obj - 0001:00086410 ??__FgSpellChannelUpdateHandlerDetour@Nampower@@YAXXZ 10087410 f main.cpp.obj - 0001:00086430 ??__FgSpellCooldownDetour@Nampower@@YAXXZ 10087430 f main.cpp.obj - 0001:00086450 ??__FgSpellDelayedDetour@Nampower@@YAXXZ 10087450 f main.cpp.obj - 0001:00086470 ??__FgSpellEnergizeLogHandlerDetour@Nampower@@YAXXZ 10087470 f main.cpp.obj - 0001:00086490 ??__FgSpellFailedDetour@Nampower@@YAXXZ 10087490 f main.cpp.obj - 0001:000864b0 ??__FgSpellFailedOtherHandlerDetour@Nampower@@YAXXZ 100874b0 f main.cpp.obj - 0001:000864d0 ??__FgSpellGoDetour@Nampower@@YAXXZ 100874d0 f main.cpp.obj - 0001:000864f0 ??__FgSpellHealingLogHandlerDetour@Nampower@@YAXXZ 100874f0 f main.cpp.obj - 0001:00086510 ??__FgSpellLogMissHandlerDetour@Nampower@@YAXXZ 10087510 f main.cpp.obj - 0001:00086530 ??__FgSpellNonMeleeDmgLogHandlerDetour@Nampower@@YAXXZ 10087530 f main.cpp.obj - 0001:00086550 ??__FgSpellOrDamageImmuneHandlerDetour@Nampower@@YAXXZ 10087550 f main.cpp.obj - 0001:00086570 ??__FgSpellStartHandlerDetour@Nampower@@YAXXZ 10087570 f main.cpp.obj - 0001:00086590 ??__FgSpellStopCastingDetour@Nampower@@YAXXZ 10087590 f main.cpp.obj - 0001:000865b0 ??__FgSpellTargetUnitDetour@Nampower@@YAXXZ 100875b0 f main.cpp.obj - 0001:000865d0 ??__FgSpell_C_CooldownEventTriggeredDetour@Nampower@@YAXXZ 100875d0 f main.cpp.obj - 0001:000865f0 ??__FgSpell_C_GetAutoRepeatingSpellDetour@Nampower@@YAXXZ 100875f0 f main.cpp.obj - 0001:00086610 ??__FgSpell_C_GetSpellModifiersDetour@Nampower@@YAXXZ 10087610 f main.cpp.obj - 0001:00086630 ??__FgSpell_C_GetSpellRadiusDetour@Nampower@@YAXXZ 10087630 f main.cpp.obj - 0001:00086650 ??__FgSpell_C_HandleSpriteClickDetour@Nampower@@YAXXZ 10087650 f main.cpp.obj - 0001:00086670 ??__FgSpell_C_HandleTerrainClickDetour@Nampower@@YAXXZ 10087670 f main.cpp.obj - 0001:00086690 ??__FgSpell_C_TargetSpellDetour@Nampower@@YAXXZ 10087690 f main.cpp.obj - 0001:000866b0 ??__FgSysMsgInitDetour@Nampower@@YAXXZ 100876b0 f main.cpp.obj - 0001:000866d0 ??__FgUnitCombatLogUnitDeadDetour@Nampower@@YAXXZ 100876d0 f main.cpp.obj - 0001:000866f0 ??__FspellIdToSlotCache@?1??ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z@YAXXZ 100876f0 f helper.cpp.obj - 0001:00086700 ??__FspellSlotCache@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@YAXXZ 10087700 f helper.cpp.obj - 0001:00086710 ??__FitemStatsArrayFieldRefs@Nampower@@YAXXZ 10087710 f misc_scripts.cpp.obj - 0001:00086720 ??__FitemStatsNestedArrayRefs@Nampower@@YAXXZ 10087720 f misc_scripts.cpp.obj - 0001:00086730 ??__FunitFieldsArrayFieldRefs@Nampower@@YAXXZ 10087730 f misc_scripts.cpp.obj - 0001:00086740 ??__FunitFieldsNestedArrayRefs@Nampower@@YAXXZ 10087740 f misc_scripts.cpp.obj - 0001:00086750 ??__FspellRecArrayFieldRefs@Nampower@@YAXXZ 10087750 f spell_scripts.cpp.obj - 0001:00086760 ??__FspellRecNestedArrayRefs@Nampower@@YAXXZ 10087760 f spell_scripts.cpp.obj - 0001:00086770 ??__FitemNameToIdCache@Nampower@@YAXXZ 10087770 f items.cpp.obj - 0001:00086780 ??__FitemStatsCache@Nampower@@YAXXZ 10087780 f items.cpp.obj - 0001:00086790 ??__FpendingItemIds@Nampower@@YAXXZ 10087790 f items.cpp.obj - 0001:000867a0 ??__FitemStatsArrayFieldMap@Nampower@@YAXXZ 100877a0 f dbc_fields.cpp.obj - 0001:000867b0 ??__FitemStatsFieldMap@Nampower@@YAXXZ 100877b0 f dbc_fields.cpp.obj - 0001:000867c0 ??__FspellRecArrayFieldMap@Nampower@@YAXXZ 100877c0 f dbc_fields.cpp.obj - 0001:000867d0 ??__FspellRecFieldMap@Nampower@@YAXXZ 100877d0 f dbc_fields.cpp.obj - 0001:000867e0 ??__FunitFieldsArrayFieldMap@Nampower@@YAXXZ 100877e0 f unit_fields.cpp.obj - 0001:000867f0 ??__FunitFieldsFieldMap@Nampower@@YAXXZ 100877f0 f unit_fields.cpp.obj - 0001:00086800 ??__FregisteredTableRefs@Nampower@@YAXXZ 10087800 f lua_refs.cpp.obj - 0001:0008685c ??__Finitlocks@std@@YAXXZ 1008785c f libcpmt:xlock.obj - 0001:00086866 ??__F_Fac_tidy_reg@std@@YAXXZ 10087866 f libcpmt:locale0.obj - 0001:00086870 ??__Fclassic_locale@std@@YAXXZ 10087870 f libcpmt:locale0.obj - 0001:0008687a ??__Finit_atexit@@YAXXZ 1008787a f libcpmt:iosptrs.obj - 0001:00086884 ??__Finitlocks@std@@YAXXZ 10087884 f libcpmt:iosptrs.obj + 0001:0007b4ca _ultod3_default 1007c4ca LIBCMT:ftol3.obj + 0001:0007b4f8 _ultod3_uint32 1007c4f8 LIBCMT:ftol3.obj + 0001:0007b500 $$000000 1007c500 LIBCMT:ftol3.obj + 0001:0007b51a _ltod3_default 1007c51a LIBCMT:ftol3.obj + 0001:0007b541 _ltod3_lt33 1007c541 LIBCMT:ftol3.obj + 0001:0007b542 ?dllmain_crt_dispatch@@YGHQAUHINSTANCE__@@KQAX@Z 1007c542 f LIBCMT:dll_dllmain.obj + 0001:0007b595 ?dllmain_crt_process_attach@@YAHQAUHINSTANCE__@@QAX@Z 1007c595 f LIBCMT:dll_dllmain.obj + 0001:0007b69c ?dllmain_crt_process_detach@@YAH_N@Z 1007c69c f LIBCMT:dll_dllmain.obj + 0001:0007b74c ?dllmain_dispatch@@YAHQAUHINSTANCE__@@KQAX@Z 1007c74c f LIBCMT:dll_dllmain.obj + 0001:0007b857 ?dllmain_raw@@YGHQAUHINSTANCE__@@KQAX@Z 1007c857 f LIBCMT:dll_dllmain.obj + 0001:0007b8b0 $$000000 1007c8b0 LIBCMT:sehprolg4.obj + 0001:0007bdf0 $$000000 1007cdf0 LIBCMT:ulldvrm.obj + 0001:0007be21 L1 1007ce21 LIBCMT:ulldvrm.obj + 0001:0007be2f L3 1007ce2f LIBCMT:ulldvrm.obj + 0001:0007be5d L4 1007ce5d LIBCMT:ulldvrm.obj + 0001:0007be66 L5 1007ce66 LIBCMT:ulldvrm.obj + 0001:0007be68 L2 1007ce68 LIBCMT:ulldvrm.obj + 0001:0007bfb0 $$000000 1007cfb0 LIBCMT:ulldiv.obj + 0001:0007bfd2 L1 1007cfd2 LIBCMT:ulldiv.obj + 0001:0007bfe0 L3 1007cfe0 LIBCMT:ulldiv.obj + 0001:0007c00e L4 1007d00e LIBCMT:ulldiv.obj + 0001:0007c00f L5 1007d00f LIBCMT:ulldiv.obj + 0001:0007c013 L2 1007d013 LIBCMT:ulldiv.obj + 0001:0007c020 $$000000 1007d020 LIBCMT:ullrem.obj + 0001:0007c041 L1 1007d041 LIBCMT:ullrem.obj + 0001:0007c04f L3 1007d04f LIBCMT:ullrem.obj + 0001:0007c07a L4 1007d07a LIBCMT:ullrem.obj + 0001:0007c082 L5 1007d082 LIBCMT:ullrem.obj + 0001:0007c091 L2 1007d091 LIBCMT:ullrem.obj + 0001:0007c2a0 $$000000 1007d2a0 LIBCMT:chkstk.obj + 0001:0007c2b4 cs10 1007d2b4 LIBCMT:chkstk.obj + 0001:0007c2c2 cs20 1007d2c2 LIBCMT:chkstk.obj + 0001:0007c2d0 $$000000 1007d2d0 LIBCMT:alloca16.obj + 0001:0007c2e6 alloca_8 1007d2e6 LIBCMT:alloca16.obj + 0001:0007c300 $$000000 1007d300 LIBCMT:ftol2.obj + 0001:0007c310 $$000000 1007d310 LIBCMT:ftol2.obj + 0001:0007c321 L3B 1007d321 LIBCMT:ftol2.obj + 0001:0007c364 L3F 1007d364 LIBCMT:ftol2.obj + 0001:0007c36c L40 1007d36c LIBCMT:ftol2.obj + 0001:0007c37f L41 1007d37f LIBCMT:ftol2.obj + 0001:0007c3b5 ___get_entropy 1007d3b5 f LIBCMT:gs_support.obj + 0001:0007dadc $LN1250 1007eadc libvcruntime:memcmp.obj + 0001:0007db60 $$000000 1007eb60 libvcruntime:strrchr.obj + 0001:0007db9d strrchr_sse_loop 1007eb9d libvcruntime:strrchr.obj + 0001:0007dbcd strrchr_sse_break 1007ebcd libvcruntime:strrchr.obj + 0001:0007dbed strrchr_sttni 1007ebed libvcruntime:strrchr.obj + 0001:0007dbff strrchr_sttni_chars 1007ebff libvcruntime:strrchr.obj + 0001:0007dc14 strrchr_sttni_aligned 1007ec14 libvcruntime:strrchr.obj + 0001:0007dc18 strrchr_sttni_xmm 1007ec18 libvcruntime:strrchr.obj + 0001:0007dc2b exit 1007ec2b libvcruntime:strrchr.obj + 0001:0007dc2e strrchr_zero 1007ec2e libvcruntime:strrchr.obj + 0001:0007dc53 strchr_zero_loop 1007ec53 libvcruntime:strrchr.obj + 0001:0007dc67 strchr_zero_result 1007ec67 libvcruntime:strrchr.obj + 0001:0007dc6e strrchr_no_sse 1007ec6e libvcruntime:strrchr.obj + 0001:0007dc91 returndi 1007ec91 libvcruntime:strrchr.obj + 0001:0007dc93 toend 1007ec93 libvcruntime:strrchr.obj + 0001:0007dd9d ??$?RV@@AAV@@V@@@?$__crt_seh_guarded_call@PAD@@QAEPAD$$QAV@@AAV@@$$QAV@@@Z 1007ed9d f libucrt:setlocale.obj + 0001:0007ddf8 ??R@@QBEPADXZ 1007edf8 f libucrt:setlocale.obj + 0001:0007df57 _call_wsetlocale 1007ef57 f libucrt:setlocale.obj + 0001:0007e1a3 ??$common_fsopen@D@@YAPAU_iobuf@@QBD0H@Z 1007f1a3 f libucrt:fopen.obj + 0001:0007e265 ??$common_configure_argv@D@@YAHW4_crt_argv_mode@@@Z 1007f265 f libucrt:argv_parsing.obj + 0001:0007e3a2 ??$parse_command_line@D@@YAXPADPAPAD0PAI2@Z 1007f3a2 f libucrt:argv_parsing.obj + 0001:0007e570 _initialize_global_variables 1007f570 f libucrt:initialization.obj + 0001:0007e57d _initialize_c 1007f57d f libucrt:initialization.obj + 0001:0007e597 _uninitialize_environment 1007f597 f libucrt:initialization.obj + 0001:0007e59f _initialize_pointers 1007f59f f libucrt:initialization.obj + 0001:0007e5cd _uninitialize_vcruntime 1007f5cd f libucrt:initialization.obj + 0001:0007e5d6 _uninitialize_allocated_memory 1007f5d6 f libucrt:initialization.obj + 0001:0007e5ed _uninitialize_allocated_io_buffers 1007f5ed f libucrt:initialization.obj + 0001:0007e63d ??R@@QBE@AAPAU__crt_multibyte_data@@@Z 1007f63d f libucrt:initialization.obj + 0001:0007e6d2 ?_wcstombs_internal@@YAHPAIPADIPB_WIAAV__crt_cached_ptd_host@@@Z 1007f6d2 f libucrt:wcstombs.obj + 0001:0007e7a7 ?_wcstombs_l_helper@@YAIPADPB_WIAAV__crt_cached_ptd_host@@@Z 1007f7a7 f libucrt:wcstombs.obj + 0001:0007ecb6 ??$common_openfile@D@@YAPAU_iobuf@@QBD0HV__crt_stdio_stream@@@Z 1007fcb6 f libucrt:openfile.obj + 0001:0007ee58 ?@@@CAHPBX0@Z 1007fe58 f libucrt:argv_wildcards.obj + 0001:0007ef36 ??$common_expand_argv_wildcards@D@@YAHQAPADQAPAPAD@Z 1007ff36 f libucrt:argv_wildcards.obj + 0001:0007f0b3 ??$copy_and_add_argument_to_buffer@D@@YAHQBD0IAAV?$argument_list@D@?A0x5f5c8891@@@Z 100800b3 f libucrt:argv_wildcards.obj + 0001:0007f164 ??$expand_argument_wildcards@D@@YAHQAD0AAV?$argument_list@D@?A0x5f5c8891@@@Z 10080164 f libucrt:argv_wildcards.obj + 0001:0007f3e9 ??1?$argument_list@D@?A0x5f5c8891@@QAE@XZ 100803e9 f libucrt:argv_wildcards.obj + 0001:0007f44a ?expand_if_necessary@?$argument_list@D@?A0x5f5c8891@@AAEHXZ 1008044a f libucrt:argv_wildcards.obj + 0001:0007f57d ?x_ismbbtype_l@@YAHPAU__crt_locale_pointers@@IHH@Z 1008057d f libucrt:ismbbyte.obj + 0001:0007f7a6 ??$common_sopen_dispatch@D@@YAHQBDHHHQAHH@Z 100807a6 f libucrt:open.obj + 0001:0007f881 ?configure_text_mode@@YAHHUfile_options@?A0xa9d50aae@@HAAW4__crt_lowio_text_mode@@@Z 10080881 f libucrt:open.obj + 0001:0007fad7 ?create_file@@YAPAXQB_WQAU_SECURITY_ATTRIBUTES@@Ufile_options@?A0xa9d50aae@@@Z 10080ad7 f libucrt:open.obj + 0001:0007fafc ?decode_open_create_flags@@YAKH@Z 10080afc f libucrt:open.obj + 0001:0007fb6c ?decode_options@@YA?AUfile_options@?A0xa9d50aae@@HHH@Z 10080b6c f libucrt:open.obj + 0001:0007fce6 ?truncate_ctrl_z_if_present@@YAHH@Z 10080ce6 f libucrt:open.obj + 0001:00080640 $$000000 10081640 libucrt:strpbrk.obj + 0001:00080b80 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$0 10081b80 f logging.cpp.obj + 0001:00080b80 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$0 10081b80 f main.cpp.obj + 0001:00080b88 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$2 10081b88 f logging.cpp.obj + 0001:00080b88 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$2 10081b88 f main.cpp.obj + 0001:00080b97 __unwindfunclet$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z$1 10081b97 f logging.cpp.obj + 0001:00080b97 __unwindfunclet$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$1 10081b97 f main.cpp.obj + 0001:00080ba4 __ehhandler$??$use_facet@V?$codecvt@DDU_Mbstatet@@@std@@@std@@YAABV?$codecvt@DDU_Mbstatet@@@0@ABVlocale@0@@Z 10081ba4 f logging.cpp.obj + 0001:00080ba4 __ehhandler$??$use_facet@V?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 10081ba4 f main.cpp.obj + 0001:00080bd0 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$0 10081bd0 f logging.cpp.obj + 0001:00080bd8 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$2 10081bd8 f logging.cpp.obj + 0001:00080be7 __unwindfunclet$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z$1 10081be7 f logging.cpp.obj + 0001:00080bf4 __ehhandler$??$use_facet@V?$ctype@D@std@@@std@@YAABV?$ctype@D@0@ABVlocale@0@@Z 10081bf4 f logging.cpp.obj + 0001:00080c20 __unwindfunclet$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z$0 10081c20 f logging.cpp.obj + 0001:00080c3c __unwindfunclet$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z$2 10081c3c f logging.cpp.obj + 0001:00080c49 __ehhandler$??0?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@_N@Z 10081c49 f logging.cpp.obj + 0001:00080c70 __ehhandler$??0?$basic_streambuf@DU?$char_traits@D@std@@@std@@IAE@XZ 10081c70 f logging.cpp.obj + 0001:00080c90 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$0 10081c90 f logging.cpp.obj + 0001:00080c98 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$1 10081c98 f logging.cpp.obj + 0001:00080ca3 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$2 10081ca3 f logging.cpp.obj + 0001:00080cae __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$3 10081cae f logging.cpp.obj + 0001:00080cb9 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$4 10081cb9 f logging.cpp.obj + 0001:00080cc4 __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$5 10081cc4 f logging.cpp.obj + 0001:00080ccf __unwindfunclet$??0_Locinfo@std@@QAE@PBD@Z$6 10081ccf f logging.cpp.obj + 0001:00080cdf __ehhandler$??0_Locinfo@std@@QAE@PBD@Z 10081cdf f logging.cpp.obj + 0001:00080d00 __unwindfunclet$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$5 10081d00 f logging.cpp.obj + 0001:00080d08 __unwindfunclet$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$6 10081d08 f logging.cpp.obj + 0001:00080d15 __ehhandler$??0_System_error@std@@IAE@Verror_code@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10081d15 f logging.cpp.obj + 0001:00080d40 __unwindfunclet$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z$1 10081d40 f logging.cpp.obj + 0001:00080d40 __unwindfunclet$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z$0 10081d40 f main.cpp.obj + 0001:00080d40 __unwindfunclet$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z$0 10081d40 f spellcast.cpp.obj + 0001:00080d4d __ehhandler$??0failure@ios_base@std@@QAE@PBDABVerror_code@2@@Z 10081d4d f logging.cpp.obj + 0001:00080d4d __ehhandler$?Thread32First@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@12@PAX@Z 10081d4d f main.cpp.obj + 0001:00080d4d __ehhandler$?Spell_C_TargetSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z 10081d4d f spellcast.cpp.obj + 0001:00080d80 __ehhandler$??1?$basic_filebuf@DU?$char_traits@D@std@@@std@@UAE@XZ 10081d80 f logging.cpp.obj + 0001:00080d80 __ehhandler$?try_cor_exit_process@@YAXI@Z 10081d80 f libucrt:exit.obj + 0001:00080d80 __ehhandler$?_Tidy@ios_base@std@@AAEXXZ 10081d80 f libcpmt:ios.obj + 0001:00080da0 __ehhandler$??1?$basic_ios@DU?$char_traits@D@std@@@std@@UAE@XZ 10081da0 f logging.cpp.obj + 0001:00080dc0 __ehhandler$??1_Locinfo@std@@QAE@XZ 10081dc0 f logging.cpp.obj + 0001:00080dc0 __ehhandler$??1?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@exception_detail@boost@@QAE@XZ 10081dc0 f main.cpp.obj + 0001:00080dc0 __ehhandler$??1_Init_atexit@@QAE@XZ 10081dc0 f libcpmt:iosptrs.obj + 0001:00080dc0 __ehhandler$___crtGetSystemTimePreciseAsFileTime 10081dc0 f libcpmt:winapisupp.obj + 0001:00080de0 __ehhandler$??_D?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXXZ 10081de0 f logging.cpp.obj + 0001:00080de0 __ehhandler$??$_Destroy_range@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@YAXPAVSuspendedThread@hadesmem@@QAV12@AAV?$allocator@VSuspendedThread@hadesmem@@@0@@Z 10081de0 f main.cpp.obj + 0001:00080de0 __ehhandler$??_D?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 10081de0 f main.cpp.obj + 0001:00080de0 __ehhandler$??_D?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAEXXZ 10081de0 f main.cpp.obj + 0001:00080de0 __ehhandler$??_GError@hadesmem@@UAEPAXI@Z 10081de0 f main.cpp.obj + 0001:00080e00 __ehhandler$??_G?$basic_ios@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10081e00 f logging.cpp.obj + 0001:00080e00 __ehhandler$??_G?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10081e00 f logging.cpp.obj + 0001:00080e00 __ehhandler$??_Gios_base@std@@UAEPAXI@Z 10081e00 f logging.cpp.obj + 0001:00080e00 __ehhandler$??1bad_alloc_@exception_detail@boost@@UAE@XZ 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??1bad_exception_@exception_detail@boost@@UAE@XZ 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??1exception@boost@@MAE@XZ 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??_D?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??_D?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAEXXZ 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??_D?$wrapexcept@VError@hadesmem@@@boost@@QAEXXZ 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??_DError@hadesmem@@QAEXXZ 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??_G?$basic_iostream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??_G?$basic_istream@DU?$char_traits@D@std@@@std@@UAEPAXI@Z 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??_G?$wrapexcept@VError@hadesmem@@@boost@@UAEPAXI@Z 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??_GCDataStore@Nampower@@UAEPAXI@Z 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??_Gbad_alloc_@exception_detail@boost@@UAEPAXI@Z 10081e00 f main.cpp.obj + 0001:00080e00 __ehhandler$??_Gbad_exception_@exception_detail@boost@@UAEPAXI@Z 10081e00 f main.cpp.obj + 0001:00080e20 __unwindfunclet$??__EdebugLogFile@Nampower@@YAXXZ$0 10081e20 f logging.cpp.obj + 0001:00080e3b __unwindfunclet$??__EdebugLogFile@Nampower@@YAXXZ$1 10081e3b f logging.cpp.obj + 0001:00080e4a __ehhandler$??__EdebugLogFile@Nampower@@YAXXZ 10081e4a f logging.cpp.obj + 0001:00080e70 __ehhandler$??__FdebugLogFile@Nampower@@YAXXZ 10081e70 f logging.cpp.obj + 0001:00080e90 __unwindfunclet$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z$1 10081e90 f logging.cpp.obj + 0001:00080e9d __ehhandler$?init@?$basic_ios@DU?$char_traits@D@std@@@std@@IAEXPAV?$basic_streambuf@DU?$char_traits@D@std@@@2@_N@Z 10081e9d f logging.cpp.obj + 0001:00080ec0 __unwindfunclet$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ$0 10081ec0 f logging.cpp.obj + 0001:00080ec0 __unwindfunclet$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 10081ec0 f spellevents.cpp.obj + 0001:00080ecd __ehhandler$?uflow@?$basic_filebuf@DU?$char_traits@D@std@@@std@@MAEHXZ 10081ecd f logging.cpp.obj + 0001:00080ecd __ehhandler$?SpellDelayedHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10081ecd f spellevents.cpp.obj + 0001:00080f00 __ehhandler$??$?0V?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@2@@Z 10081f00 f main.cpp.obj + 0001:00080f20 __ehhandler$??$?0V?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAV?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@2@@Z 10081f20 f main.cpp.obj + 0001:00080f40 __unwindfunclet$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z$0 10081f40 f main.cpp.obj + 0001:00080f40 __unwindfunclet$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z$0 10081f40 f main.cpp.obj + 0001:00080f50 __ehhandler$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@?$shared_ptr@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@1@@Z 10081f50 f main.cpp.obj + 0001:00080f50 __ehhandler$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@?$shared_ptr@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@1@@Z 10081f50 f main.cpp.obj + 0001:00080f70 __ehhandler$??$?0V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 10081f70 f main.cpp.obj + 0001:00080f90 __ehhandler$??$?0V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@shared_count@detail@boost@@QAE@PAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 10081f90 f main.cpp.obj + 0001:00080fb0 __ehhandler$??$?0Verror_info_base@exception_detail@boost@@@shared_count@detail@boost@@QAE@PAVerror_info_base@exception_detail@2@@Z 10081fb0 f main.cpp.obj + 0001:00080fd0 __unwindfunclet$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$2 10081fd0 f main.cpp.obj + 0001:00080fd8 __unwindfunclet$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z$3 10081fd8 f main.cpp.obj + 0001:00080fe5 __ehhandler$??$?6DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@ABU?$_Timeobj@DPBUtm@@@0@@Z 10081fe5 f main.cpp.obj + 0001:00081010 __unwindfunclet$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z$2 10082010 f main.cpp.obj + 0001:0008101d __ehhandler$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@D@Z 1008201d f main.cpp.obj + 0001:00081040 __unwindfunclet$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z$2 10082040 f main.cpp.obj + 0001:0008104d __ehhandler$??$?6U?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@PBD@Z 1008204d f main.cpp.obj + 0001:00081070 __unwindfunclet$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z$2 10082070 f main.cpp.obj + 0001:0008107d __ehhandler$??$ReadVector@EV?$allocator@E@std@@@hadesmem@@YA?AV?$vector@EV?$allocator@E@std@@@std@@ABVProcess@0@PAXI@Z 1008207d f main.cpp.obj + 0001:000810a0 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$1 100820a0 f main.cpp.obj + 0001:000810a8 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$2 100820a8 f main.cpp.obj + 0001:000810b0 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$3 100820b0 f main.cpp.obj + 0001:000810b8 __unwindfunclet$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z$4 100820b8 f main.cpp.obj + 0001:000810c8 __ehhandler$??$Toolhelp32Enum@UtagTHREADENTRY32@@P6GHPAXPAU1@@Z@detail@hadesmem@@YA?AV?$Optional@UtagTHREADENTRY32@@@01@P6GHPAXPAUtagTHREADENTRY32@@@Z0ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z 100820c8 f main.cpp.obj + 0001:00081100 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$0 10082100 f main.cpp.obj + 0001:00081100 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$0 10082100 f main.cpp.obj + 0001:00081100 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$0 10082100 f main.cpp.obj + 0001:00081108 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$1 10082108 f main.cpp.obj + 0001:00081108 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$1 10082108 f main.cpp.obj + 0001:00081108 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$1 10082108 f main.cpp.obj + 0001:00081110 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z$2 10082110 f main.cpp.obj + 0001:00081110 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z$2 10082110 f main.cpp.obj + 0001:00081110 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z$2 10082110 f main.cpp.obj + 0001:0008111d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAX@@YAXPBDP6AHPADI0ZZ0AAPAX3@Z 1008211d f main.cpp.obj + 0001:0008111d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDKPBD@@YAXPBDP6AHPADI0ZZ0$$QAK$$QAPBD@Z 1008211d f main.cpp.obj + 0001:0008111d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDQBDQBD@@YAXPBDP6AHPADI0ZZ0$$QBQBD3@Z 1008211d f main.cpp.obj + 0001:00081150 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$0 10082150 f main.cpp.obj + 0001:00081158 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$1 10082158 f main.cpp.obj + 0001:00081160 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z$2 10082160 f main.cpp.obj + 0001:0008116d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAPAXAAPAXI@@YAXPBDP6AHPADI0ZZ0AAPAX3$$QAI@Z 1008216d f main.cpp.obj + 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$0 100821a0 f main.cpp.obj + 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$0 100821a0 f main.cpp.obj + 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$0 100821a0 f main.cpp.obj + 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$0 100821a0 f main.cpp.obj + 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$0 100821a0 f main.cpp.obj + 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$0 100821a0 f main.cpp.obj + 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$0 100821a0 f main.cpp.obj + 0001:000811a0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$0 100821a0 f main.cpp.obj + 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$1 100821a8 f main.cpp.obj + 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$1 100821a8 f main.cpp.obj + 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$1 100821a8 f main.cpp.obj + 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$1 100821a8 f main.cpp.obj + 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$1 100821a8 f main.cpp.obj + 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$1 100821a8 f main.cpp.obj + 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$1 100821a8 f main.cpp.obj + 0001:000811a8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$1 100821a8 f main.cpp.obj + 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z$2 100821b0 f main.cpp.obj + 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z$2 100821b0 f main.cpp.obj + 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z$2 100821b0 f main.cpp.obj + 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z$2 100821b0 f main.cpp.obj + 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z$2 100821b0 f main.cpp.obj + 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z$2 100821b0 f main.cpp.obj + 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z$2 100821b0 f main.cpp.obj + 0001:000811b0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z$2 100821b0 f main.cpp.obj + 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BF@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BF@$$CBD@Z 100821bd f main.cpp.obj + 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BG@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BG@$$CBD@Z 100821bd f main.cpp.obj + 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BH@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BH@$$CBD@Z 100821bd f main.cpp.obj + 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0BK@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0BK@$$CBD@Z 100821bd f main.cpp.obj + 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDAAY0CE@$$CBD@@YAXPBDP6AHPADI0ZZ0AAY0CE@$$CBD@Z 100821bd f main.cpp.obj + 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDABG@@YAXPBDP6AHPADI0ZZ0ABG@Z 100821bd f main.cpp.obj + 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDABQAX@@YAXPBDP6AHPADI0ZZ0ABQAX@Z 100821bd f main.cpp.obj + 0001:000811bd __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPBD@@YAXPBDP6AHPADI0ZZ0$$QAPBD@Z 100821bd f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@HPAI3@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@HPAI6@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f0 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$0 100821f0 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@HPAI3@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@HPAI6@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:000811f8 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$1 100821f8 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@HPAI3@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@HPAI6@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:00081200 __unwindfunclet$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z$2 10082200 f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@2@PAIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6GHPAVPatchDetourBase@1@PAIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6GXXZPAX@hadesmem@@AAPAXABQAP6GXPAVPatchDetourBase@1@@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@IIIPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@IIIPAVCDataStore@Nampower@@@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IH_K@ZPAX@hadesmem@@AAPAXABQAP6IHPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@HPAI3@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@HPAI6@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@2@PAUCTerrainClickEvent@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@AAPAXABQAP6IIPAVPatchDetourBase@1@PAUCTerrainClickEvent@game@@@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@2@PAI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@AAPAXABQAP6IPAHPAVPatchDetourBase@1@PAI@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@EH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXEH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@EH@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@HI@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXHI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@HI@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXI@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@I@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IHH@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IH_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IH_K@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@IW4SpellCastResult@game@@HH_N@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@IW4SpellCastResult@game@@HH_N@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXHE@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXHE@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAIPAXII@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAIPAXII@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAUSpellCast@game@@D@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAUSpellCast@game@@D@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3I@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6I@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAX3PAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAX6PAVCDataStore@Nampower@@@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PAXHH@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PAXHH@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@PA_K3IPAVCDataStore@Nampower@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@PA_K6IPAVCDataStore@Nampower@@@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IXXZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_K@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_K@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@2@_N3W4SpellCastResult@game@@@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@AAPAXABQAP6IXPAVPatchDetourBase@1@_N6W4SpellCastResult@game@@@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAI3IM@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAI6IM@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:0008120d __ehhandler$??$TraceFormatT@DP6AHPADIPBDZZPBDPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@2@PAIIPAUCGItem_C@game@@_K@ZPAX@@YAXPBDP6AHPADI0ZZ0$$QAPAV?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@AAPAXABQAP6I_NPAVPatchDetourBase@1@PAIIPAUCGItem_C@game@@_K@Z$$QAPAX@Z 1008220d f main.cpp.obj + 0001:00081240 __unwindfunclet$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z$2 10082240 f main.cpp.obj + 0001:0008124d __ehhandler$??$_Emplace_reallocate@K@?$vector@VSuspendedThread@hadesmem@@V?$allocator@VSuspendedThread@hadesmem@@@std@@@std@@AAEPAVSuspendedThread@hadesmem@@QAV23@$$QAK@Z 1008224d f main.cpp.obj + 0001:00081270 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$0 10082270 f main.cpp.obj + 0001:00081278 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$1 10082278 f main.cpp.obj + 0001:00081280 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$2 10082280 f main.cpp.obj + 0001:00081288 __unwindfunclet$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z$3 10082288 f main.cpp.obj + 0001:00081295 __ehhandler$??$_Fput_v3@$0A@@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@1@V21@AAVios_base@1@DPBDI_N@Z 10082295 f main.cpp.obj + 0001:000812c0 __unwindfunclet$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z$2 100822c0 f main.cpp.obj + 0001:000812cd __ehhandler$??$_Insert_string@DU?$char_traits@D@std@@I@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@QBDI@Z 100822cd f main.cpp.obj + 0001:000812f0 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$4 100822f0 f main.cpp.obj + 0001:000812f8 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$21 100822f8 f main.cpp.obj + 0001:0008130a __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$22 1008230a f main.cpp.obj + 0001:0008132c __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$6 1008232c f main.cpp.obj + 0001:0008134e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$7 1008234e f main.cpp.obj + 0001:00081356 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$8 10082356 f main.cpp.obj + 0001:0008135e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$10 1008235e f main.cpp.obj + 0001:00081366 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$11 10082366 f main.cpp.obj + 0001:0008136e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$12 1008236e f main.cpp.obj + 0001:00081376 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$13 10082376 f main.cpp.obj + 0001:0008137e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$14 1008237e f main.cpp.obj + 0001:00081386 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$15 10082386 f main.cpp.obj + 0001:0008138e __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$16 1008238e f main.cpp.obj + 0001:00081399 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$17 10082399 f main.cpp.obj + 0001:000813a4 __unwindfunclet$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z$9 100823a4 f main.cpp.obj + 0001:000813b1 __ehhandler$??$createHook@P6GHPAIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@01@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAIPAVCDataStore@0@@Z@Z 100823b1 f main.cpp.obj + 0001:000813e0 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$4 100823e0 f main.cpp.obj + 0001:000813e8 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$21 100823e8 f main.cpp.obj + 0001:000813fa __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$22 100823fa f main.cpp.obj + 0001:0008141c __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$6 1008241c f main.cpp.obj + 0001:0008143e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$7 1008243e f main.cpp.obj + 0001:00081446 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$8 10082446 f main.cpp.obj + 0001:0008144e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$10 1008244e f main.cpp.obj + 0001:00081456 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$11 10082456 f main.cpp.obj + 0001:0008145e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$12 1008245e f main.cpp.obj + 0001:00081466 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$13 10082466 f main.cpp.obj + 0001:0008146e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$14 1008246e f main.cpp.obj + 0001:00081476 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$15 10082476 f main.cpp.obj + 0001:0008147e __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$16 1008247e f main.cpp.obj + 0001:00081489 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$17 10082489 f main.cpp.obj + 0001:00081494 __unwindfunclet$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z$9 10082494 f main.cpp.obj + 0001:000814a1 __ehhandler$??$createHook@P6GXXZP6AXPAVPatchDetourBase@hadesmem@@@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6GXXZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6GXXZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@@Z@Z 100824a1 f main.cpp.obj + 0001:000814d0 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$4 100824d0 f main.cpp.obj + 0001:000814d8 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$21 100824d8 f main.cpp.obj + 0001:000814ea __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$22 100824ea f main.cpp.obj + 0001:0008150c __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$6 1008250c f main.cpp.obj + 0001:0008152e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$7 1008252e f main.cpp.obj + 0001:00081536 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$8 10082536 f main.cpp.obj + 0001:0008153e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$10 1008253e f main.cpp.obj + 0001:00081546 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$11 10082546 f main.cpp.obj + 0001:0008154e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$12 1008254e f main.cpp.obj + 0001:00081556 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$13 10082556 f main.cpp.obj + 0001:0008155e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$14 1008255e f main.cpp.obj + 0001:00081566 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$15 10082566 f main.cpp.obj + 0001:0008156e __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$16 1008256e f main.cpp.obj + 0001:00081579 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$17 10082579 f main.cpp.obj + 0001:00081584 __unwindfunclet$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z$9 10082584 f main.cpp.obj + 0001:00081591 __ehhandler$??$createHook@P6IHIIIPAVCDataStore@Nampower@@@ZP6AHPAVPatchDetourBase@hadesmem@@III0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@IIIPAVCDataStore@0@@Z@Z 10082591 f main.cpp.obj + 0001:000815c0 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$4 100825c0 f main.cpp.obj + 0001:000815c8 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$21 100825c8 f main.cpp.obj + 0001:000815da __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$22 100825da f main.cpp.obj + 0001:000815fc __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$6 100825fc f main.cpp.obj + 0001:0008161e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$7 1008261e f main.cpp.obj + 0001:00081626 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$8 10082626 f main.cpp.obj + 0001:0008162e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$10 1008262e f main.cpp.obj + 0001:00081636 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$11 10082636 f main.cpp.obj + 0001:0008163e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$12 1008263e f main.cpp.obj + 0001:00081646 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$13 10082646 f main.cpp.obj + 0001:0008164e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$14 1008264e f main.cpp.obj + 0001:00081656 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$15 10082656 f main.cpp.obj + 0001:0008165e __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$16 1008265e f main.cpp.obj + 0001:00081669 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$17 10082669 f main.cpp.obj + 0001:00081674 __unwindfunclet$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z$9 10082674 f main.cpp.obj + 0001:00081681 __ehhandler$??$createHook@P6IHPAI@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@PAI@Z@Z 10082681 f main.cpp.obj + 0001:000816b0 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$4 100826b0 f main.cpp.obj + 0001:000816b8 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$21 100826b8 f main.cpp.obj + 0001:000816ca __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$22 100826ca f main.cpp.obj + 0001:000816ec __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$6 100826ec f main.cpp.obj + 0001:0008170e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$7 1008270e f main.cpp.obj + 0001:00081716 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$8 10082716 f main.cpp.obj + 0001:0008171e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$10 1008271e f main.cpp.obj + 0001:00081726 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$11 10082726 f main.cpp.obj + 0001:0008172e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$12 1008272e f main.cpp.obj + 0001:00081736 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$13 10082736 f main.cpp.obj + 0001:0008173e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$14 1008273e f main.cpp.obj + 0001:00081746 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$15 10082746 f main.cpp.obj + 0001:0008174e __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$16 1008274e f main.cpp.obj + 0001:00081759 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$17 10082759 f main.cpp.obj + 0001:00081764 __unwindfunclet$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z$9 10082764 f main.cpp.obj + 0001:00081771 __ehhandler$??$createHook@P6IH_K@ZP6AHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AHPAVPatchDetourBase@4@_K@Z@Z 10082771 f main.cpp.obj + 0001:000817a0 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$4 100827a0 f main.cpp.obj + 0001:000817a8 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$21 100827a8 f main.cpp.obj + 0001:000817ba __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$22 100827ba f main.cpp.obj + 0001:000817dc __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$6 100827dc f main.cpp.obj + 0001:000817fe __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$7 100827fe f main.cpp.obj + 0001:00081806 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$8 10082806 f main.cpp.obj + 0001:0008180e __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$10 1008280e f main.cpp.obj + 0001:00081816 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$11 10082816 f main.cpp.obj + 0001:0008181e __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$12 1008281e f main.cpp.obj + 0001:00081826 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$13 10082826 f main.cpp.obj + 0001:0008182e __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$14 1008282e f main.cpp.obj + 0001:00081836 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$15 10082836 f main.cpp.obj + 0001:0008183e __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$16 1008283e f main.cpp.obj + 0001:00081849 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$17 10082849 f main.cpp.obj + 0001:00081854 __unwindfunclet$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z$9 10082854 f main.cpp.obj + 0001:00081861 __ehhandler$??$createHook@P6IIHPAI0@ZP6AIPAVPatchDetourBase@hadesmem@@H00@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@HPAI3@Z@Z 10082861 f main.cpp.obj + 0001:00081890 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$4 10082890 f main.cpp.obj + 0001:00081898 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$21 10082898 f main.cpp.obj + 0001:000818aa __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$22 100828aa f main.cpp.obj + 0001:000818cc __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$6 100828cc f main.cpp.obj + 0001:000818ee __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$7 100828ee f main.cpp.obj + 0001:000818f6 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$8 100828f6 f main.cpp.obj + 0001:000818fe __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$10 100828fe f main.cpp.obj + 0001:00081906 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$11 10082906 f main.cpp.obj + 0001:0008190e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$12 1008290e f main.cpp.obj + 0001:00081916 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$13 10082916 f main.cpp.obj + 0001:0008191e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$14 1008291e f main.cpp.obj + 0001:00081926 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$15 10082926 f main.cpp.obj + 0001:0008192e __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$16 1008292e f main.cpp.obj + 0001:00081939 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$17 10082939 f main.cpp.obj + 0001:00081944 __unwindfunclet$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z$9 10082944 f main.cpp.obj + 0001:00081951 __ehhandler$??$createHook@P6IIPAI@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAI@Z@Z 10082951 f main.cpp.obj + 0001:00081980 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$4 10082980 f main.cpp.obj + 0001:00081988 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$21 10082988 f main.cpp.obj + 0001:0008199a __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$22 1008299a f main.cpp.obj + 0001:000819bc __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$6 100829bc f main.cpp.obj + 0001:000819de __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$7 100829de f main.cpp.obj + 0001:000819e6 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$8 100829e6 f main.cpp.obj + 0001:000819ee __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$10 100829ee f main.cpp.obj + 0001:000819f6 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$11 100829f6 f main.cpp.obj + 0001:000819fe __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$12 100829fe f main.cpp.obj + 0001:00081a06 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$13 10082a06 f main.cpp.obj + 0001:00081a0e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$14 10082a0e f main.cpp.obj + 0001:00081a16 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$15 10082a16 f main.cpp.obj + 0001:00081a1e __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$16 10082a1e f main.cpp.obj + 0001:00081a29 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$17 10082a29 f main.cpp.obj + 0001:00081a34 __unwindfunclet$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z$9 10082a34 f main.cpp.obj + 0001:00081a41 __ehhandler$??$createHook@P6IIPAUCTerrainClickEvent@game@@@ZP6AIPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AIPAVPatchDetourBase@4@PAUCTerrainClickEvent@game@@@Z@Z 10082a41 f main.cpp.obj + 0001:00081a70 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$4 10082a70 f main.cpp.obj + 0001:00081a78 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$21 10082a78 f main.cpp.obj + 0001:00081a8a __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$22 10082a8a f main.cpp.obj + 0001:00081aac __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$6 10082aac f main.cpp.obj + 0001:00081ace __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$7 10082ace f main.cpp.obj + 0001:00081ad6 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$8 10082ad6 f main.cpp.obj + 0001:00081ade __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$10 10082ade f main.cpp.obj + 0001:00081ae6 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$11 10082ae6 f main.cpp.obj + 0001:00081aee __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$12 10082aee f main.cpp.obj + 0001:00081af6 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$13 10082af6 f main.cpp.obj + 0001:00081afe __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$14 10082afe f main.cpp.obj + 0001:00081b06 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$15 10082b06 f main.cpp.obj + 0001:00081b0e __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$16 10082b0e f main.cpp.obj + 0001:00081b19 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$17 10082b19 f main.cpp.obj + 0001:00081b24 __unwindfunclet$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z$9 10082b24 f main.cpp.obj + 0001:00081b31 __ehhandler$??$createHook@P6IPAHPAI@ZP6APAHPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6APAHPAVPatchDetourBase@4@PAI@Z@Z 10082b31 f main.cpp.obj + 0001:00081b60 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$4 10082b60 f main.cpp.obj + 0001:00081b68 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$21 10082b68 f main.cpp.obj + 0001:00081b7a __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$22 10082b7a f main.cpp.obj + 0001:00081b9c __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$6 10082b9c f main.cpp.obj + 0001:00081bbe __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$7 10082bbe f main.cpp.obj + 0001:00081bc6 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$8 10082bc6 f main.cpp.obj + 0001:00081bce __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$10 10082bce f main.cpp.obj + 0001:00081bd6 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$11 10082bd6 f main.cpp.obj + 0001:00081bde __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$12 10082bde f main.cpp.obj + 0001:00081be6 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$13 10082be6 f main.cpp.obj + 0001:00081bee __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$14 10082bee f main.cpp.obj + 0001:00081bf6 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$15 10082bf6 f main.cpp.obj + 0001:00081bfe __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$16 10082bfe f main.cpp.obj + 0001:00081c09 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$17 10082c09 f main.cpp.obj + 0001:00081c14 __unwindfunclet$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z$9 10082c14 f main.cpp.obj + 0001:00081c21 __ehhandler$??$createHook@P6IXEH@ZP6AXPAVPatchDetourBase@hadesmem@@EH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXEH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@EH@Z@Z 10082c21 f main.cpp.obj + 0001:00081c50 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$4 10082c50 f main.cpp.obj + 0001:00081c58 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$21 10082c58 f main.cpp.obj + 0001:00081c6a __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$22 10082c6a f main.cpp.obj + 0001:00081c8c __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$6 10082c8c f main.cpp.obj + 0001:00081cae __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$7 10082cae f main.cpp.obj + 0001:00081cb6 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$8 10082cb6 f main.cpp.obj + 0001:00081cbe __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$10 10082cbe f main.cpp.obj + 0001:00081cc6 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$11 10082cc6 f main.cpp.obj + 0001:00081cce __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$12 10082cce f main.cpp.obj + 0001:00081cd6 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$13 10082cd6 f main.cpp.obj + 0001:00081cde __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$14 10082cde f main.cpp.obj + 0001:00081ce6 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$15 10082ce6 f main.cpp.obj + 0001:00081cee __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$16 10082cee f main.cpp.obj + 0001:00081cf9 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$17 10082cf9 f main.cpp.obj + 0001:00081d04 __unwindfunclet$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z$9 10082d04 f main.cpp.obj + 0001:00081d11 __ehhandler$??$createHook@P6IXHI@ZP6AXPAVPatchDetourBase@hadesmem@@HI@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXHI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@HI@Z@Z 10082d11 f main.cpp.obj + 0001:00081d40 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$4 10082d40 f main.cpp.obj + 0001:00081d48 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$21 10082d48 f main.cpp.obj + 0001:00081d5a __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$22 10082d5a f main.cpp.obj + 0001:00081d7c __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$6 10082d7c f main.cpp.obj + 0001:00081d9e __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$7 10082d9e f main.cpp.obj + 0001:00081da6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$8 10082da6 f main.cpp.obj + 0001:00081dae __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$10 10082dae f main.cpp.obj + 0001:00081db6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$11 10082db6 f main.cpp.obj + 0001:00081dbe __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$12 10082dbe f main.cpp.obj + 0001:00081dc6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$13 10082dc6 f main.cpp.obj + 0001:00081dce __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$14 10082dce f main.cpp.obj + 0001:00081dd6 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$15 10082dd6 f main.cpp.obj + 0001:00081dde __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$16 10082dde f main.cpp.obj + 0001:00081de9 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$17 10082de9 f main.cpp.obj + 0001:00081df4 __unwindfunclet$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z$9 10082df4 f main.cpp.obj + 0001:00081e01 __ehhandler$??$createHook@P6IXI@ZP6AXPAVPatchDetourBase@hadesmem@@I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXI@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@I@Z@Z 10082e01 f main.cpp.obj + 0001:00081e30 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$4 10082e30 f main.cpp.obj + 0001:00081e38 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$21 10082e38 f main.cpp.obj + 0001:00081e4a __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$22 10082e4a f main.cpp.obj + 0001:00081e6c __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$6 10082e6c f main.cpp.obj + 0001:00081e8e __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$7 10082e8e f main.cpp.obj + 0001:00081e96 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$8 10082e96 f main.cpp.obj + 0001:00081e9e __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$10 10082e9e f main.cpp.obj + 0001:00081ea6 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$11 10082ea6 f main.cpp.obj + 0001:00081eae __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$12 10082eae f main.cpp.obj + 0001:00081eb6 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$13 10082eb6 f main.cpp.obj + 0001:00081ebe __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$14 10082ebe f main.cpp.obj + 0001:00081ec6 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$15 10082ec6 f main.cpp.obj + 0001:00081ece __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$16 10082ece f main.cpp.obj + 0001:00081ed9 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$17 10082ed9 f main.cpp.obj + 0001:00081ee4 __unwindfunclet$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z$9 10082ee4 f main.cpp.obj + 0001:00081ef1 __ehhandler$??$createHook@P6IXIHH@ZP6AXPAVPatchDetourBase@hadesmem@@IHH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IHH@Z@Z 10082ef1 f main.cpp.obj + 0001:00081f20 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$4 10082f20 f main.cpp.obj + 0001:00081f28 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$21 10082f28 f main.cpp.obj + 0001:00081f3a __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$22 10082f3a f main.cpp.obj + 0001:00081f5c __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$6 10082f5c f main.cpp.obj + 0001:00081f7e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$7 10082f7e f main.cpp.obj + 0001:00081f86 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$8 10082f86 f main.cpp.obj + 0001:00081f8e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$10 10082f8e f main.cpp.obj + 0001:00081f96 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$11 10082f96 f main.cpp.obj + 0001:00081f9e __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$12 10082f9e f main.cpp.obj + 0001:00081fa6 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$13 10082fa6 f main.cpp.obj + 0001:00081fae __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$14 10082fae f main.cpp.obj + 0001:00081fb6 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$15 10082fb6 f main.cpp.obj + 0001:00081fbe __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$16 10082fbe f main.cpp.obj + 0001:00081fc9 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$17 10082fc9 f main.cpp.obj + 0001:00081fd4 __unwindfunclet$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z$9 10082fd4 f main.cpp.obj + 0001:00081fe1 __ehhandler$??$createHook@P6IXIH_K@ZP6AXPAVPatchDetourBase@hadesmem@@IH0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IH_K@Z@Z 10082fe1 f main.cpp.obj + 0001:00082010 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$4 10083010 f main.cpp.obj + 0001:00082018 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$21 10083018 f main.cpp.obj + 0001:0008202a __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$22 1008302a f main.cpp.obj + 0001:0008204c __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$6 1008304c f main.cpp.obj + 0001:0008206e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$7 1008306e f main.cpp.obj + 0001:00082076 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$8 10083076 f main.cpp.obj + 0001:0008207e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$10 1008307e f main.cpp.obj + 0001:00082086 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$11 10083086 f main.cpp.obj + 0001:0008208e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$12 1008308e f main.cpp.obj + 0001:00082096 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$13 10083096 f main.cpp.obj + 0001:0008209e __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$14 1008309e f main.cpp.obj + 0001:000820a6 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$15 100830a6 f main.cpp.obj + 0001:000820ae __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$16 100830ae f main.cpp.obj + 0001:000820b9 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$17 100830b9 f main.cpp.obj + 0001:000820c4 __unwindfunclet$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z$9 100830c4 f main.cpp.obj + 0001:000820d1 __ehhandler$??$createHook@P6IXIW4SpellCastResult@game@@HH_N@ZP6AXPAVPatchDetourBase@hadesmem@@I0HH1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@IW4SpellCastResult@game@@HH_N@Z@Z 100830d1 f main.cpp.obj + 0001:00082100 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$4 10083100 f main.cpp.obj + 0001:00082108 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$21 10083108 f main.cpp.obj + 0001:0008211a __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$22 1008311a f main.cpp.obj + 0001:0008213c __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$6 1008313c f main.cpp.obj + 0001:0008215e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$7 1008315e f main.cpp.obj + 0001:00082166 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$8 10083166 f main.cpp.obj + 0001:0008216e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$10 1008316e f main.cpp.obj + 0001:00082176 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$11 10083176 f main.cpp.obj + 0001:0008217e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$12 1008317e f main.cpp.obj + 0001:00082186 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$13 10083186 f main.cpp.obj + 0001:0008218e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$14 1008318e f main.cpp.obj + 0001:00082196 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$15 10083196 f main.cpp.obj + 0001:0008219e __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$16 1008319e f main.cpp.obj + 0001:000821a9 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$17 100831a9 f main.cpp.obj + 0001:000821b4 __unwindfunclet$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z$9 100831b4 f main.cpp.obj + 0001:000821c1 __ehhandler$??$createHook@P6IXPAIPAXHE@ZP6AXPAVPatchDetourBase@hadesmem@@01HE@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXHE@Z@Z 100831c1 f main.cpp.obj + 0001:000821f0 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$4 100831f0 f main.cpp.obj + 0001:000821f8 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$21 100831f8 f main.cpp.obj + 0001:0008220a __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$22 1008320a f main.cpp.obj + 0001:0008222c __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$6 1008322c f main.cpp.obj + 0001:0008224e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$7 1008324e f main.cpp.obj + 0001:00082256 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$8 10083256 f main.cpp.obj + 0001:0008225e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$10 1008325e f main.cpp.obj + 0001:00082266 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$11 10083266 f main.cpp.obj + 0001:0008226e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$12 1008326e f main.cpp.obj + 0001:00082276 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$13 10083276 f main.cpp.obj + 0001:0008227e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$14 1008327e f main.cpp.obj + 0001:00082286 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$15 10083286 f main.cpp.obj + 0001:0008228e __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$16 1008328e f main.cpp.obj + 0001:00082299 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$17 10083299 f main.cpp.obj + 0001:000822a4 __unwindfunclet$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z$9 100832a4 f main.cpp.obj + 0001:000822b1 __ehhandler$??$createHook@P6IXPAIPAXII@ZP6AXPAVPatchDetourBase@hadesmem@@01II@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAIPAXII@Z@Z 100832b1 f main.cpp.obj + 0001:000822e0 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$4 100832e0 f main.cpp.obj + 0001:000822e8 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$21 100832e8 f main.cpp.obj + 0001:000822fa __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$22 100832fa f main.cpp.obj + 0001:0008231c __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$6 1008331c f main.cpp.obj + 0001:0008233e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$7 1008333e f main.cpp.obj + 0001:00082346 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$8 10083346 f main.cpp.obj + 0001:0008234e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$10 1008334e f main.cpp.obj + 0001:00082356 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$11 10083356 f main.cpp.obj + 0001:0008235e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$12 1008335e f main.cpp.obj + 0001:00082366 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$13 10083366 f main.cpp.obj + 0001:0008236e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$14 1008336e f main.cpp.obj + 0001:00082376 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$15 10083376 f main.cpp.obj + 0001:0008237e __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$16 1008337e f main.cpp.obj + 0001:00082389 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$17 10083389 f main.cpp.obj + 0001:00082394 __unwindfunclet$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z$9 10083394 f main.cpp.obj + 0001:000823a1 __ehhandler$??$createHook@P6IXPAUSpellCast@game@@D@ZP6AXPAVPatchDetourBase@hadesmem@@0D@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAUSpellCast@game@@D@Z@Z 100833a1 f main.cpp.obj + 0001:000823d0 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$4 100833d0 f main.cpp.obj + 0001:000823d8 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$21 100833d8 f main.cpp.obj + 0001:000823ea __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$22 100833ea f main.cpp.obj + 0001:0008240c __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$6 1008340c f main.cpp.obj + 0001:0008242e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$7 1008342e f main.cpp.obj + 0001:00082436 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$8 10083436 f main.cpp.obj + 0001:0008243e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$10 1008343e f main.cpp.obj + 0001:00082446 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$11 10083446 f main.cpp.obj + 0001:0008244e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$12 1008344e f main.cpp.obj + 0001:00082456 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$13 10083456 f main.cpp.obj + 0001:0008245e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$14 1008345e f main.cpp.obj + 0001:00082466 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$15 10083466 f main.cpp.obj + 0001:0008246e __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$16 1008346e f main.cpp.obj + 0001:00082479 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$17 10083479 f main.cpp.obj + 0001:00082484 __unwindfunclet$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z$9 10083484 f main.cpp.obj + 0001:00082491 __ehhandler$??$createHook@P6IXPAX0I@ZP6AXPAVPatchDetourBase@hadesmem@@00I@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3I@Z@Z 10083491 f main.cpp.obj + 0001:000824c0 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$4 100834c0 f main.cpp.obj + 0001:000824c8 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$21 100834c8 f main.cpp.obj + 0001:000824da __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$22 100834da f main.cpp.obj + 0001:000824fc __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$6 100834fc f main.cpp.obj + 0001:0008251e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$7 1008351e f main.cpp.obj + 0001:00082526 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$8 10083526 f main.cpp.obj + 0001:0008252e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$10 1008352e f main.cpp.obj + 0001:00082536 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$11 10083536 f main.cpp.obj + 0001:0008253e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$12 1008353e f main.cpp.obj + 0001:00082546 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$13 10083546 f main.cpp.obj + 0001:0008254e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$14 1008354e f main.cpp.obj + 0001:00082556 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$15 10083556 f main.cpp.obj + 0001:0008255e __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$16 1008355e f main.cpp.obj + 0001:00082569 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$17 10083569 f main.cpp.obj + 0001:00082574 __unwindfunclet$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z$9 10083574 f main.cpp.obj + 0001:00082581 __ehhandler$??$createHook@P6IXPAX0PAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAX3PAVCDataStore@0@@Z@Z 10083581 f main.cpp.obj + 0001:000825b0 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$4 100835b0 f main.cpp.obj + 0001:000825b8 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$21 100835b8 f main.cpp.obj + 0001:000825ca __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$22 100835ca f main.cpp.obj + 0001:000825ec __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$6 100835ec f main.cpp.obj + 0001:0008260e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$7 1008360e f main.cpp.obj + 0001:00082616 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$8 10083616 f main.cpp.obj + 0001:0008261e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$10 1008361e f main.cpp.obj + 0001:00082626 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$11 10083626 f main.cpp.obj + 0001:0008262e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$12 1008362e f main.cpp.obj + 0001:00082636 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$13 10083636 f main.cpp.obj + 0001:0008263e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$14 1008363e f main.cpp.obj + 0001:00082646 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$15 10083646 f main.cpp.obj + 0001:0008264e __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$16 1008364e f main.cpp.obj + 0001:00082659 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$17 10083659 f main.cpp.obj + 0001:00082664 __unwindfunclet$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z$9 10083664 f main.cpp.obj + 0001:00082671 __ehhandler$??$createHook@P6IXPAXHH@ZP6AXPAVPatchDetourBase@hadesmem@@0HH@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PAXHH@Z@Z 10083671 f main.cpp.obj + 0001:000826a0 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$4 100836a0 f main.cpp.obj + 0001:000826a8 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$21 100836a8 f main.cpp.obj + 0001:000826ba __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$22 100836ba f main.cpp.obj + 0001:000826dc __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$6 100836dc f main.cpp.obj + 0001:000826fe __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$7 100836fe f main.cpp.obj + 0001:00082706 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$8 10083706 f main.cpp.obj + 0001:0008270e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$10 1008370e f main.cpp.obj + 0001:00082716 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$11 10083716 f main.cpp.obj + 0001:0008271e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$12 1008371e f main.cpp.obj + 0001:00082726 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$13 10083726 f main.cpp.obj + 0001:0008272e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$14 1008372e f main.cpp.obj + 0001:00082736 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$15 10083736 f main.cpp.obj + 0001:0008273e __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$16 1008373e f main.cpp.obj + 0001:00082749 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$17 10083749 f main.cpp.obj + 0001:00082754 __unwindfunclet$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z$9 10083754 f main.cpp.obj + 0001:00082761 __ehhandler$??$createHook@P6IXPA_K0IPAVCDataStore@Nampower@@@ZP6AXPAVPatchDetourBase@hadesmem@@00I1@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@PA_K3IPAVCDataStore@0@@Z@Z 10083761 f main.cpp.obj + 0001:00082790 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$4 10083790 f main.cpp.obj + 0001:00082798 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$21 10083798 f main.cpp.obj + 0001:000827aa __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$22 100837aa f main.cpp.obj + 0001:000827cc __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$6 100837cc f main.cpp.obj + 0001:000827ee __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$7 100837ee f main.cpp.obj + 0001:000827f6 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$8 100837f6 f main.cpp.obj + 0001:000827fe __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$10 100837fe f main.cpp.obj + 0001:00082806 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$11 10083806 f main.cpp.obj + 0001:0008280e __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$12 1008380e f main.cpp.obj + 0001:00082816 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$13 10083816 f main.cpp.obj + 0001:0008281e __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$14 1008381e f main.cpp.obj + 0001:00082826 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$15 10083826 f main.cpp.obj + 0001:0008282e __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$16 1008382e f main.cpp.obj + 0001:00082839 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$17 10083839 f main.cpp.obj + 0001:00082844 __unwindfunclet$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z$9 10083844 f main.cpp.obj + 0001:00082851 __ehhandler$??$createHook@P6IX_K@ZP6AXPAVPatchDetourBase@hadesmem@@0@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_K@Z@Z 10083851 f main.cpp.obj + 0001:00082880 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$4 10083880 f main.cpp.obj + 0001:00082888 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$21 10083888 f main.cpp.obj + 0001:0008289a __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$22 1008389a f main.cpp.obj + 0001:000828bc __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$6 100838bc f main.cpp.obj + 0001:000828de __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$7 100838de f main.cpp.obj + 0001:000828e6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$8 100838e6 f main.cpp.obj + 0001:000828ee __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$10 100838ee f main.cpp.obj + 0001:000828f6 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$11 100838f6 f main.cpp.obj + 0001:000828fe __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$12 100838fe f main.cpp.obj + 0001:00082906 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$13 10083906 f main.cpp.obj + 0001:0008290e __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$14 1008390e f main.cpp.obj + 0001:00082916 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$15 10083916 f main.cpp.obj + 0001:0008291e __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$16 1008391e f main.cpp.obj + 0001:00082929 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$17 10083929 f main.cpp.obj + 0001:00082934 __unwindfunclet$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z$9 10083934 f main.cpp.obj + 0001:00082941 __ehhandler$??$createHook@P6IX_N0W4SpellCastResult@game@@@ZP6AXPAVPatchDetourBase@hadesmem@@001@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6AXPAVPatchDetourBase@4@_N3W4SpellCastResult@game@@@Z@Z 10083941 f main.cpp.obj + 0001:00082970 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$4 10083970 f main.cpp.obj + 0001:00082978 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$21 10083978 f main.cpp.obj + 0001:0008298a __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$22 1008398a f main.cpp.obj + 0001:000829ac __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$6 100839ac f main.cpp.obj + 0001:000829ce __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$7 100839ce f main.cpp.obj + 0001:000829d6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$8 100839d6 f main.cpp.obj + 0001:000829de __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$10 100839de f main.cpp.obj + 0001:000829e6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$11 100839e6 f main.cpp.obj + 0001:000829ee __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$12 100839ee f main.cpp.obj + 0001:000829f6 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$13 100839f6 f main.cpp.obj + 0001:000829fe __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$14 100839fe f main.cpp.obj + 0001:00082a06 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$15 10083a06 f main.cpp.obj + 0001:00082a0e __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$16 10083a0e f main.cpp.obj + 0001:00082a19 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$17 10083a19 f main.cpp.obj + 0001:00082a24 __unwindfunclet$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z$9 10083a24 f main.cpp.obj + 0001:00082a31 __ehhandler$??$createHook@P6I_NPAI0IM@ZP6A_NPAVPatchDetourBase@hadesmem@@00IM@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAI3IM@Z@Z 10083a31 f main.cpp.obj + 0001:00082a60 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$4 10083a60 f main.cpp.obj + 0001:00082a68 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$21 10083a68 f main.cpp.obj + 0001:00082a7a __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$22 10083a7a f main.cpp.obj + 0001:00082a9c __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$6 10083a9c f main.cpp.obj + 0001:00082abe __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$7 10083abe f main.cpp.obj + 0001:00082ac6 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$8 10083ac6 f main.cpp.obj + 0001:00082ace __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$10 10083ace f main.cpp.obj + 0001:00082ad6 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$11 10083ad6 f main.cpp.obj + 0001:00082ade __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$12 10083ade f main.cpp.obj + 0001:00082ae6 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$13 10083ae6 f main.cpp.obj + 0001:00082aee __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$14 10083aee f main.cpp.obj + 0001:00082af6 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$15 10083af6 f main.cpp.obj + 0001:00082afe __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$16 10083afe f main.cpp.obj + 0001:00082b09 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$17 10083b09 f main.cpp.obj + 0001:00082b14 __unwindfunclet$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z$9 10083b14 f main.cpp.obj + 0001:00082b21 __ehhandler$??$createHook@P6I_NPAIIPAUCGItem_C@game@@_K@ZP6A_NPAVPatchDetourBase@hadesmem@@0I12@Z@Nampower@@YA?AV?$unique_ptr@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@U?$default_delete@V?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@@std@@@std@@ABVProcess@hadesmem@@W4Offsets@@P6A_NPAVPatchDetourBase@4@PAIIPAUCGItem_C@game@@_K@Z@Z 10083b21 f main.cpp.obj + 0001:00082b50 __ehhandler$??$current_exception_cast@$$CBVexception@boost@@@boost@@YAPBVexception@0@XZ 10083b50 f main.cpp.obj + 0001:00082b70 __ehhandler$??$current_exception_cast@$$CBVexception@std@@@boost@@YAPBVexception@std@@XZ 10083b70 f main.cpp.obj + 0001:00082b90 __unwindfunclet$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z$0 10083b90 f main.cpp.obj + 0001:00082b9d __ehhandler$??$endl@DU?$char_traits@D@std@@@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@0@AAV10@@Z 10083b9d f main.cpp.obj + 0001:00082bc0 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$0 10083bc0 f main.cpp.obj + 0001:00082bc8 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$7 10083bc8 f main.cpp.obj + 0001:00082be1 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$8 10083be1 f main.cpp.obj + 0001:00082be9 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$13 10083be9 f main.cpp.obj + 0001:00082bf1 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$14 10083bf1 f main.cpp.obj + 0001:00082bf9 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$1 10083bf9 f main.cpp.obj + 0001:00082c01 __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$2 10083c01 f main.cpp.obj + 0001:00082c0d __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$3 10083c0d f main.cpp.obj + 0001:00082c1c __unwindfunclet$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$28 10083c1c f main.cpp.obj + 0001:00082c29 __ehhandler$??$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10083c29 f main.cpp.obj + 0001:00082c50 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$0 10083c50 f main.cpp.obj + 0001:00082c58 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$7 10083c58 f main.cpp.obj + 0001:00082c71 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$8 10083c71 f main.cpp.obj + 0001:00082c79 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$13 10083c79 f main.cpp.obj + 0001:00082c81 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$14 10083c81 f main.cpp.obj + 0001:00082c89 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$1 10083c89 f main.cpp.obj + 0001:00082c91 __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$2 10083c91 f main.cpp.obj + 0001:00082c9d __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$3 10083c9d f main.cpp.obj + 0001:00082cac __unwindfunclet$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ$28 10083cac f main.cpp.obj + 0001:00082cb9 __ehhandler$??$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ 10083cb9 f main.cpp.obj + 0001:00082ce0 __unwindfunclet$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z$0 10083ce0 f main.cpp.obj + 0001:00082cf4 __ehhandler$??$make_unique@VAllocator@hadesmem@@AAVProcess@2@ABI$0A@@std@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@0@AAVProcess@hadesmem@@ABI@Z 10083cf4 f main.cpp.obj + 0001:00082d20 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$0 10083d20 f main.cpp.obj + 0001:00082d28 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$1 10083d28 f main.cpp.obj + 0001:00082d37 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z$2 10083d37 f main.cpp.obj + 0001:00082d44 __ehhandler$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorCodeWinLast@hadesmem@@K@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@2@@Z 10083d44 f main.cpp.obj + 0001:00082d70 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$0 10083d70 f main.cpp.obj + 0001:00082d78 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$1 10083d78 f main.cpp.obj + 0001:00082d87 __unwindfunclet$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z$2 10083d87 f main.cpp.obj + 0001:00082d94 __ehhandler$??$set@VError@hadesmem@@@?$set_info_rv@V?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@@exception_detail@boost@@SAABVError@hadesmem@@ABV34@$$QAV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@Z 10083d94 f main.cpp.obj + 0001:00082dc0 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$0 10083dc0 f main.cpp.obj + 0001:00082dcb __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$1 10083dcb f main.cpp.obj + 0001:00082dd3 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$2 10083dd3 f main.cpp.obj + 0001:00082ddb __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$3 10083ddb f main.cpp.obj + 0001:00082de3 __unwindfunclet$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z$4 10083de3 f main.cpp.obj + 0001:00082df0 __ehhandler$??$to_string@UTagErrorCodeWinLast@hadesmem@@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorCodeWinLast@hadesmem@@K@0@@Z 10083df0 f main.cpp.obj + 0001:00082e20 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$10 10083e20 f main.cpp.obj + 0001:00082e42 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$9 10083e42 f main.cpp.obj + 0001:00082e4d __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$0 10083e4d f main.cpp.obj + 0001:00082e58 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$1 10083e58 f main.cpp.obj + 0001:00082e60 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$2 10083e60 f main.cpp.obj + 0001:00082e68 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$3 10083e68 f main.cpp.obj + 0001:00082e70 __unwindfunclet$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z$4 10083e70 f main.cpp.obj + 0001:00082e7d __ehhandler$??$to_string@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABV?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@0@@Z 10083e7d f main.cpp.obj + 0001:00082eb0 __unwindfunclet$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z$4 10083eb0 f main.cpp.obj + 0001:00082ec9 __unwindfunclet$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z$3 10083ec9 f main.cpp.obj + 0001:00082ed9 __ehhandler$??$to_string_stub@K@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@ABK@Z 10083ed9 f main.cpp.obj + 0001:00082f00 __unwindfunclet$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z$0 10083f00 f main.cpp.obj + 0001:00082f08 __unwindfunclet$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z$1 10083f08 f main.cpp.obj + 0001:00082f15 __ehhandler$??$use_facet@V?$numpunct@D@std@@@std@@YAABV?$numpunct@D@0@ABVlocale@0@@Z 10083f15 f main.cpp.obj + 0001:00082f40 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$0 10083f40 f main.cpp.obj + 0001:00082f48 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$2 10083f48 f main.cpp.obj + 0001:00082f57 __unwindfunclet$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z$1 10083f57 f main.cpp.obj + 0001:00082f64 __ehhandler$??$use_facet@V?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@@std@@YAABV?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@0@ABVlocale@0@@Z 10083f64 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f90 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$0 10083f90 f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082f9b __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$13 10083f9b f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fa3 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$1 10083fa3 f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fae __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$2 10083fae f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fb9 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$3 10083fb9 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fc4 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$4 10083fc4 f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fcf __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$5 10083fcf f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fda __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$7 10083fda f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fe5 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$8 10083fe5 f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082fed __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$9 10083fed f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00082ff5 __unwindfunclet$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z$10 10083ff5 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6GHPAIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6GXXZPAX@hadesmem@@QAE@ABVProcess@1@P6GXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHIIIPAVCDataStore@Nampower@@@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@Nampower@@@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IHPAI@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IH_K@ZABV?$function@$$A6AHPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIHPAI1@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@HPAI1@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAI@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IIPAUCTerrainClickEvent@game@@@ZABV?$function@$$A6AIPAVPatchDetourBase@hadesmem@@PAUCTerrainClickEvent@game@@@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IPAHPAI@ZABV?$function@$$A6APAHPAVPatchDetourBase@hadesmem@@PAI@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXEH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXEH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@EH@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXHI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXHI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@HI@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXI@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXI@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@I@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IHH@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIH_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IH_K@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXIW4SpellCastResult@game@@HH_N@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXHE@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXHE@Z@std@@2@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAIPAXII@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAIPAXII@Z@std@@2@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAUSpellCast@game@@D@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAUSpellCast@game@@D@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1I@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1I@Z@std@@1@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAX1PAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAX1PAVCDataStore@Nampower@@@Z@std@@1@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPAXHH@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PAXHH@Z@std@@1@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IXPA_K1IPAVCDataStore@Nampower@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@Nampower@@@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IXXZPAX@hadesmem@@QAE@ABVProcess@1@P6IXXZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IX_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_K@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_K@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@QAE@ABVProcess@1@P6IX_N1W4SpellCastResult@game@@@ZABV?$function@$$A6AXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAI1IM@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAI1IM@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083005 __ehhandler$??0?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@QAE@ABVProcess@1@P6I_NPAIIPAUCGItem_C@game@@_K@ZABV?$function@$$A6A_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z@std@@PAX@Z 10084005 f main.cpp.obj + 0001:00083030 __unwindfunclet$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$0 10084030 f main.cpp.obj + 0001:0008304c __unwindfunclet$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z$1 1008404c f main.cpp.obj + 0001:0008305c __ehhandler$??0?$basic_iostream@DU?$char_traits@D@std@@@std@@QAE@PAV?$basic_streambuf@DU?$char_traits@D@std@@@1@@Z 1008405c f main.cpp.obj + 0001:00083080 __unwindfunclet$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ$0 10084080 f main.cpp.obj + 0001:0008309c __unwindfunclet$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ$1 1008409c f main.cpp.obj + 0001:000830ac __ehhandler$??0?$basic_ostringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ 100840ac f main.cpp.obj + 0001:000830d0 __unwindfunclet$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z$0 100840d0 f main.cpp.obj + 0001:000830d0 __unwindfunclet$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z$0 100840d0 f main.cpp.obj + 0001:000830f1 __ehhandler$??0?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100840f1 f main.cpp.obj + 0001:000830f1 __ehhandler$??0?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@QAE@ABV012@@Z 100840f1 f main.cpp.obj + 0001:00083110 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$0 10084110 f main.cpp.obj + 0001:0008312c __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$1 1008412c f main.cpp.obj + 0001:00083148 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z$2 10084148 f main.cpp.obj + 0001:00083155 __ehhandler$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABU01@@Z 10084155 f main.cpp.obj + 0001:00083180 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$0 10084180 f main.cpp.obj + 0001:0008319c __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$1 1008419c f main.cpp.obj + 0001:000831b8 __unwindfunclet$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z$2 100841b8 f main.cpp.obj + 0001:000831c5 __ehhandler$??0?$wrapexcept@VError@hadesmem@@@boost@@QAE@ABVError@hadesmem@@ABUsource_location@1@@Z 100841c5 f main.cpp.obj + 0001:000831f0 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$0 100841f0 f main.cpp.obj + 0001:000831f0 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$0 100841f0 f main.cpp.obj + 0001:000831f0 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$0 100841f0 f main.cpp.obj + 0001:000831f0 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$0 100841f0 f main.cpp.obj + 0001:000831f8 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$1 100841f8 f main.cpp.obj + 0001:000831f8 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$1 100841f8 f main.cpp.obj + 0001:000831f8 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$1 100841f8 f main.cpp.obj + 0001:000831f8 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$1 100841f8 f main.cpp.obj + 0001:00083200 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$2 10084200 f main.cpp.obj + 0001:00083200 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$2 10084200 f main.cpp.obj + 0001:00083200 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$2 10084200 f main.cpp.obj + 0001:00083200 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$2 10084200 f main.cpp.obj + 0001:00083208 __unwindfunclet$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z$3 10084208 f main.cpp.obj + 0001:00083208 __unwindfunclet$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ$3 10084208 f main.cpp.obj + 0001:00083208 __unwindfunclet$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z$3 10084208 f main.cpp.obj + 0001:00083208 __unwindfunclet$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z$3 10084208 f main.cpp.obj + 0001:00083215 __ehhandler$??0Allocator@hadesmem@@QAE@ABVProcess@1@KPAX_N@Z 10084215 f main.cpp.obj + 0001:00083215 __ehhandler$?Cleanup@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@QAEXXZ 10084215 f main.cpp.obj + 0001:00083215 __ehhandler$?FlushInstructionCache@hadesmem@@YAXABVProcess@1@PBXK@Z 10084215 f main.cpp.obj + 0001:00083215 __ehhandler$?Query@detail@hadesmem@@YA?AU_MEMORY_BASIC_INFORMATION@@ABVProcess@2@PBX@Z 10084215 f main.cpp.obj + 0001:00083240 __unwindfunclet$??0Error@hadesmem@@QAE@ABV01@@Z$0 10084240 f main.cpp.obj + 0001:00083261 __ehhandler$??0Error@hadesmem@@QAE@ABV01@@Z 10084261 f main.cpp.obj + 0001:00083280 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$0 10084280 f main.cpp.obj + 0001:00083288 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$3 10084288 f main.cpp.obj + 0001:00083290 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$4 10084290 f main.cpp.obj + 0001:00083298 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$5 10084298 f main.cpp.obj + 0001:000832a0 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$6 100842a0 f main.cpp.obj + 0001:000832ab __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$8 100842ab f main.cpp.obj + 0001:000832b3 __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$9 100842b3 f main.cpp.obj + 0001:000832bb __unwindfunclet$??0Process@hadesmem@@QAE@K@Z$10 100842bb f main.cpp.obj + 0001:000832cb __ehhandler$??0Process@hadesmem@@QAE@K@Z 100842cb f main.cpp.obj + 0001:00083300 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$2 10084300 f main.cpp.obj + 0001:00083308 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$3 10084308 f main.cpp.obj + 0001:00083310 __unwindfunclet$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z$4 10084310 f main.cpp.obj + 0001:0008331d __ehhandler$??0ProtectGuard@detail@hadesmem@@QAE@ABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@W4ProtectGuardType@12@@Z 1008431d f main.cpp.obj + 0001:00083350 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$2 10084350 f main.cpp.obj + 0001:0008335b __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$3 1008435b f main.cpp.obj + 0001:00083363 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$4 10084363 f main.cpp.obj + 0001:0008336e __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$5 1008436e f main.cpp.obj + 0001:00083379 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$15 10084379 f main.cpp.obj + 0001:00083384 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$6 10084384 f main.cpp.obj + 0001:0008338f __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$42 1008438f f main.cpp.obj + 0001:00083397 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$7 10084397 f main.cpp.obj + 0001:0008339f __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$30 1008439f f main.cpp.obj + 0001:000833a7 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$31 100843a7 f main.cpp.obj + 0001:000833b2 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$32 100843b2 f main.cpp.obj + 0001:000833ba __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$33 100843ba f main.cpp.obj + 0001:000833c5 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$35 100843c5 f main.cpp.obj + 0001:000833cd __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$36 100843cd f main.cpp.obj + 0001:000833d8 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$37 100843d8 f main.cpp.obj + 0001:000833e0 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$38 100843e0 f main.cpp.obj + 0001:000833eb __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$39 100843eb f main.cpp.obj + 0001:000833f3 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$40 100843f3 f main.cpp.obj + 0001:000833fb __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$41 100843fb f main.cpp.obj + 0001:00083406 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$8 10084406 f main.cpp.obj + 0001:0008340e __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$9 1008440e f main.cpp.obj + 0001:00083416 __unwindfunclet$??0SuspendedProcess@hadesmem@@QAE@KK@Z$10 10084416 f main.cpp.obj + 0001:00083426 __ehhandler$??0SuspendedProcess@hadesmem@@QAE@KK@Z 10084426 f main.cpp.obj + 0001:00083450 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$3 10084450 f main.cpp.obj + 0001:00083450 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$0 10084450 f main.cpp.obj + 0001:00083450 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$0 10084450 f main.cpp.obj + 0001:00083450 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$0 10084450 f main.cpp.obj + 0001:00083450 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$0 10084450 f main.cpp.obj + 0001:00083458 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$4 10084458 f main.cpp.obj + 0001:00083458 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$1 10084458 f main.cpp.obj + 0001:00083458 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$1 10084458 f main.cpp.obj + 0001:00083458 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$1 10084458 f main.cpp.obj + 0001:00083458 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$1 10084458 f main.cpp.obj + 0001:00083460 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$5 10084460 f main.cpp.obj + 0001:00083460 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$2 10084460 f main.cpp.obj + 0001:00083460 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$2 10084460 f main.cpp.obj + 0001:00083460 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$2 10084460 f main.cpp.obj + 0001:00083460 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$2 10084460 f main.cpp.obj + 0001:00083468 __unwindfunclet$??0Thread@hadesmem@@QAE@K@Z$6 10084468 f main.cpp.obj + 0001:00083468 __unwindfunclet$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z$3 10084468 f main.cpp.obj + 0001:00083468 __unwindfunclet$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z$3 10084468 f main.cpp.obj + 0001:00083468 __unwindfunclet$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$3 10084468 f main.cpp.obj + 0001:00083468 __unwindfunclet$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$3 10084468 f main.cpp.obj + 0001:00083475 __ehhandler$??0Thread@hadesmem@@QAE@K@Z 10084475 f main.cpp.obj + 0001:00083475 __ehhandler$?IsWoW64Process@detail@hadesmem@@YA_NPAX@Z 10084475 f main.cpp.obj + 0001:00083475 __ehhandler$?Protect@detail@hadesmem@@YAKABVProcess@2@ABU_MEMORY_BASIC_INFORMATION@@K@Z 10084475 f main.cpp.obj + 0001:00083475 __ehhandler$?ReadUnchecked@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 10084475 f main.cpp.obj + 0001:00083475 __ehhandler$?WriteUnchecked@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 10084475 f main.cpp.obj + 0001:000834a0 __unwindfunclet$??0error_info_container_impl@exception_detail@boost@@QAE@XZ$0 100844a0 f main.cpp.obj + 0001:000834ad __ehhandler$??0error_info_container_impl@exception_detail@boost@@QAE@XZ 100844ad f main.cpp.obj + 0001:000834d0 __unwindfunclet$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z$0 100844d0 f main.cpp.obj + 0001:000834dd __ehhandler$??0sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@AAV12@@Z 100844dd f main.cpp.obj + 0001:00083500 __ehhandler$??1CDataStore@Nampower@@UAE@XZ 10084500 f main.cpp.obj + 0001:00083500 __ehhandler$??1_Sentry_base@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ 10084500 f main.cpp.obj + 0001:00083520 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$2 10084520 f main.cpp.obj + 0001:00083528 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z$3 10084528 f main.cpp.obj + 0001:00083535 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@H@Z 10084535 f main.cpp.obj + 0001:00083560 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$2 10084560 f main.cpp.obj + 0001:00083560 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$2 10084560 f main.cpp.obj + 0001:00083568 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z$3 10084568 f main.cpp.obj + 0001:00083568 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z$3 10084568 f main.cpp.obj + 0001:00083575 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@I@Z 10084575 f main.cpp.obj + 0001:00083575 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@K@Z 10084575 f main.cpp.obj + 0001:000835a0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$2 100845a0 f main.cpp.obj + 0001:000835a8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z$3 100845a8 f main.cpp.obj + 0001:000835b5 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@M@Z 100845b5 f main.cpp.obj + 0001:000835e0 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$2 100845e0 f main.cpp.obj + 0001:000835e8 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z$3 100845e8 f main.cpp.obj + 0001:000835f5 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@PBX@Z 100845f5 f main.cpp.obj + 0001:00083620 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$2 10084620 f main.cpp.obj + 0001:00083628 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z$3 10084628 f main.cpp.obj + 0001:00083635 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_J@Z 10084635 f main.cpp.obj + 0001:00083660 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$2 10084660 f main.cpp.obj + 0001:00083668 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z$3 10084668 f main.cpp.obj + 0001:00083675 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_N@Z 10084675 f main.cpp.obj + 0001:000836a0 __unwindfunclet$??R@@QBE@XZ$0 100846a0 f main.cpp.obj + 0001:000836a8 __unwindfunclet$??R@@QBE@XZ$2 100846a8 f main.cpp.obj + 0001:000836b7 __unwindfunclet$??R@@QBE@XZ$3 100846b7 f main.cpp.obj + 0001:000836d5 __ehhandler$??R@@QBE@XZ 100846d5 f main.cpp.obj + 0001:00083700 __unwindfunclet$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ$1 10084700 f main.cpp.obj + 0001:00083700 __unwindfunclet$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ$1 10084700 f main.cpp.obj + 0001:0008370d __ehhandler$?Advance@?$ThreadIterator@$$CBVThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 1008470d f main.cpp.obj + 0001:0008370d __ehhandler$?Advance@?$ThreadIterator@VThreadEntry@hadesmem@@@hadesmem@@AAEXXZ 1008470d f main.cpp.obj + 0001:00083740 __unwindfunclet$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z$2 10084740 f main.cpp.obj + 0001:00083754 __ehhandler$?AllocatePageNear@detail@hadesmem@@YA?AV?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@ABVProcess@2@PAX@Z 10084754 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:00083780 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$12 10084780 f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:0008378b __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$1 1008478b f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:00083796 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$14 10084796 f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:0008379e __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$3 1008479e f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837a6 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$4 100847a6 f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837ae __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$5 100847ae f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837b9 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$7 100847b9 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c1 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$8 100847c1 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837c9 __unwindfunclet$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$9 100847c9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:000837d9 __ehhandler$?Apply@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 100847d9 f main.cpp.obj + 0001:00083810 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$2 10084810 f main.cpp.obj + 0001:0008381d __ehhandler$?CleanupUnchecked@?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 1008481d f main.cpp.obj + 0001:00083850 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$2 10084850 f main.cpp.obj + 0001:00083858 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$3 10084858 f main.cpp.obj + 0001:00083860 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$4 10084860 f main.cpp.obj + 0001:00083868 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$5 10084868 f main.cpp.obj + 0001:00083870 __unwindfunclet$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ$6 10084870 f main.cpp.obj + 0001:00083880 __ehhandler$?CleanupUnchecked@?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@detail@hadesmem@@AAEXXZ 10084880 f main.cpp.obj + 0001:000838b0 __unwindfunclet$?CleanupUnchecked@Process@hadesmem@@AAEXXZ$2 100848b0 f main.cpp.obj + 0001:000838bd __ehhandler$?CleanupUnchecked@Process@hadesmem@@AAEXXZ 100848bd f main.cpp.obj + 0001:000838f0 __unwindfunclet$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ$2 100848f0 f main.cpp.obj + 0001:000838fd __ehhandler$?CleanupUnchecked@Thread@hadesmem@@AAEXXZ 100848fd f main.cpp.obj + 0001:00083930 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$0 10084930 f main.cpp.obj + 0001:00083949 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$1 10084949 f main.cpp.obj + 0001:00083951 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$2 10084951 f main.cpp.obj + 0001:00083959 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$3 10084959 f main.cpp.obj + 0001:00083961 __unwindfunclet$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z$4 10084961 f main.cpp.obj + 0001:0008396e __ehhandler$?CreateToolhelp32Snapshot@detail@hadesmem@@YA?AV?$SmartHandleImpl@USnapPolicy@detail@hadesmem@@@12@KK@Z 1008496e f main.cpp.obj + 0001:000839a0 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$0 100849a0 f main.cpp.obj + 0001:000839a8 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$1 100849a8 f main.cpp.obj + 0001:000839b0 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$2 100849b0 f main.cpp.obj + 0001:000839b8 __unwindfunclet$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z$3 100849b8 f main.cpp.obj + 0001:000839c5 __ehhandler$?DuplicateHandle@detail@hadesmem@@YA?AV?$SmartHandleImpl@UHandlePolicy@detail@hadesmem@@@12@PAX@Z 100849c5 f main.cpp.obj + 0001:000839f0 __unwindfunclet$?GetUnitGuidFromString@Nampower@@YA_KPBD@Z$0 100849f0 f helper.cpp.obj + 0001:000839f0 __unwindfunclet$?DoesItemMatch@Nampower@@YA_NIIPBD@Z$0 100849f0 f items.cpp.obj + 0001:000839f0 __unwindfunclet$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z$0 100849f0 f main.cpp.obj + 0001:000839f0 __unwindfunclet$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z$0 100849f0 f spell_scripts.cpp.obj + 0001:000839f0 __unwindfunclet$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z$0 100849f0 f spellcast.cpp.obj + 0001:000839fd __ehhandler$?GetUnitGuidFromString@Nampower@@YA_KPBD@Z 100849fd f helper.cpp.obj + 0001:000839fd __ehhandler$?DoesItemMatch@Nampower@@YA_NIIPBD@Z 100849fd f items.cpp.obj + 0001:000839fd __ehhandler$?Framescript_SetEventCountHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PAX1I@Z 100849fd f main.cpp.obj + 0001:000839fd __ehhandler$?Script_GetSpellNameAndRankForId@Nampower@@YAIPAI@Z 100849fd f spell_scripts.cpp.obj + 0001:000839fd __ehhandler$?push@CastQueue@Nampower@@QAEXABUCastSpellParams@@_N@Z 100849fd f spellcast.cpp.obj + 0001:00083a30 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$2 10084a30 f main.cpp.obj + 0001:00083a38 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$3 10084a38 f main.cpp.obj + 0001:00083a40 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$4 10084a40 f main.cpp.obj + 0001:00083a48 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$5 10084a48 f main.cpp.obj + 0001:00083a50 __unwindfunclet$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ$6 10084a50 f main.cpp.obj + 0001:00083a60 __ehhandler$?FreeUnchecked@Allocator@hadesmem@@AAEXXZ 10084a60 f main.cpp.obj + 0001:00083a90 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$2 10084a90 f main.cpp.obj + 0001:00083aa9 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$3 10084aa9 f main.cpp.obj + 0001:00083ab4 __unwindfunclet$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ$0 10084ab4 f main.cpp.obj + 0001:00083ac4 __ehhandler$?GetHumanReadableTime@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ 10084ac4 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af0 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$0 10084af0 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083af8 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$1 10084af8 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b00 __unwindfunclet$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ$2 10084b00 f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6GXXZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXI@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IXXZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b0d __ehhandler$?GetPatchSize@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@MBEIXZ 10084b0d f main.cpp.obj + 0001:00083b40 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$0 10084b40 f main.cpp.obj + 0001:00083b48 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$1 10084b48 f main.cpp.obj + 0001:00083b50 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$2 10084b50 f main.cpp.obj + 0001:00083b5b __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$3 10084b5b f main.cpp.obj + 0001:00083b63 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$4 10084b63 f main.cpp.obj + 0001:00083b6b __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$5 10084b6b f main.cpp.obj + 0001:00083b73 __unwindfunclet$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z$6 10084b73 f main.cpp.obj + 0001:00083b83 __ehhandler$?GetThreadContext@hadesmem@@YA?AU_CONTEXT@@ABVThread@1@K@Z 10084b83 f main.cpp.obj + 0001:00083bb0 __unwindfunclet$?LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z$0 10084bb0 f main.cpp.obj + 0001:00083bc0 __ehhandler$?LoadScriptFunctionsHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 10084bc0 f main.cpp.obj + 0001:00083bf0 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$1 10084bf0 f main.cpp.obj + 0001:00083bfb __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$0 10084bfb f main.cpp.obj + 0001:00083c06 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$2 10084c06 f main.cpp.obj + 0001:00083c0e __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$3 10084c0e f main.cpp.obj + 0001:00083c19 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$4 10084c19 f main.cpp.obj + 0001:00083c21 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$5 10084c21 f main.cpp.obj + 0001:00083c2c __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$6 10084c2c f main.cpp.obj + 0001:00083c34 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$7 10084c34 f main.cpp.obj + 0001:00083c3f __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$8 10084c3f f main.cpp.obj + 0001:00083c47 __unwindfunclet$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z$9 10084c47 f main.cpp.obj + 0001:00083c57 __ehhandler$?ReadImpl@detail@hadesmem@@YAXABVProcess@2@PAX1II@Z 10084c57 f main.cpp.obj + 0001:00083c90 __unwindfunclet$?CacheItemNameToId@Nampower@@YAXPBDI@Z$0 10084c90 f items.cpp.obj + 0001:00083c90 __unwindfunclet$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z$0 10084c90 f main.cpp.obj + 0001:00083c90 __unwindfunclet$?addCustomEvent@Nampower@@YAXIPAD@Z$0 10084c90 f main.cpp.obj + 0001:00083c90 __unwindfunclet$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z$0 10084c90 f spell_scripts.cpp.obj + 0001:00083c90 __unwindfunclet$?TriggerQuickcast@Nampower@@YAXXZ$0 10084c90 f spellcast.cpp.obj + 0001:00083c9d __ehhandler$?CacheItemNameToId@Nampower@@YAXPBDI@Z 10084c9d f items.cpp.obj + 0001:00083c9d __ehhandler$?RegisterLuaFunction@Nampower@@YAXPADPAI@Z 10084c9d f main.cpp.obj + 0001:00083c9d __ehhandler$?addCustomEvent@Nampower@@YAXIPAD@Z 10084c9d f main.cpp.obj + 0001:00083c9d __ehhandler$?Script_SpellStopCastingHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 10084c9d f spell_scripts.cpp.obj + 0001:00083c9d __ehhandler$?TriggerQuickcast@Nampower@@YAXXZ 10084c9d f spellcast.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cd0 __unwindfunclet$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$0 10084cd0 f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083cdd __ehhandler$?Remove@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 10084cdd f main.cpp.obj + 0001:00083d00 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10084d00 f main.cpp.obj + 0001:00083d0d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6GHPAIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084d0d f main.cpp.obj + 0001:00083d40 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ$2 10084d40 f main.cpp.obj + 0001:00083d4d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6GXXZPAX@hadesmem@@UAEXXZ 10084d4d f main.cpp.obj + 0001:00083d80 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10084d80 f main.cpp.obj + 0001:00083d8d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IHIIIPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 10084d8d f main.cpp.obj + 0001:00083dc0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ$2 10084dc0 f main.cpp.obj + 0001:00083dcd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IHPAI@ZPAX@hadesmem@@UAEXXZ 10084dcd f main.cpp.obj + 0001:00083e00 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ$2 10084e00 f main.cpp.obj + 0001:00083e0d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IH_K@ZPAX@hadesmem@@UAEXXZ 10084e0d f main.cpp.obj + 0001:00083e40 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ$2 10084e40 f main.cpp.obj + 0001:00083e4d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIHPAI0@ZPAX@hadesmem@@UAEXXZ 10084e4d f main.cpp.obj + 0001:00083e80 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ$2 10084e80 f main.cpp.obj + 0001:00083e8d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIPAI@ZPAX@hadesmem@@UAEXXZ 10084e8d f main.cpp.obj + 0001:00083ec0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ$2 10084ec0 f main.cpp.obj + 0001:00083ecd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IIPAUCTerrainClickEvent@game@@@ZPAX@hadesmem@@UAEXXZ 10084ecd f main.cpp.obj + 0001:00083f00 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ$2 10084f00 f main.cpp.obj + 0001:00083f0d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IPAHPAI@ZPAX@hadesmem@@UAEXXZ 10084f0d f main.cpp.obj + 0001:00083f40 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ$2 10084f40 f main.cpp.obj + 0001:00083f4d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXEH@ZPAX@hadesmem@@UAEXXZ 10084f4d f main.cpp.obj + 0001:00083f80 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ$2 10084f80 f main.cpp.obj + 0001:00083f8d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXHI@ZPAX@hadesmem@@UAEXXZ 10084f8d f main.cpp.obj + 0001:00083fc0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ$2 10084fc0 f main.cpp.obj + 0001:00083fcd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXI@ZPAX@hadesmem@@UAEXXZ 10084fcd f main.cpp.obj + 0001:00084000 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ$2 10085000 f main.cpp.obj + 0001:0008400d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIHH@ZPAX@hadesmem@@UAEXXZ 1008500d f main.cpp.obj + 0001:00084040 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ$2 10085040 f main.cpp.obj + 0001:0008404d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIH_K@ZPAX@hadesmem@@UAEXXZ 1008504d f main.cpp.obj + 0001:00084080 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ$2 10085080 f main.cpp.obj + 0001:0008408d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXIW4SpellCastResult@game@@HH_N@ZPAX@hadesmem@@UAEXXZ 1008508d f main.cpp.obj + 0001:000840c0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ$2 100850c0 f main.cpp.obj + 0001:000840cd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXHE@ZPAX@hadesmem@@UAEXXZ 100850cd f main.cpp.obj + 0001:00084100 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ$2 10085100 f main.cpp.obj + 0001:0008410d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAIPAXII@ZPAX@hadesmem@@UAEXXZ 1008510d f main.cpp.obj + 0001:00084140 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ$2 10085140 f main.cpp.obj + 0001:0008414d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAUSpellCast@game@@D@ZPAX@hadesmem@@UAEXXZ 1008514d f main.cpp.obj + 0001:00084180 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ$2 10085180 f main.cpp.obj + 0001:0008418d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAX0I@ZPAX@hadesmem@@UAEXXZ 1008518d f main.cpp.obj + 0001:000841c0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 100851c0 f main.cpp.obj + 0001:000841cd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAX0PAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 100851cd f main.cpp.obj + 0001:00084200 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ$2 10085200 f main.cpp.obj + 0001:0008420d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPAXHH@ZPAX@hadesmem@@UAEXXZ 1008520d f main.cpp.obj + 0001:00084240 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ$2 10085240 f main.cpp.obj + 0001:0008424d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXPA_K0IPAVCDataStore@Nampower@@@ZPAX@hadesmem@@UAEXXZ 1008524d f main.cpp.obj + 0001:00084280 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ$2 10085280 f main.cpp.obj + 0001:0008428d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IXXZPAX@hadesmem@@UAEXXZ 1008528d f main.cpp.obj + 0001:000842c0 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ$2 100852c0 f main.cpp.obj + 0001:000842cd __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IX_K@ZPAX@hadesmem@@UAEXXZ 100852cd f main.cpp.obj + 0001:00084300 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ$2 10085300 f main.cpp.obj + 0001:0008430d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6IX_N0W4SpellCastResult@game@@@ZPAX@hadesmem@@UAEXXZ 1008530d f main.cpp.obj + 0001:00084340 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ$2 10085340 f main.cpp.obj + 0001:0008434d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_NPAI0IM@ZPAX@hadesmem@@UAEXXZ 1008534d f main.cpp.obj + 0001:00084380 __unwindfunclet$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ$2 10085380 f main.cpp.obj + 0001:0008438d __ehhandler$?RemoveUnchecked@?$PatchDetour@P6I_NPAIIPAUCGItem_C@game@@_K@ZPAX@hadesmem@@UAEXXZ 1008538d f main.cpp.obj + 0001:000843c0 __unwindfunclet$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$3 100853c0 f main.cpp.obj + 0001:000843c8 __unwindfunclet$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ$2 100853c8 f main.cpp.obj + 0001:000843d5 __ehhandler$?RemoveUnchecked@PatchRaw@hadesmem@@AAEXXZ 100853d5 f main.cpp.obj + 0001:00084400 __unwindfunclet$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ$2 10085400 f main.cpp.obj + 0001:0008440d __ehhandler$?RestoreUnchecked@ProtectGuard@detail@hadesmem@@QAEXXZ 1008540d f main.cpp.obj + 0001:00084440 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$2 10085440 f main.cpp.obj + 0001:00084448 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$3 10085448 f main.cpp.obj + 0001:00084450 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$4 10085450 f main.cpp.obj + 0001:00084458 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$5 10085458 f main.cpp.obj + 0001:00084460 __unwindfunclet$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ$6 10085460 f main.cpp.obj + 0001:00084470 __ehhandler$?ResumeUnchecked@SuspendedThread@hadesmem@@AAEXXZ 10085470 f main.cpp.obj + 0001:000844a0 __unwindfunclet$?SetSelectionTarget@Nampower@@YAX_K@Z$0 100854a0 f main.cpp.obj + 0001:000844ad __ehhandler$?SetSelectionTarget@Nampower@@YAX_K@Z 100854ad f main.cpp.obj + 0001:000844d0 __unwindfunclet$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z$0 100854d0 f main.cpp.obj + 0001:000844d0 __unwindfunclet$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ$0 100854d0 f main.cpp.obj + 0001:000844d0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ$0 100854d0 f main.cpp.obj + 0001:000844dd __ehhandler$?Stub@?$PatchDetourStub@P6GHPAIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SGHPAIPAVCDataStore@Nampower@@@Z 100854dd f main.cpp.obj + 0001:000844dd __ehhandler$?Stub@?$PatchDetourStub@P6GXXZ@detail@hadesmem@@SGXXZ 100854dd f main.cpp.obj + 0001:000844dd __ehhandler$?Stub@?$PatchDetourStub@P6IXXZ@detail@hadesmem@@SIXXZ 100854dd f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIHPAI0@Z@detail@hadesmem@@SIIHPAI0@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z$0 10085500 f main.cpp.obj + 0001:00084500 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z$0 10085500 f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IHIIIPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIHIIIPAVCDataStore@Nampower@@@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IIHPAI0@Z@detail@hadesmem@@SIIHPAI0@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXEH@Z@detail@hadesmem@@SIXEH@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXHI@Z@detail@hadesmem@@SIXHI@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXIHH@Z@detail@hadesmem@@SIXIHH@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXIW4SpellCastResult@game@@HH_N@Z@detail@hadesmem@@SIXIW4SpellCastResult@game@@HH_N@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAIPAXHE@Z@detail@hadesmem@@SIXPAIPAXHE@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAIPAXII@Z@detail@hadesmem@@SIXPAIPAXII@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAUSpellCast@game@@D@Z@detail@hadesmem@@SIXPAUSpellCast@game@@D@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAX0I@Z@detail@hadesmem@@SIXPAX0I@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAX0PAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPAX0PAVCDataStore@Nampower@@@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXPAXHH@Z@detail@hadesmem@@SIXPAXHH@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6IXPA_K0IPAVCDataStore@Nampower@@@Z@detail@hadesmem@@SIXPA_K0IPAVCDataStore@Nampower@@@Z 1008550d f main.cpp.obj + 0001:0008450d __ehhandler$?Stub@?$PatchDetourStub@P6I_NPAI0IM@Z@detail@hadesmem@@SI_NPAI0IM@Z 1008550d f main.cpp.obj + 0001:00084530 __unwindfunclet$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z$0 10085530 f main.cpp.obj + 0001:00084530 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z$0 10085530 f main.cpp.obj + 0001:00084530 __unwindfunclet$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z$0 10085530 f main.cpp.obj + 0001:00084530 __unwindfunclet$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z$0 10085530 f main.cpp.obj + 0001:00084530 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z$0 10085530 f main.cpp.obj + 0001:0008453d __ehhandler$?Stub@?$PatchDetourStub@P6IHPAI@Z@detail@hadesmem@@SIHPAI@Z 1008553d f main.cpp.obj + 0001:0008453d __ehhandler$?Stub@?$PatchDetourStub@P6IIPAI@Z@detail@hadesmem@@SIIPAI@Z 1008553d f main.cpp.obj + 0001:0008453d __ehhandler$?Stub@?$PatchDetourStub@P6IIPAUCTerrainClickEvent@game@@@Z@detail@hadesmem@@SIIPAUCTerrainClickEvent@game@@@Z 1008553d f main.cpp.obj + 0001:0008453d __ehhandler$?Stub@?$PatchDetourStub@P6IPAHPAI@Z@detail@hadesmem@@SIPAHPAI@Z 1008553d f main.cpp.obj + 0001:0008453d __ehhandler$?Stub@?$PatchDetourStub@P6IXI@Z@detail@hadesmem@@SIXI@Z 1008553d f main.cpp.obj + 0001:00084560 __unwindfunclet$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z$0 10085560 f main.cpp.obj + 0001:00084560 __unwindfunclet$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z$0 10085560 f main.cpp.obj + 0001:0008456d __ehhandler$?Stub@?$PatchDetourStub@P6IH_K@Z@detail@hadesmem@@SIH_K@Z 1008556d f main.cpp.obj + 0001:0008456d __ehhandler$?Stub@?$PatchDetourStub@P6IX_K@Z@detail@hadesmem@@SIX_K@Z 1008556d f main.cpp.obj + 0001:00084590 __unwindfunclet$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z$0 10085590 f main.cpp.obj + 0001:00084590 __unwindfunclet$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z$0 10085590 f main.cpp.obj + 0001:0008459d __ehhandler$?Stub@?$PatchDetourStub@P6IXIH_K@Z@detail@hadesmem@@SIXIH_K@Z 1008559d f main.cpp.obj + 0001:0008459d __ehhandler$?Stub@?$PatchDetourStub@P6I_NPAIIPAUCGItem_C@game@@_K@Z@detail@hadesmem@@SI_NPAIIPAUCGItem_C@game@@_K@Z 1008559d f main.cpp.obj + 0001:000845c0 __unwindfunclet$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z$0 100855c0 f main.cpp.obj + 0001:000845cd __ehhandler$?Stub@?$PatchDetourStub@P6IX_N0W4SpellCastResult@game@@@Z@detail@hadesmem@@SIX_N0W4SpellCastResult@game@@@Z 100855cd f main.cpp.obj + 0001:000845f0 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$2 100855f0 f main.cpp.obj + 0001:000845f8 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$3 100855f8 f main.cpp.obj + 0001:00084600 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$4 10085600 f main.cpp.obj + 0001:00084608 __unwindfunclet$?SuspendThread@hadesmem@@YAKABVThread@1@@Z$5 10085608 f main.cpp.obj + 0001:00084615 __ehhandler$?SuspendThread@hadesmem@@YAKABVThread@1@@Z 10085615 f main.cpp.obj + 0001:00084640 __unwindfunclet$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z$0 10085640 f main.cpp.obj + 0001:0008464d __ehhandler$?SysMsgInitializeHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@@Z 1008564d f main.cpp.obj + 0001:00084670 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$0 10085670 f main.cpp.obj + 0001:00084678 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$1 10085678 f main.cpp.obj + 0001:00084680 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$7 10085680 f main.cpp.obj + 0001:00084688 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$2 10085688 f main.cpp.obj + 0001:00084690 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$3 10085690 f main.cpp.obj + 0001:00084698 __unwindfunclet$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z$4 10085698 f main.cpp.obj + 0001:000846a8 __ehhandler$?VerifyPatchThreads@detail@hadesmem@@YAXKPAXI@Z 100856a8 f main.cpp.obj + 0001:000846e0 __unwindfunclet$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z$0 100856e0 f main.cpp.obj + 0001:000846ed __ehhandler$?WriteCall@detail@hadesmem@@YAIABVProcess@2@PAX1AAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100856ed f main.cpp.obj + 0001:00084720 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$0 10085720 f main.cpp.obj + 0001:0008472b __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$2 1008572b f main.cpp.obj + 0001:00084733 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$3 10085733 f main.cpp.obj + 0001:0008473e __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$4 1008573e f main.cpp.obj + 0001:00084746 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$5 10085746 f main.cpp.obj + 0001:00084751 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$6 10085751 f main.cpp.obj + 0001:00084759 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$7 10085759 f main.cpp.obj + 0001:00084764 __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$8 10085764 f main.cpp.obj + 0001:0008476c __unwindfunclet$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z$9 1008576c f main.cpp.obj + 0001:0008477c __ehhandler$?WriteImpl@detail@hadesmem@@YAXABVProcess@2@PAXPBXI@Z 1008577c f main.cpp.obj + 0001:000847b0 __unwindfunclet$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z$0 100857b0 f main.cpp.obj + 0001:000847bd __ehhandler$?WriteJump@detail@hadesmem@@YAIABVProcess@2@PAX1_NPAV?$vector@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@V?$allocator@V?$unique_ptr@VAllocator@hadesmem@@U?$default_delete@VAllocator@hadesmem@@@std@@@std@@@2@@std@@@Z 100857bd f main.cpp.obj + 0001:000847f0 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$0 100857f0 f main.cpp.obj + 0001:000847ff __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$1 100857ff f main.cpp.obj + 0001:00084818 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$2 10085818 f main.cpp.obj + 0001:00084820 __unwindfunclet$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z$4 10085820 f main.cpp.obj + 0001:0008482d __ehhandler$?_Getcat@?$numpunct@D@std@@SAIPAPBVfacet@locale@2@PBV42@@Z 1008582d f main.cpp.obj + 0001:00084850 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$0 10085850 f main.cpp.obj + 0001:00084858 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$1 10085858 f main.cpp.obj + 0001:00084860 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$2 10085860 f main.cpp.obj + 0001:00084868 __unwindfunclet$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z$3 10085868 f main.cpp.obj + 0001:00084875 __ehhandler$?_Iput@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@ABA?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPADI@Z 10085875 f main.cpp.obj + 0001:000848a0 __ehhandler$?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ 100858a0 f main.cpp.obj + 0001:000848c0 __ehhandler$?begin@ThreadList@hadesmem@@QAE?AV?$ThreadIterator@VThreadEntry@hadesmem@@@2@XZ 100858c0 f main.cpp.obj + 0001:000848f0 __unwindfunclet$?checkForStopChanneling@Nampower@@YAXXZ$0 100858f0 f main.cpp.obj + 0001:000848f8 __unwindfunclet$?checkForStopChanneling@Nampower@@YAXXZ$1 100858f8 f main.cpp.obj + 0001:00084905 __ehhandler$?checkForStopChanneling@Nampower@@YAXXZ 10085905 f main.cpp.obj + 0001:00084930 __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$0 10085930 f main.cpp.obj + 0001:0008493f __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$1 1008593f f main.cpp.obj + 0001:0008495b __unwindfunclet$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$2 1008595b f main.cpp.obj + 0001:00084968 __ehhandler$?clone@?$clone_impl@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 10085968 f main.cpp.obj + 0001:00084990 __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$0 10085990 f main.cpp.obj + 0001:0008499f __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$1 1008599f f main.cpp.obj + 0001:000849bb __unwindfunclet$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ$2 100859bb f main.cpp.obj + 0001:000849c8 __ehhandler$?clone@?$clone_impl@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@EBEPBVclone_base@23@XZ 100859c8 f main.cpp.obj + 0001:000849f0 __unwindfunclet$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ$0 100859f0 f main.cpp.obj + 0001:000849ff __unwindfunclet$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ$1 100859ff f main.cpp.obj + 0001:00084a0c __ehhandler$?clone@?$error_info@UTagErrorString@hadesmem@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@boost@@EBEPAVerror_info_base@exception_detail@2@XZ 10085a0c f main.cpp.obj + 0001:00084a30 __unwindfunclet$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ$0 10085a30 f main.cpp.obj + 0001:00084a3f __unwindfunclet$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ$1 10085a3f f main.cpp.obj + 0001:00084a4c __ehhandler$?clone@?$wrapexcept@VError@hadesmem@@@boost@@UBEPBVclone_base@exception_detail@2@XZ 10085a4c f main.cpp.obj + 0001:00084a70 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$0 10085a70 f main.cpp.obj + 0001:00084a89 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$1 10085a89 f main.cpp.obj + 0001:00084a98 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$4 10085a98 f main.cpp.obj + 0001:00084aa0 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$2 10085aa0 f main.cpp.obj + 0001:00084aa8 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$3 10085aa8 f main.cpp.obj + 0001:00084ab0 __unwindfunclet$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ$11 10085ab0 f main.cpp.obj + 0001:00084abd __ehhandler$?clone@error_info_container_impl@exception_detail@boost@@EBE?AV?$refcount_ptr@Uerror_info_container@exception_detail@boost@@@23@XZ 10085abd f main.cpp.obj + 0001:00084ae0 __unwindfunclet$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z$0 10085ae0 f main.cpp.obj + 0001:00084ae8 __unwindfunclet$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z$1 10085ae8 f main.cpp.obj + 0001:00084af5 __ehhandler$?copy_boost_exception@exception_detail@boost@@YAXPAVexception@2@PBV32@@Z 10085af5 f main.cpp.obj + 0001:00084b20 __unwindfunclet$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z$0 10085b20 f main.cpp.obj + 0001:00084b2b __unwindfunclet$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z$1 10085b2b f main.cpp.obj + 0001:00084b38 __ehhandler$?diagnostic_information@error_info_container_impl@exception_detail@boost@@UBEPBDPBD@Z 10085b38 f main.cpp.obj + 0001:00084b70 __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$1 10085b70 f main.cpp.obj + 0001:00084b7b __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$2 10085b7b f main.cpp.obj + 0001:00084b83 __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$3 10085b83 f main.cpp.obj + 0001:00084b8b __unwindfunclet$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z$4 10085b8b f main.cpp.obj + 0001:00084b98 __ehhandler$?diagnostic_information_impl@exception_detail@boost@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBVexception@2@PBV54@_N2@Z 10085b98 f main.cpp.obj + 0001:00084bd0 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z$0 10085bd0 f main.cpp.obj + 0001:00084bd0 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z$0 10085bd0 f main.cpp.obj + 0001:00084bdd __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DN@Z 10085bdd f main.cpp.obj + 0001:00084bdd __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DO@Z 10085bdd f main.cpp.obj + 0001:00084c10 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z$0 10085c10 f main.cpp.obj + 0001:00084c18 __unwindfunclet$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z$1 10085c18 f main.cpp.obj + 0001:00084c25 __ehhandler$?do_put@?$num_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@D_N@Z 10085c25 f main.cpp.obj + 0001:00084c50 __unwindfunclet$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z$0 10085c50 f main.cpp.obj + 0001:00084c5d __ehhandler$?do_put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@MBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@DD@Z 10085c5d f main.cpp.obj + 0001:00084c90 __unwindfunclet$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ$2 10085c90 f main.cpp.obj + 0001:00084c9d __ehhandler$?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ 10085c9d f main.cpp.obj + 0001:00084cc0 __unwindfunclet$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z$2 10085cc0 f main.cpp.obj + 0001:00084cd4 __ehhandler$?get_diagnostic_information@exception_detail@boost@@YAPBDABVexception@2@PBD@Z 10085cd4 f main.cpp.obj + 0001:00084d00 __unwindfunclet$?initHooks@Nampower@@YAXXZ$0 10085d00 f main.cpp.obj + 0001:00084d08 __unwindfunclet$?initHooks@Nampower@@YAXXZ$1 10085d08 f main.cpp.obj + 0001:00084d10 __unwindfunclet$?initHooks@Nampower@@YAXXZ$42 10085d10 f main.cpp.obj + 0001:00084d1d __ehhandler$?initHooks@Nampower@@YAXXZ 10085d1d f main.cpp.obj + 0001:00084d50 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$0 10085d50 f main.cpp.obj + 0001:00084d5b __unwindfunclet$?loadConfig@Nampower@@YAXXZ$1 10085d5b f main.cpp.obj + 0001:00084d66 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$2 10085d66 f main.cpp.obj + 0001:00084d71 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$3 10085d71 f main.cpp.obj + 0001:00084d7c __unwindfunclet$?loadConfig@Nampower@@YAXXZ$4 10085d7c f main.cpp.obj + 0001:00084d87 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$5 10085d87 f main.cpp.obj + 0001:00084d92 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$6 10085d92 f main.cpp.obj + 0001:00084d9d __unwindfunclet$?loadConfig@Nampower@@YAXXZ$7 10085d9d f main.cpp.obj + 0001:00084da8 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$8 10085da8 f main.cpp.obj + 0001:00084db3 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$9 10085db3 f main.cpp.obj + 0001:00084dbe __unwindfunclet$?loadConfig@Nampower@@YAXXZ$10 10085dbe f main.cpp.obj + 0001:00084dc9 __unwindfunclet$?loadConfig@Nampower@@YAXXZ$11 10085dc9 f main.cpp.obj + 0001:00084dd9 __ehhandler$?loadConfig@Nampower@@YAXXZ 10085dd9 f main.cpp.obj + 0001:00084e10 __unwindfunclet$?loadUserVar@Nampower@@YAXPBD@Z$0 10085e10 f main.cpp.obj + 0001:00084e18 __unwindfunclet$?loadUserVar@Nampower@@YAXPBD@Z$1 10085e18 f main.cpp.obj + 0001:00084e25 __ehhandler$?loadUserVar@Nampower@@YAXPBD@Z 10085e25 f main.cpp.obj + 0001:00084e50 __unwindfunclet$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z$0 10085e50 f main.cpp.obj + 0001:00084e5d __ehhandler$?open@?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAEXPBDHH@Z 10085e5d f main.cpp.obj + 0001:00084e80 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$0 10085e80 f main.cpp.obj + 0001:00084e88 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$1 10085e88 f main.cpp.obj + 0001:00084e90 __unwindfunclet$?processQueues@Nampower@@YA_NXZ$2 10085e90 f main.cpp.obj + 0001:00084e9d __ehhandler$?processQueues@Nampower@@YA_NXZ 10085e9d f main.cpp.obj + 0001:00084ed0 __unwindfunclet$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z$2 10085ed0 f main.cpp.obj + 0001:00084edd __ehhandler$?put@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@D@Z 10085edd f main.cpp.obj + 0001:00084f00 __unwindfunclet$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z$0 10085f00 f main.cpp.obj + 0001:00084f0d __ehhandler$?put@?$time_put@DV?$ostreambuf_iterator@DU?$char_traits@D@std@@@std@@@std@@QBE?AV?$ostreambuf_iterator@DU?$char_traits@D@std@@@2@V32@AAVios_base@2@DPBUtm@@PBD3@Z 10085f0d f main.cpp.obj + 0001:00084f30 __unwindfunclet$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z$2 10085f30 f main.cpp.obj + 0001:00084f3d __ehhandler$?set@error_info_container_impl@exception_detail@boost@@UAEXABV?$shared_ptr@Verror_info_base@exception_detail@boost@@@3@ABUtype_info_@23@@Z 10085f3d f main.cpp.obj + 0001:00084f60 __unwindfunclet$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ$0 10085f60 f main.cpp.obj + 0001:00084f7e __ehhandler$?str@?$basic_stringbuf@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ 10085f7e f main.cpp.obj + 0001:00084fa0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$0 10085fa0 f main.cpp.obj + 0001:00084fa8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$1 10085fa8 f main.cpp.obj + 0001:00084fb0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$2 10085fb0 f main.cpp.obj + 0001:00084fb8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$3 10085fb8 f main.cpp.obj + 0001:00084fc0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$4 10085fc0 f main.cpp.obj + 0001:00084fc8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$5 10085fc8 f main.cpp.obj + 0001:00084fd0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$6 10085fd0 f main.cpp.obj + 0001:00084fd8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$7 10085fd8 f main.cpp.obj + 0001:00084fe0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$8 10085fe0 f main.cpp.obj + 0001:00084fe8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$9 10085fe8 f main.cpp.obj + 0001:00084ff0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$10 10085ff0 f main.cpp.obj + 0001:00084ff8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$11 10085ff8 f main.cpp.obj + 0001:00085000 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$12 10086000 f main.cpp.obj + 0001:00085008 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$13 10086008 f main.cpp.obj + 0001:00085010 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$14 10086010 f main.cpp.obj + 0001:00085018 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$15 10086018 f main.cpp.obj + 0001:00085020 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$16 10086020 f main.cpp.obj + 0001:00085028 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$17 10086028 f main.cpp.obj + 0001:00085030 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$18 10086030 f main.cpp.obj + 0001:00085038 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$19 10086038 f main.cpp.obj + 0001:00085040 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$20 10086040 f main.cpp.obj + 0001:00085048 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$21 10086048 f main.cpp.obj + 0001:00085050 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$22 10086050 f main.cpp.obj + 0001:00085058 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$23 10086058 f main.cpp.obj + 0001:00085060 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$24 10086060 f main.cpp.obj + 0001:00085068 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$25 10086068 f main.cpp.obj + 0001:00085070 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$26 10086070 f main.cpp.obj + 0001:00085078 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$27 10086078 f main.cpp.obj + 0001:00085080 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$28 10086080 f main.cpp.obj + 0001:00085088 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$29 10086088 f main.cpp.obj + 0001:00085090 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$30 10086090 f main.cpp.obj + 0001:00085098 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$31 10086098 f main.cpp.obj + 0001:000850a0 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$32 100860a0 f main.cpp.obj + 0001:000850a8 __unwindfunclet$?updateFromCvar@Nampower@@YAXPBD0@Z$33 100860a8 f main.cpp.obj + 0001:000850b5 __ehhandler$?updateFromCvar@Nampower@@YAXPBD0@Z 100860b5 f main.cpp.obj + 0001:000850e0 __unwindfunclet$_Load$4 100860e0 f main.cpp.obj + 0001:000850e8 __unwindfunclet$_Load$3 100860e8 f main.cpp.obj + 0001:000850f5 __ehhandler$_Load 100860f5 f main.cpp.obj + 0001:00085120 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10086120 f helper.cpp.obj + 0001:00085128 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10086128 f helper.cpp.obj + 0001:00085135 __ehhandler$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@V?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@UCachedEntry@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10086135 f helper.cpp.obj + 0001:00085160 __unwindfunclet$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z$1 10086160 f helper.cpp.obj + 0001:00085168 __unwindfunclet$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z$0 10086168 f helper.cpp.obj + 0001:00085175 __ehhandler$??$_Try_emplace@AB_K$$V@?$_Hash@V?$_Umap_traits@_KIV?$_Uhash_compare@_KU?$hash@_K@std@@U?$equal_to@_K@2@@std@@V?$allocator@U?$pair@$$CB_KI@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CB_KI@std@@PAX@std@@_N@1@AB_K@Z 10086175 f helper.cpp.obj + 0001:000851a0 __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$0 100861a0 f helper.cpp.obj + 0001:000851ac __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$2 100861ac f helper.cpp.obj + 0001:000851b6 __unwindfunclet$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z$3 100861b6 f helper.cpp.obj + 0001:000851c5 __ehhandler$?ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z 100861c5 f helper.cpp.obj + 0001:000851f0 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z$1 100861f0 f helper.cpp.obj + 0001:000851f8 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z$3 100861f8 f helper.cpp.obj + 0001:00085200 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z$0 10086200 f helper.cpp.obj + 0001:0008520c __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z$9 1008620c f helper.cpp.obj + 0001:00085216 __unwindfunclet$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z$10 10086216 f helper.cpp.obj + 0001:00085225 __ehhandler$?GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z 10086225 f helper.cpp.obj + 0001:00085250 __unwindfunclet$?GetUnitGuidFromLuaParam@Nampower@@YA_KPAIH@Z$0 10086250 f helper.cpp.obj + 0001:00085250 __unwindfunclet$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z$0 10086250 f spellcast.cpp.obj + 0001:00085250 __unwindfunclet$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z$0 10086250 f spellcast.cpp.obj + 0001:00085250 __unwindfunclet$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z$0 10086250 f spellevents.cpp.obj + 0001:0008525d __ehhandler$?GetUnitGuidFromLuaParam@Nampower@@YA_KPAIH@Z 1008625d f helper.cpp.obj + 0001:0008525d __ehhandler$?CGActionBar_UseActionHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IHH@Z 1008625d f spellcast.cpp.obj + 0001:0008525d __ehhandler$?CGSpellBook_CastSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IH_K@Z 1008625d f spellcast.cpp.obj + 0001:0008525d __ehhandler$?Script_SpellTargetUnitHook@Nampower@@YAIPAVPatchDetourBase@hadesmem@@PAI@Z 1008625d f spellevents.cpp.obj + 0001:00085290 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$2 10086290 f spellcast.cpp.obj + 0001:00085298 __unwindfunclet$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z$3 10086298 f spellcast.cpp.obj + 0001:000852a5 __ehhandler$??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@_K@Z 100862a5 f spellcast.cpp.obj + 0001:000852d0 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$0 100862d0 f spellcast.cpp.obj + 0001:000852d8 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$4 100862d8 f spellcast.cpp.obj + 0001:000852e0 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$1 100862e0 f spellcast.cpp.obj + 0001:000852e8 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$2 100862e8 f spellcast.cpp.obj + 0001:000852f0 __unwindfunclet$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z$3 100862f0 f spellcast.cpp.obj + 0001:000852fd __ehhandler$?BeginCast@Nampower@@YAXIPBUSpellRec@game@@PBUSpellCast@3@@Z 100862fd f spellcast.cpp.obj + 0001:00085330 __unwindfunclet$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z$0 10086330 f spellcast.cpp.obj + 0001:00085338 __unwindfunclet$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z$1 10086338 f spellcast.cpp.obj + 0001:00085345 __ehhandler$?CancelSpellHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_N1W4SpellCastResult@game@@@Z 10086345 f spellcast.cpp.obj + 0001:00085370 __unwindfunclet$?CastQueuedNonGcdSpell@Nampower@@YAXXZ$0 10086370 f spellcast.cpp.obj + 0001:00085378 __unwindfunclet$?CastQueuedNonGcdSpell@Nampower@@YAXXZ$1 10086378 f spellcast.cpp.obj + 0001:00085385 __ehhandler$?CastQueuedNonGcdSpell@Nampower@@YAXXZ 10086385 f spellcast.cpp.obj + 0001:000853b0 __unwindfunclet$?CastQueuedNormalSpell@Nampower@@YAXXZ$0 100863b0 f spellcast.cpp.obj + 0001:000853b8 __unwindfunclet$?CastQueuedNormalSpell@Nampower@@YAXXZ$1 100863b8 f spellcast.cpp.obj + 0001:000853c5 __ehhandler$?CastQueuedNormalSpell@Nampower@@YAXXZ 100863c5 f spellcast.cpp.obj + 0001:000853f0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$0 100863f0 f spellcast.cpp.obj + 0001:000853f8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$1 100863f8 f spellcast.cpp.obj + 0001:00085400 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$2 10086400 f spellcast.cpp.obj + 0001:00085408 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$3 10086408 f spellcast.cpp.obj + 0001:00085410 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$4 10086410 f spellcast.cpp.obj + 0001:00085418 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$6 10086418 f spellcast.cpp.obj + 0001:00085420 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$5 10086420 f spellcast.cpp.obj + 0001:00085428 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$7 10086428 f spellcast.cpp.obj + 0001:00085430 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$8 10086430 f spellcast.cpp.obj + 0001:00085438 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$9 10086438 f spellcast.cpp.obj + 0001:00085440 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$10 10086440 f spellcast.cpp.obj + 0001:00085448 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$11 10086448 f spellcast.cpp.obj + 0001:00085450 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$12 10086450 f spellcast.cpp.obj + 0001:00085458 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$13 10086458 f spellcast.cpp.obj + 0001:00085460 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$17 10086460 f spellcast.cpp.obj + 0001:00085468 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$14 10086468 f spellcast.cpp.obj + 0001:00085470 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$15 10086470 f spellcast.cpp.obj + 0001:00085478 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$16 10086478 f spellcast.cpp.obj + 0001:00085480 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$18 10086480 f spellcast.cpp.obj + 0001:00085488 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$19 10086488 f spellcast.cpp.obj + 0001:00085490 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$20 10086490 f spellcast.cpp.obj + 0001:00085498 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$21 10086498 f spellcast.cpp.obj + 0001:000854a0 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$22 100864a0 f spellcast.cpp.obj + 0001:000854a8 __unwindfunclet$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z$23 100864a8 f spellcast.cpp.obj + 0001:000854b5 __ehhandler$?Spell_C_CastSpellHook@Nampower@@YA_NPAVPatchDetourBase@hadesmem@@PAIIPAUCGItem_C@game@@_K@Z 100864b5 f spellcast.cpp.obj + 0001:000854e0 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 100864e0 f spellchannel.cpp.obj + 0001:000854e8 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 100864e8 f spellchannel.cpp.obj + 0001:000854f0 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$2 100864f0 f spellchannel.cpp.obj + 0001:000854f8 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$3 100864f8 f spellchannel.cpp.obj + 0001:00085500 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$4 10086500 f spellchannel.cpp.obj + 0001:00085508 __unwindfunclet$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$5 10086508 f spellchannel.cpp.obj + 0001:00085515 __ehhandler$?SpellChannelStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10086515 f spellchannel.cpp.obj + 0001:00085540 __unwindfunclet$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 10086540 f spellchannel.cpp.obj + 0001:00085548 __unwindfunclet$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 10086548 f spellchannel.cpp.obj + 0001:00085555 __ehhandler$?SpellChannelUpdateHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 10086555 f spellchannel.cpp.obj + 0001:00085580 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$0 10086580 f spellevents.cpp.obj + 0001:00085588 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$1 10086588 f spellevents.cpp.obj + 0001:00085590 __unwindfunclet$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z$2 10086590 f spellevents.cpp.obj + 0001:0008559d __ehhandler$?CastResultHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@PAIPAVCDataStore@1@@Z 1008659d f spellevents.cpp.obj + 0001:000855d0 __unwindfunclet$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z$1 100865d0 f spellevents.cpp.obj + 0001:000855d8 __unwindfunclet$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z$0 100865d8 f spellevents.cpp.obj + 0001:000855e5 __ehhandler$?SpellGoHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@PA_K1IPAVCDataStore@1@@Z 100865e5 f spellevents.cpp.obj + 0001:00085610 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$0 10086610 f spellevents.cpp.obj + 0001:00085618 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$1 10086618 f spellevents.cpp.obj + 0001:00085620 __unwindfunclet$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z$2 10086620 f spellevents.cpp.obj + 0001:0008562d __ehhandler$?SpellStartHandlerHook@Nampower@@YAHPAVPatchDetourBase@hadesmem@@IIIPAVCDataStore@1@@Z 1008662d f spellevents.cpp.obj + 0001:00085660 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$0 10086660 f spellevents.cpp.obj + 0001:00085668 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$13 10086668 f spellevents.cpp.obj + 0001:00085670 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$14 10086670 f spellevents.cpp.obj + 0001:00085678 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$2 10086678 f spellevents.cpp.obj + 0001:00085680 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$1 10086680 f spellevents.cpp.obj + 0001:00085688 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$3 10086688 f spellevents.cpp.obj + 0001:00085690 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$4 10086690 f spellevents.cpp.obj + 0001:00085698 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$5 10086698 f spellevents.cpp.obj + 0001:000856a0 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$8 100866a0 f spellevents.cpp.obj + 0001:000856a8 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$9 100866a8 f spellevents.cpp.obj + 0001:000856b0 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$7 100866b0 f spellevents.cpp.obj + 0001:000856b8 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$6 100866b8 f spellevents.cpp.obj + 0001:000856c0 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$10 100866c0 f spellevents.cpp.obj + 0001:000856c8 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$11 100866c8 f spellevents.cpp.obj + 0001:000856d0 __unwindfunclet$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z$12 100866d0 f spellevents.cpp.obj + 0001:000856dd __ehhandler$?Spell_C_SpellFailedHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@IW4SpellCastResult@game@@HH_N@Z 100866dd f spellevents.cpp.obj + 0001:00085710 __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$0 10086710 f spellevents.cpp.obj + 0001:0008571b __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$1 1008671b f spellevents.cpp.obj + 0001:00085726 __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$2 10086726 f spellevents.cpp.obj + 0001:0008572e __unwindfunclet$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z$3 1008672e f spellevents.cpp.obj + 0001:0008573b __ehhandler$?TriggerSpellDamageEvent@Nampower@@YAX_K0IIIIIHII@Z 1008673b f spellevents.cpp.obj + 0001:00085770 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10086770 f misc_scripts.cpp.obj + 0001:00085770 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10086770 f misc_scripts.cpp.obj + 0001:00085770 __unwindfunclet$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z$0 10086770 f spell_scripts.cpp.obj + 0001:0008577d __ehhandler$??$PushArrayFieldsToLuaWithRefs@UItemStats_C@game@@@Nampower@@YAXPAIPBUItemStats_C@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1008677d f misc_scripts.cpp.obj + 0001:0008577d __ehhandler$??$PushArrayFieldsToLuaWithRefs@UUnitFields@game@@@Nampower@@YAXPAIPBUUnitFields@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1008677d f misc_scripts.cpp.obj + 0001:0008577d __ehhandler$??$PushArrayFieldsToLuaWithRefs@USpellRec@game@@@Nampower@@YAXPAIPBUSpellRec@game@@PBUArrayFieldDescriptor@0@IAAV?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@@Z 1008677d f spell_scripts.cpp.obj + 0001:000857b0 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 100867b0 f dbc_fields.cpp.obj + 0001:000857b0 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 100867b0 f misc_scripts.cpp.obj + 0001:000857b8 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 100867b8 f dbc_fields.cpp.obj + 0001:000857b8 __unwindfunclet$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 100867b8 f misc_scripts.cpp.obj + 0001:000857c5 __ehhandler$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100867c5 f dbc_fields.cpp.obj + 0001:000857c5 __ehhandler$??$_Try_emplace@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@PAX@std@@_N@1@$$QAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 100867c5 f misc_scripts.cpp.obj + 0001:000857f0 __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ$1 100867f0 f items.cpp.obj + 0001:000857f0 __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ$1 100867f0 f misc_scripts.cpp.obj + 0001:000857fb __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ$2 100867fb f items.cpp.obj + 0001:000857fb __unwindfunclet$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ$2 100867fb f misc_scripts.cpp.obj + 0001:0008580b __ehhandler$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@@std@@QAE@XZ 1008680b f items.cpp.obj + 0001:0008580b __ehhandler$??0?$unordered_map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@HU?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@std@@@2@@std@@QAE@XZ 1008680b f misc_scripts.cpp.obj + 0001:00085830 __unwindfunclet$?RunQueuedScript@Nampower@@YA_NH@Z$0 10086830 f misc_scripts.cpp.obj + 0001:00085830 __unwindfunclet$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z$0 10086830 f misc_scripts.cpp.obj + 0001:0008583d __ehhandler$?RunQueuedScript@Nampower@@YA_NH@Z 1008683d f misc_scripts.cpp.obj + 0001:0008583d __ehhandler$?Script_ChannelStopCastingNextTick@Nampower@@YAIPAI@Z 1008683d f misc_scripts.cpp.obj + 0001:00085870 __unwindfunclet$?Script_DisenchantAll@Nampower@@YAIPAI@Z$0 10086870 f misc_scripts.cpp.obj + 0001:0008587d __ehhandler$?Script_DisenchantAll@Nampower@@YAIPAI@Z 1008687d f misc_scripts.cpp.obj + 0001:000858b0 __unwindfunclet$?Script_GetItemStatsField@Nampower@@YAIPAI@Z$2 100868b0 f misc_scripts.cpp.obj + 0001:000858b0 __unwindfunclet$?Script_GetUnitField@Nampower@@YAIPAI@Z$2 100868b0 f misc_scripts.cpp.obj + 0001:000858b0 __unwindfunclet$?Script_GetSpellRecField@Nampower@@YAIPAI@Z$2 100868b0 f spell_scripts.cpp.obj + 0001:000858bd __ehhandler$?Script_GetItemStatsField@Nampower@@YAIPAI@Z 100868bd f misc_scripts.cpp.obj + 0001:000858bd __ehhandler$?Script_GetUnitField@Nampower@@YAIPAI@Z 100868bd f misc_scripts.cpp.obj + 0001:000858bd __ehhandler$?Script_GetSpellRecField@Nampower@@YAIPAI@Z 100868bd f spell_scripts.cpp.obj + 0001:000858f0 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$0 100868f0 f dbc_fields.cpp.obj + 0001:000858f0 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$0 100868f0 f misc_scripts.cpp.obj + 0001:000858f8 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$1 100868f8 f dbc_fields.cpp.obj + 0001:000858f8 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$1 100868f8 f misc_scripts.cpp.obj + 0001:00085900 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$2 10086900 f dbc_fields.cpp.obj + 0001:00085900 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$2 10086900 f misc_scripts.cpp.obj + 0001:00085908 __unwindfunclet$?InitializeFieldMaps@Nampower@@YAXXZ$3 10086908 f dbc_fields.cpp.obj + 0001:00085908 __unwindfunclet$?Script_QueueScript@Nampower@@YAIPAI@Z$3 10086908 f misc_scripts.cpp.obj + 0001:00085915 __ehhandler$?InitializeFieldMaps@Nampower@@YAXXZ 10086915 f dbc_fields.cpp.obj + 0001:00085915 __ehhandler$?Script_QueueScript@Nampower@@YAIPAI@Z 10086915 f misc_scripts.cpp.obj + 0001:00085940 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$0 10086940 f misc_scripts.cpp.obj + 0001:00085948 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$1 10086948 f misc_scripts.cpp.obj + 0001:00085950 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$3 10086950 f misc_scripts.cpp.obj + 0001:00085958 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$4 10086958 f misc_scripts.cpp.obj + 0001:00085960 __unwindfunclet$?TryDisenchant@Nampower@@YA_NXZ$2 10086960 f misc_scripts.cpp.obj + 0001:0008596d __ehhandler$?TryDisenchant@Nampower@@YA_NXZ 1008696d f misc_scripts.cpp.obj + 0001:000859a0 __unwindfunclet$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z$0 100869a0 f spell_scripts.cpp.obj + 0001:000859a0 __unwindfunclet$?Script_QueueSpellByName@Nampower@@YAIPAI@Z$0 100869a0 f spell_scripts.cpp.obj + 0001:000859ad __ehhandler$?Script_CastSpellByNameNoQueue@Nampower@@YAIPAI@Z 100869ad f spell_scripts.cpp.obj + 0001:000859ad __ehhandler$?Script_QueueSpellByName@Nampower@@YAIPAI@Z 100869ad f spell_scripts.cpp.obj + 0001:000859e0 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$1 100869e0 f spell_scripts.cpp.obj + 0001:000859e8 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$4 100869e8 f spell_scripts.cpp.obj + 0001:000859f0 __unwindfunclet$?Script_IsSpellInRange@Nampower@@YAIPAI@Z$0 100869f0 f spell_scripts.cpp.obj + 0001:000859fd __ehhandler$?Script_IsSpellInRange@Nampower@@YAIPAI@Z 100869fd f spell_scripts.cpp.obj + 0001:00085a30 __unwindfunclet$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z$0 10086a30 f item_scripts.cpp.obj + 0001:00085a38 __unwindfunclet$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z$1 10086a38 f item_scripts.cpp.obj + 0001:00085a45 __ehhandler$?PushBagCGItemToTable@Nampower@@YAXPAIHIPAUCGItem_C@game@@@Z 10086a45 f item_scripts.cpp.obj + 0001:00085a70 __unwindfunclet$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z$1 10086a70 f items.cpp.obj + 0001:00085a78 __unwindfunclet$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z$0 10086a78 f items.cpp.obj + 0001:00085a85 __ehhandler$??$_Try_emplace@ABI$$V@?$_Hash@V?$_Umap_traits@IPAUItemStats_C@game@@V?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@U?$pair@$$CBIPAUItemStats_C@game@@@std@@@4@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBIPAUItemStats_C@game@@@std@@PAX@std@@_N@1@ABI@Z 10086a85 f items.cpp.obj + 0001:00085ab0 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$1 10086ab0 f items.cpp.obj + 0001:00085ab8 __unwindfunclet$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z$0 10086ab8 f items.cpp.obj + 0001:00085ac5 __ehhandler$??$_Try_emplace@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@$$V@?$_Hash@V?$_Umap_traits@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IV?$_Uhash_compare@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$hash@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@U?$equal_to@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@@2@$0A@@std@@@std@@IAE?AU?$pair@PAU?$_List_node@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@I@std@@PAX@std@@_N@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z 10086ac5 f items.cpp.obj + 0001:00085af0 __unwindfunclet$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z$1 10086af0 f items.cpp.obj + 0001:00085af8 __unwindfunclet$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z$0 10086af8 f items.cpp.obj + 0001:00085b05 __ehhandler$??$emplace@ABI@?$_Hash@V?$_Uset_traits@IV?$_Uhash_compare@IU?$hash@I@std@@U?$equal_to@I@2@@std@@V?$allocator@I@2@$0A@@std@@@std@@QAE?AU?$pair@V?$_List_const_iterator@V?$_List_val@U?$_List_simple_types@I@std@@@std@@@std@@_N@1@ABI@Z 10086b05 f items.cpp.obj + 0001:00085b30 __unwindfunclet$??__EitemNameToIdCache@Nampower@@YAXXZ$1 10086b30 f items.cpp.obj + 0001:00085b3a __unwindfunclet$??__EitemNameToIdCache@Nampower@@YAXXZ$2 10086b3a f items.cpp.obj + 0001:00085b49 __ehhandler$??__EitemNameToIdCache@Nampower@@YAXXZ 10086b49 f items.cpp.obj + 0001:00085b70 __unwindfunclet$??__EitemStatsCache@Nampower@@YAXXZ$1 10086b70 f items.cpp.obj + 0001:00085b7a __unwindfunclet$??__EitemStatsCache@Nampower@@YAXXZ$2 10086b7a f items.cpp.obj + 0001:00085b89 __ehhandler$??__EitemStatsCache@Nampower@@YAXXZ 10086b89 f items.cpp.obj + 0001:00085bb0 __unwindfunclet$??__EpendingItemIds@Nampower@@YAXXZ$1 10086bb0 f items.cpp.obj + 0001:00085bba __unwindfunclet$??__EpendingItemIds@Nampower@@YAXXZ$2 10086bba f items.cpp.obj + 0001:00085bc9 __ehhandler$??__EpendingItemIds@Nampower@@YAXXZ 10086bc9 f items.cpp.obj + 0001:00085bf0 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$0 10086bf0 f items.cpp.obj + 0001:00085bf8 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$1 10086bf8 f items.cpp.obj + 0001:00085c00 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$2 10086c00 f items.cpp.obj + 0001:00085c08 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$3 10086c08 f items.cpp.obj + 0001:00085c10 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$4 10086c10 f items.cpp.obj + 0001:00085c18 __unwindfunclet$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z$5 10086c18 f items.cpp.obj + 0001:00085c25 __ehhandler$?FindPlayerItem@Nampower@@YA?AUPlayerItemSearchResult@1@IPBD@Z 10086c25 f items.cpp.obj + 0001:00085c50 __unwindfunclet$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z$0 10086c50 f items.cpp.obj + 0001:00085c58 __unwindfunclet$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z$1 10086c58 f items.cpp.obj + 0001:00085c65 __ehhandler$?ItemStatsCallback@Nampower@@YIXIPB_KPAX_N@Z 10086c65 f items.cpp.obj + 0001:00085c90 __unwindfunclet$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z$0 10086c90 f items.cpp.obj + 0001:00085cae __ehhandler$?ToLowerCase@Nampower@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PBD@Z 10086cae f items.cpp.obj + 0001:00085cd0 __unwindfunclet$?InitializeUnitFieldMaps@Nampower@@YAXXZ$0 10086cd0 f unit_fields.cpp.obj + 0001:00085cd8 __unwindfunclet$?InitializeUnitFieldMaps@Nampower@@YAXXZ$1 10086cd8 f unit_fields.cpp.obj + 0001:00085ce5 __ehhandler$?InitializeUnitFieldMaps@Nampower@@YAXXZ 10086ce5 f unit_fields.cpp.obj + 0001:00085d10 __unwindfunclet$?CleanupAllLuaTableRefs@Nampower@@YAXXZ$0 10086d10 f lua_refs.cpp.obj + 0001:00085d18 __unwindfunclet$?CleanupAllLuaTableRefs@Nampower@@YAXXZ$1 10086d18 f lua_refs.cpp.obj + 0001:00085d25 __ehhandler$?CleanupAllLuaTableRefs@Nampower@@YAXXZ 10086d25 f lua_refs.cpp.obj + 0001:00085d4c __ehhandler$?CallUnexpected@@YAXPBU_s_ESTypeList@@@Z 10086d4c f libvcruntime:frame.obj + 0001:00085d69 __unwindfunclet$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ$0 10086d69 f libvcruntime:undname.obj + 0001:00085d76 __ehhandler$?getDecoratedName@UnDecorator@@CA?AVDName@@XZ 10086d76 f libvcruntime:undname.obj + 0001:00085d93 __ehhandler$?write_double_translated_ansi_nolock@@YA?AUwrite_result@?A0x17268360@@HQBDIAAV__crt_cached_ptd_host@@@Z 10086d93 f libucrt:write.obj + 0001:00085dbd __ehhandler$?common_exit@@YAXHW4_crt_exit_cleanup_mode@@W4_crt_exit_return_mode@@@Z 10086dbd f libucrt:exit.obj + 0001:00085dda __ehhandler$__execute_onexit_table 10086dda f libucrt:onexit.obj + 0001:00085df7 __ehhandler$___dcrt_uninitialize_environments_nolock 10086df7 f libucrt:environment_initialization.obj + 0001:00085e14 __ehhandler$?_mbstowcs_l_helper@@YAIPA_WPBDIAAV__crt_cached_ptd_host@@@Z 10086e14 f libucrt:mbstowcs.obj + 0001:00085e31 __unwindfunclet$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z$0 10086e31 f libcpmt:locale0.obj + 0001:00085e3e __ehhandler$?_Init@locale@std@@CAPAV_Locimp@12@_N@Z 10086e3e f libcpmt:locale0.obj + 0001:00085e60 ??__FdebugLogFile@Nampower@@YAXXZ 10086e60 f logging.cpp.obj + 0001:00085f10 ??__F?e@?$exception_ptr_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B@@YAXXZ 10086f10 f main.cpp.obj + 0001:00085f50 ??__F?e@?$exception_ptr_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@2Vexception_ptr@3@B@@YAXXZ 10086f50 f main.cpp.obj + 0001:00085f90 ??__Fep@?1???$get_static_exception_object@Ubad_alloc_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ@YAXXZ 10086f90 f main.cpp.obj + 0001:00085fd0 ??__Fep@?1???$get_static_exception_object@Ubad_exception_@exception_detail@boost@@@exception_detail@boost@@YA?AVexception_ptr@1@XZ@YAXXZ 10086fd0 f main.cpp.obj + 0001:00086010 ??__FgAttackRoundInfo_ReadPacketDetour@Nampower@@YAXXZ 10087010 f main.cpp.obj + 0001:00086030 ??__FgCGActionBar_UseActionDetour@Nampower@@YAXXZ 10087030 f main.cpp.obj + 0001:00086050 ??__FgCGBuffBar_UpdateDurationDetour@Nampower@@YAXXZ 10087050 f main.cpp.obj + 0001:00086070 ??__FgCGPlayer_C_OnAttackIconPressedDetour@Nampower@@YAXXZ 10087070 f main.cpp.obj + 0001:00086090 ??__FgCGSpellBook_CastSpellDetour@Nampower@@YAXXZ 10087090 f main.cpp.obj + 0001:000860b0 ??__FgCGUnit_C_OnAuraAddedDetour@Nampower@@YAXXZ 100870b0 f main.cpp.obj + 0001:000860d0 ??__FgCGUnit_C_OnAuraRemovedDetour@Nampower@@YAXXZ 100870d0 f main.cpp.obj + 0001:000860f0 ??__FgCGUnit_C_OnAuraStacksChangedDetour@Nampower@@YAXXZ 100870f0 f main.cpp.obj + 0001:00086110 ??__FgCGWorldFrame_OnLayerTrackTerrainDetour@Nampower@@YAXXZ 10087110 f main.cpp.obj + 0001:00086130 ??__FgCSimpleFrame_GetNameDetour@Nampower@@YAXXZ 10087130 f main.cpp.obj + 0001:00086150 ??__FgCancelSpellDetour@Nampower@@YAXXZ 10087150 f main.cpp.obj + 0001:00086170 ??__FgCastDetour@Nampower@@YAXXZ 10087170 f main.cpp.obj + 0001:00086190 ??__FgCastHistory@Nampower@@YAXXZ 10087190 f main.cpp.obj + 0001:000861a0 ??__FgCastResultHandlerDetour@Nampower@@YAXXZ 100871a0 f main.cpp.obj + 0001:000861c0 ??__FgCastbarPatch@Nampower@@YAXXZ 100871c0 f main.cpp.obj + 0001:00086290 ??__FgCreateEventsDetour@Nampower@@YAXXZ 10087290 f main.cpp.obj + 0001:000862b0 ??__FgGetSpellSlotFromLuaDetour@Nampower@@YAXXZ 100872b0 f main.cpp.obj + 0001:000862d0 ??__FgIEndSceneDetour@Nampower@@YAXXZ 100872d0 f main.cpp.obj + 0001:000862f0 ??__FgInvalidFunctionPtrCheckDetour@Nampower@@YAXXZ 100872f0 f main.cpp.obj + 0001:00086310 ??__FgLoadScriptFunctionsDetour@Nampower@@YAXXZ 10087310 f main.cpp.obj + 0001:00086330 ??__FgNonGcdCastQueue@Nampower@@YAXXZ 10087330 f main.cpp.obj + 0001:00086340 ??__FgOnSpriteRightClickDetour@Nampower@@YAXXZ 10087340 f main.cpp.obj + 0001:00086360 ??__FgPeriodicAuraLogHandlerDetour@Nampower@@YAXXZ 10087360 f main.cpp.obj + 0001:00086380 ??__FgPlaySpellVisualHandlerDetour@Nampower@@YAXXZ 10087380 f main.cpp.obj + 0001:000863a0 ??__FgProcResistHandlerDetour@Nampower@@YAXXZ 100873a0 f main.cpp.obj + 0001:000863c0 ??__FgSendCastDetour@Nampower@@YAXXZ 100873c0 f main.cpp.obj + 0001:000863e0 ??__FgSetCVarDetour@Nampower@@YAXXZ 100873e0 f main.cpp.obj + 0001:00086400 ??__FgSetEventCountDetour@Nampower@@YAXXZ 10087400 f main.cpp.obj + 0001:00086420 ??__FgSignalEventDetour@Nampower@@YAXXZ 10087420 f main.cpp.obj + 0001:00086440 ??__FgSpellChannelStartHandlerDetour@Nampower@@YAXXZ 10087440 f main.cpp.obj + 0001:00086460 ??__FgSpellChannelUpdateHandlerDetour@Nampower@@YAXXZ 10087460 f main.cpp.obj + 0001:00086480 ??__FgSpellCooldownDetour@Nampower@@YAXXZ 10087480 f main.cpp.obj + 0001:000864a0 ??__FgSpellDelayedDetour@Nampower@@YAXXZ 100874a0 f main.cpp.obj + 0001:000864c0 ??__FgSpellEnergizeLogHandlerDetour@Nampower@@YAXXZ 100874c0 f main.cpp.obj + 0001:000864e0 ??__FgSpellFailedDetour@Nampower@@YAXXZ 100874e0 f main.cpp.obj + 0001:00086500 ??__FgSpellFailedOtherHandlerDetour@Nampower@@YAXXZ 10087500 f main.cpp.obj + 0001:00086520 ??__FgSpellGoDetour@Nampower@@YAXXZ 10087520 f main.cpp.obj + 0001:00086540 ??__FgSpellHealingLogHandlerDetour@Nampower@@YAXXZ 10087540 f main.cpp.obj + 0001:00086560 ??__FgSpellLogMissHandlerDetour@Nampower@@YAXXZ 10087560 f main.cpp.obj + 0001:00086580 ??__FgSpellNonMeleeDmgLogHandlerDetour@Nampower@@YAXXZ 10087580 f main.cpp.obj + 0001:000865a0 ??__FgSpellOrDamageImmuneHandlerDetour@Nampower@@YAXXZ 100875a0 f main.cpp.obj + 0001:000865c0 ??__FgSpellStartHandlerDetour@Nampower@@YAXXZ 100875c0 f main.cpp.obj + 0001:000865e0 ??__FgSpellStopCastingDetour@Nampower@@YAXXZ 100875e0 f main.cpp.obj + 0001:00086600 ??__FgSpellTargetUnitDetour@Nampower@@YAXXZ 10087600 f main.cpp.obj + 0001:00086620 ??__FgSpell_C_CooldownEventTriggeredDetour@Nampower@@YAXXZ 10087620 f main.cpp.obj + 0001:00086640 ??__FgSpell_C_GetAutoRepeatingSpellDetour@Nampower@@YAXXZ 10087640 f main.cpp.obj + 0001:00086660 ??__FgSpell_C_GetSpellModifiersDetour@Nampower@@YAXXZ 10087660 f main.cpp.obj + 0001:00086680 ??__FgSpell_C_GetSpellRadiusDetour@Nampower@@YAXXZ 10087680 f main.cpp.obj + 0001:000866a0 ??__FgSpell_C_HandleSpriteClickDetour@Nampower@@YAXXZ 100876a0 f main.cpp.obj + 0001:000866c0 ??__FgSpell_C_HandleTerrainClickDetour@Nampower@@YAXXZ 100876c0 f main.cpp.obj + 0001:000866e0 ??__FgSpell_C_TargetSpellDetour@Nampower@@YAXXZ 100876e0 f main.cpp.obj + 0001:00086700 ??__FgSysMsgInitDetour@Nampower@@YAXXZ 10087700 f main.cpp.obj + 0001:00086720 ??__FgUnitCombatLogUnitDeadDetour@Nampower@@YAXXZ 10087720 f main.cpp.obj + 0001:00086740 ??__FspellIdToSlotCache@?1??ConvertSpellIdToSpellSlot@Nampower@@YAIII@Z@YAXXZ 10087740 f helper.cpp.obj + 0001:00086750 ??__FspellSlotCache@?1??GetSpellSlotAndTypeForName@Nampower@@YAIPBDPAI@Z@YAXXZ 10087750 f helper.cpp.obj + 0001:00086760 ??__FitemStatsArrayFieldRefs@Nampower@@YAXXZ 10087760 f misc_scripts.cpp.obj + 0001:00086770 ??__FitemStatsNestedArrayRefs@Nampower@@YAXXZ 10087770 f misc_scripts.cpp.obj + 0001:00086780 ??__FunitFieldsArrayFieldRefs@Nampower@@YAXXZ 10087780 f misc_scripts.cpp.obj + 0001:00086790 ??__FunitFieldsNestedArrayRefs@Nampower@@YAXXZ 10087790 f misc_scripts.cpp.obj + 0001:000867a0 ??__FspellRecArrayFieldRefs@Nampower@@YAXXZ 100877a0 f spell_scripts.cpp.obj + 0001:000867b0 ??__FspellRecNestedArrayRefs@Nampower@@YAXXZ 100877b0 f spell_scripts.cpp.obj + 0001:000867c0 ??__FitemNameToIdCache@Nampower@@YAXXZ 100877c0 f items.cpp.obj + 0001:000867d0 ??__FitemStatsCache@Nampower@@YAXXZ 100877d0 f items.cpp.obj + 0001:000867e0 ??__FpendingItemIds@Nampower@@YAXXZ 100877e0 f items.cpp.obj + 0001:000867f0 ??__FitemStatsArrayFieldMap@Nampower@@YAXXZ 100877f0 f dbc_fields.cpp.obj + 0001:00086800 ??__FitemStatsFieldMap@Nampower@@YAXXZ 10087800 f dbc_fields.cpp.obj + 0001:00086810 ??__FspellRecArrayFieldMap@Nampower@@YAXXZ 10087810 f dbc_fields.cpp.obj + 0001:00086820 ??__FspellRecFieldMap@Nampower@@YAXXZ 10087820 f dbc_fields.cpp.obj + 0001:00086830 ??__FunitFieldsArrayFieldMap@Nampower@@YAXXZ 10087830 f unit_fields.cpp.obj + 0001:00086840 ??__FunitFieldsFieldMap@Nampower@@YAXXZ 10087840 f unit_fields.cpp.obj + 0001:00086850 ??__FregisteredTableRefs@Nampower@@YAXXZ 10087850 f lua_refs.cpp.obj + 0001:000868ac ??__Finitlocks@std@@YAXXZ 100878ac f libcpmt:xlock.obj + 0001:000868b6 ??__F_Fac_tidy_reg@std@@YAXXZ 100878b6 f libcpmt:locale0.obj + 0001:000868c0 ??__Fclassic_locale@std@@YAXXZ 100878c0 f libcpmt:locale0.obj + 0001:000868ca ??__Finit_atexit@@YAXXZ 100878ca f libcpmt:iosptrs.obj + 0001:000868d4 ??__Finitlocks@std@@YAXXZ 100878d4 f libcpmt:iosptrs.obj 0002:000001ec ?initlocks$initializer$@std@@3P6AXXZA 100881ec libcpmt:xlock.obj 0002:000001f0 ?initlocks$initializer$@std@@3P6AXXZA 100881f0 libcpmt:iosptrs.obj 0002:000001f4 ?init_atexit$initializer$@@3P6AXXZA 100881f4 libcpmt:iosptrs.obj @@ -12409,8 +12409,8 @@ 0003:0000050c ?itemLevelKey@Nampower@@3PADA 100ab50c item_scripts.cpp.obj 0003:00000518 ?format@?1??TriggerAuraEvent@Nampower@@YAXPAIII_NI@Z@4PADA 100ab518 auras.cpp.obj 0003:00000528 ?format@?4??CGBuffBar_UpdateDurationHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@EH@Z@4PADA 100ab528 auras.cpp.obj - 0003:00000530 ?format@?1??UnitCombatLogUnitDeadHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_K@Z@4PADA 100ab530 auras.cpp.obj - 0003:00000534 ?format@?1??TriggerAutoAttackEvent@Nampower@@YAX_K0IIIEIII@Z@4PADA 100ab534 autoattack.cpp.obj + 0003:00000534 ?format@?1??UnitCombatLogUnitDeadHook@Nampower@@YAXPAVPatchDetourBase@hadesmem@@_K@Z@4PADA 100ab534 auras.cpp.obj + 0003:00000538 ?format@?1??TriggerAutoAttackEvent@Nampower@@YAX_K0IIIEIII@Z@4PADA 100ab538 autoattack.cpp.obj 0003:00000550 ?__vcrt_flsindex@@3KA 100ab550 libvcruntime:per_thread_data.obj 0003:00000560 ?prefix@?1??getDimension@UnDecorator@@CA?AVDName@@_N@Z@4UStringLiteral@@A 100ab560 libvcruntime:undname.obj 0003:00000628 ?errno_no_memory@@3HA 100ab628 libucrt:errno.obj diff --git a/nampower/auras.cpp b/nampower/auras.cpp index 606a2e4..84f7a74 100644 --- a/nampower/auras.cpp +++ b/nampower/auras.cpp @@ -147,13 +147,21 @@ namespace Nampower { bool isBuff = auraSlot < 32; game::Events eventToTrigger = isBuff ? game::BUFF_UPDATE_DURATION_SELF : game::DEBUFF_UPDATE_DURATION_SELF; - static char format[] = "%d%d%d"; - ((int (__cdecl *)(int, char *, uint32_t, int, uint32_t)) Offsets::SignalEventParam)( + auto playerUnit = game::GetObjectPtr(game::ClntObjMgrGetActivePlayerGuid()); + uint32_t spellId = 0; + if (playerUnit) { + auto *unitFields = *reinterpret_cast(playerUnit + 68); + spellId = unitFields->aura[auraSlot]; + } + + static char format[] = "%d%d%d%d"; + ((int (__cdecl *)(int, char *, uint32_t, int, uint32_t, uint32_t)) Offsets::SignalEventParam)( eventToTrigger, format, auraSlot, durationMs, - expirationTime); + expirationTime, + spellId); } } diff --git a/nampower/main.hpp b/nampower/main.hpp index 9425330..e3a7ebe 100644 --- a/nampower/main.hpp +++ b/nampower/main.hpp @@ -25,7 +25,7 @@ namespace Nampower { constexpr uint32_t DISENCHANT_QUALITY_PURPLE = 0x04; // Epic constexpr uint32_t MAJOR_VERSION = 2; - constexpr uint32_t MINOR_VERSION = 32; + constexpr uint32_t MINOR_VERSION = 33; constexpr uint32_t PATCH_VERSION = 0; constexpr int32_t LUA_REGISTRYINDEX = -10000; diff --git a/nampower/misc_scripts.cpp b/nampower/misc_scripts.cpp index df64578..78c85e3 100644 --- a/nampower/misc_scripts.cpp +++ b/nampower/misc_scripts.cpp @@ -140,7 +140,7 @@ namespace Nampower { // Add fields to table PushTableValue(luaState, LuaFields::castId, castParams->castId); PushTableValue(luaState, LuaFields::spellId, castParams->spellId); - PushTableValue(luaState, LuaFields::guid, castParams->guid); + PushTableValue(luaState, LuaFields::guid, ConvertGuidToString(castParams->guid)); PushTableValue(luaState, LuaFields::castType, static_cast(castParams->castType)); PushTableValue(luaState, LuaFields::castStartS, castStartTimeWow); PushTableValue(luaState, LuaFields::castEndS, castEndTimeWow); diff --git a/nampower/spellcast.cpp b/nampower/spellcast.cpp index 984797e..8961276 100644 --- a/nampower/spellcast.cpp +++ b/nampower/spellcast.cpp @@ -496,6 +496,7 @@ namespace Nampower { } auto const currentTargetGuid = game::GetCurrentTargetGuid(); + auto const guidForHistory = (guid != 0) ? guid : currentTargetGuid; if (spellIsChanneling) { auto casterGuid = game::UnitGetGuid(casterUnit); @@ -554,7 +555,7 @@ namespace Nampower { currentTime, ON_SWING, 0); gCastHistory.pushFront({ - gNextCastId, casterUnit, spellId, item, guid, + gNextCastId, casterUnit, spellId, item, guidForHistory, spell->StartRecoveryCategory, castTime, currentTime, @@ -824,7 +825,7 @@ namespace Nampower { } gCastHistory.pushFront({ - gNextCastId, casterUnit, spellId, item, guid, + gNextCastId, casterUnit, spellId, item, guidForHistory, spell->StartRecoveryCategory, castTime, currentTime,