<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="52">
  <CheatEntries>
    <CheatEntry>
      <ID>3103</ID>
      <Description>"Toggle Compact View"</Description>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not toggleCompactView then
    function toggleCompactView(sender, forceEnable)
        local isCompactMode = not (compactViewMenuItem.Caption == 'Compact View Mode')
        if forceEnable ~= nil then
            isCompactMode = not forceEnable
        end

        synchronize(function()
            compactViewMenuItem.Caption = isCompactMode and 'Compact View Mode' or 'Full View Mode'
            getMainForm().Splitter1.Visible = isCompactMode
            getMainForm().Panel4.Visible    = isCompactMode
            getMainForm().Panel5.Visible    = isCompactMode
        end)
    end
end

if not createCompactViewMenu then
    function createCompactViewMenu()
        if isCompactMenuCreated then return end

        synchronize(function()
            local mainMenu = getMainForm().Menu.Items
            compactViewMenuItem = createMenuItem(mainMenu)
            compactViewMenuItem.Caption = 'Compact View Mode'
            compactViewMenuItem.OnClick = toggleCompactView
            mainMenu.add(compactViewMenuItem)
        end)

        isCompactMenuCreated = true
    end
end

createCompactViewMenu()
toggleCompactView(nil, true)

[DISABLE]
{$lua}
if toggleCompactView then
    toggleCompactView(nil, false)
end
</AssemblerScript>
    </CheatEntry>
    <CheatEntry>
      <ID>2981</ID>
      <Description>"GWorld → Simple data"</Description>
      <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModuleUE then
  function AOBScanModuleUE(moduleName, signature)
    local baseAddr = nil
    local maxAddr = 0
    local modList
    synchronize(function()
      modList = enumModules()
    end)
    for _, mod in ipairs(modList) do
      if string.lower(mod.Name) == string.lower(moduleName) then
        baseAddr = mod.Address
        maxAddr = baseAddr + mod.Size
        break
      end
    end
    if not baseAddr then return nil end
    local ms = createMemScan()
    synchronize(function()
      ms.firstScan(soExactValue, vtByteArray, nil, signature,
        nil, baseAddr, maxAddr, '+X-C-W', fsmNotAligned, '1', true, true, false, false)
    end)
    ms.waitTillDone()
    local results = createFoundList(ms)
    results.initialize()
    local addr
    synchronize(function()
      if results.getCount() &gt; 0 then
        addr = results[0]
      end
    end)
    results.destroy()
    ms.destroy()
    return addr
  end
end
registerLuaFunctionHighlight('AOBScanModuleUE')

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_13A179', aob='48 8B 1D ?? ?? ?? ?? 48 85 ?? 74 ?? 41 B0 01 33 ?? ?? 8B ?? E8', pos=3, aoblen=7, symbol='gworld_addr_13A179'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModuleUE(module_name, entry.aob)
  if aob_addr_str then
    local aob_addr_val = tonumber(aob_addr_str, 16)
    local offset_addr = aob_addr_val + entry.pos
    local relative_offset = readInteger(offset_addr, true)
    local final_addr = relative_offset + aob_addr_val + entry.aoblen
    synchronize(function()
      unregisterSymbol(entry.symbol)
      registerSymbol(entry.symbol, final_addr)
    end)
    print(string.format('[SymbolScanner] %s registered at: %X', entry.name, final_addr))
  else
    print(string.format('[SymbolScanner] WARNING: AOB scan failed for %s', entry.name))
  end
end

closeLuaEngine()
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
unregisterSymbol('gworld_addr_13A179')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>2982</ID>
          <Description>"base"</Description>
          <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_13A179</Address>
          <Offsets>
            <Offset>0</Offset>
          </Offsets>
          <CheatEntries>
            <CheatEntry>
              <ID>3077</ID>
              <Description>"OwningGameInstance ▸ GameWork"</Description>
              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>D38</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>3082</ID>
                  <Description>"MONEY"</Description>
                  <ShowAsSigned>1</ShowAsSigned>
                  <VariableType>8 Bytes</VariableType>
                  <Address>+1E0</Address>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>3106</ID>
              <Description>"OwningGameInstance"</Description>
              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>3108</ID>
                  <Description>"Chain (Native-C)"</Description>
                  <ShowAsSigned>0</ShowAsSigned>
                  <VariableType>4 Bytes</VariableType>
                  <Address>+7DC</Address>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>2983</ID>
              <Description>"GameState ▸ PlayerArray ▸ [0] ▸ PawnPrivate ▸ AbilitySystemComponent"</Description>
              <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+1B0</Address>
              <Offsets>
                <Offset>0</Offset>
                <Offset>7E0</Offset>
                <Offset>340</Offset>
                <Offset>0</Offset>
                <Offset>2E0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>2984</ID>
                  <Description>"SpawnedAttributes [3 x ObjectProperty (8B)]"</Description>
                  <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+10A8</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>2985</ID>
                      <Description>"[2] CharacterAttributeSet_2147477184 (CharacterAttributeSet)"</Description>
                      <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsHex>1</ShowAsHex>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+10</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>350</ID>
                          <Description>"**** Auto fill HP/Oxygen/Shield, if data available ****"</Description>
                          <Options moHideChildren="1"/>
                          <VariableType>Auto Assembler Script</VariableType>
                          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
if hpRefillTimerAob1 then
  hpRefillTimerAob1.destroy()
  hpRefillTimerAob1 = nil
end
-- ============================================================
-- 設定欄位說明
-- ============================================================
--   desc      : memoryrecord description（必填，寫入目標）
--   srcType   : 來源類型
--                 0 = 從 target 位址 + offset 讀取
--                 1 = 固定值
--                 2 = 從另一個 memoryrecord 讀取
--   offset    : srcType=0 時用，target.address + offset 為來源
--               (offset=0 代表 target 自己本身)
--   value     : srcType=1 時為固定數值
--               srcType=2 時為 source memoryrecord 的 description
--   mult      : srcType=0 時的乘數，預設 1
--               (例：max HP * 10 寫回 current HP)
--   srcType0Datatype : srcType=0 時 source 的資料型別 (vtByte/vtWord/
--               vtDword/vtQword/vtSingle/vtDouble)，預設同 target
--   threshold : 比較用的門檻值（選填）。
--               不設 → 用「來源值」當門檻（舊行為，門檻=回填值）。
--               有設 → 比較用 threshold、寫入仍用來源值，
--                      可做到「觸發門檻」與「回填值」分離。
--   writeMode : 寫入條件，預設 '&lt;'
--                 '&lt;'  current &lt;  門檻 時寫入（補滿/保底用）
--                 '&lt;=' current &lt;= 門檻 時寫入
--                 '&gt;'  current &gt;  門檻 時寫入（限制上限用）
--                 '&gt;=' current &gt;= 門檻 時寫入
--                 '==' 或 '='        相等時寫入
--                 '~=' 或 '!=' 或 '&lt;&gt;' 不相等時寫入（凍結值用）
--                 '*'  無條件寫入（強制覆寫）
-- ============================================================
-- 設定範例集（複製到下方 recordConfigs 內使用）
-- ============================================================
-- -
-- [補滿型] HP/MP/Sta 補滿（max 在 +0x10，乘 10 倍寫回 current）
--   { desc = 'HP', srcType = 0, offset = 0x10, mult = 10 },
-- -
-- [補滿型] 不乘倍數，直接 current = max
--   { desc = 'HP', srcType = 0, offset = 0x10 },
-- -
-- [保底型] target 自己 &lt; 某值就拉到該值（門檻=回填值，最單純）
--   { desc = 'HP', srcType = 1, value = 10, writeMode = '&lt;' },
--   { desc = 'Cur. HP 1', srcType = 1, value = 10, writeMode = '&lt;' },
-- -
-- [保底型·分離] HP &lt; 100 就直接補到 9999（門檻100、回填9999）
--   { desc = 'HP', srcType = 1, value = 9999, threshold = 100, writeMode = '&lt;' },
-- -
-- [緊急補滿] HP &lt; 10 才補到 max*10，平時讓它自然消耗
--   { desc = 'HP', srcType = 0, offset = 0x10, mult = 10,
--     threshold = 10, writeMode = '&lt;' },
-- -
-- [上限型] 等級超過 99 拉回 99
--   { desc = 'Level', srcType = 1, value = 99, writeMode = '&gt;' },
-- -
-- [上限型] 物品數量超過 99 拉回 99
--   { desc = 'Potion', srcType = 1, value = 99, writeMode = '&gt;' },
-- -
-- [凍結型] 金錢不等於 99999999 就寫回（防遊戲扣款也防你誤花）
--   { desc = 'Gold', srcType = 1, value = 99999999, writeMode = '~=' },
-- -
-- [凍結型] 技能 CD 不等於 0 就清零
--   { desc = 'SkillCD', srcType = 1, value = 0, writeMode = '~=' },
-- -
-- [強制型] 無條件每 tick 把無敵時間設成 9999
--   { desc = 'InvincibleTimer', srcType = 1, value = 9999, writeMode = '*' },
-- -
-- [鏡像型] CurHP 和 MaxHP 不一致就同步（CurHP = MaxHP）
--   { desc = 'CurHP', srcType = 2, value = 'MaxHP', writeMode = '~=' },
-- -
-- [鏡像型] 把另一個欄位的值乘 2 寫過來（透過 srcType=2，但無倍數）
--   { desc = 'AttackDisplay', srcType = 2, value = 'AttackBase' },
--   注意：srcType=2 沒有 mult 參數，需乘倍數請用 srcType=0
-- -
-- [指定型別] target 是 vtQword，但 max 在 +0x20 是 vtDword
--   { desc = 'Mana', srcType = 0, offset = 0x20,
--     srcType0Datatype = vtDword, mult = 10 },
-- -
-- [Float] 移動速度倍率：current &lt; 5.0 時拉到 5.0
--   { desc = 'MoveSpeed', srcType = 1, value = 5.0, writeMode = '&lt;' },
-- -
-- [Byte] 1 byte 的 buff 旗標固定為 1
--   { desc = 'BuffFlag', srcType = 1, value = 1, writeMode = '~=' },
-- -
-- 一個提醒：threshold 是拿來和 curVal 直接比較的原始數值，如果該 record 是
-- vtSingle/vtDouble（例如移速倍率），記得 threshold 也寫成浮點數（threshold = 5.0）。
-- -
-- ============================================================
local recordConfigs = {
  { desc = 'HP.BaseValue', srcType = 1, value = 9, writeMode = '&lt;' },
  { desc = 'HP.CurrentValue', srcType = 1, value = 9, writeMode = '&lt;' },
  { desc = 'OX.BaseValue', srcType = 1, value = 5, writeMode = '&lt;' },
  { desc = 'OX.CurrentValue', srcType = 1, value = 5, writeMode = '&lt;' },
  { desc = 'SH.BaseValue', srcType = 1, value = 5, writeMode = '&lt;' },
  { desc = 'SH.CurrentValue', srcType = 1, value = 5, writeMode = '&lt;' },
  { desc = 'Chain (Native-C)', srcType = 1, value = 28, writeMode = '&lt;' },
}
-- ============================================================
-- 依 vartype 取得 read/write 函式
-- ============================================================
local function readByteValue(addr)
  local b = readBytes(addr, 1, false)
  return b
end
local function writeByteValue(addr, v)
  writeBytes(addr, v)
end
local function getRw(vt)
  if vt == vtByte   then return readByteValue, writeByteValue end
  if vt == vtWord   then return readSmallInteger, writeSmallInteger end
  if vt == vtDword  then return readInteger, writeInteger end
  if vt == vtQword  then return readQword, writeQword end
  if vt == vtSingle then return readFloat, writeFloat end
  if vt == vtDouble then return readDouble, writeDouble end
  return nil, nil
end
-- ============================================================
-- 依 writeMode 判斷是否該寫入
-- ============================================================
local function shouldWrite(curVal, srcVal, mode)
  mode = mode or '&lt;'
  if mode == '*'  then return true end
  if mode == '&lt;'  then return curVal &lt;  srcVal end
  if mode == '&lt;=' then return curVal &lt;= srcVal end
  if mode == '&gt;'  then return curVal &gt;  srcVal end
  if mode == '&gt;=' then return curVal &gt;= srcVal end
  if mode == '==' or mode == '='  then return curVal == srcVal end
  if mode == '~=' or mode == '!=' or mode == '&lt;&gt;' then return curVal ~= srcVal end
  return false
end
-- ============================================================
-- 解析 memoryrecord
-- ============================================================
local function resolveRecord(al, desc)
  local mr = al.getMemoryRecordByDescription(desc)
  if mr == nil then return nil end
  local addr = mr.CurrentAddress
  if addr == nil then return nil end
  local resolved = getAddress(addr)
  if resolved == 0 then return nil end
  local vt = mr.Type
  local reader, writer = getRw(vt)
  if reader == nil then return nil end
  return { mr = mr, resolved = resolved, vt = vt, reader = reader, writer = writer }
end
-- ============================================================
-- 取得 source value
-- ============================================================
local function getSourceValue(cfg, target, al)
  local st = cfg.srcType
  if st == 0 then
    if cfg.offset == nil then return nil end
    local srcAddr = target.resolved + cfg.offset
    local srcVt = cfg.srcType0Datatype or target.vt
    local srcReader = getRw(srcVt)
    if srcReader == nil then return nil end
    local srcVal = srcReader(srcAddr)
    if srcVal == nil then return nil end
    local mult = cfg.mult or 1
    return srcVal * mult
  elseif st == 1 then
    if cfg.value == nil then return nil end
    return cfg.value
  elseif st == 2 then
    if cfg.value == nil then return nil end
    local srcRec = resolveRecord(al, cfg.value)
    if srcRec == nil then return nil end
    return srcRec.reader(srcRec.resolved)
  end
  return nil
end
-- ============================================================
-- Timer
-- ============================================================
hpRefillTimerAob1 = createTimer(getMainForm(), false)
hpRefillTimerAob1.Interval = 80
hpRefillTimerAob1.OnTimer = function(t)
  local al = getAddressList()
  for _, cfg in ipairs(recordConfigs) do
    pcall(function()
      local target = resolveRecord(al, cfg.desc)
      if target == nil then return end
      local srcVal = getSourceValue(cfg, target, al)   -- 回填值
      if srcVal == nil then return end
      local curVal = target.reader(target.resolved)
      if curVal == nil then return end
      -- 比較門檻：有設 threshold 就用 threshold，否則用回填值本身
      local cmpVal = cfg.threshold
      if cmpVal == nil then cmpVal = srcVal end
      if shouldWrite(curVal, cmpVal, cfg.writeMode) then
        target.writer(target.resolved, srcVal)
      end
    end)
  end
end
hpRefillTimerAob1.Enabled = true
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
if hpRefillTimerAob1 then
  hpRefillTimerAob1.Enabled = false
  hpRefillTimerAob1.destroy()
  hpRefillTimerAob1 = nil
end
{$asm}
</AssemblerScript>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2986</ID>
                          <Description>"HealthPoint (GameplayAttributeData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2987</ID>
                              <Description>"HP.BaseValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2988</ID>
                              <Description>"HP.CurrentValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+C</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>3034</ID>
                          <Description>"DivingOxygenPoint (GameplayAttributeData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+130</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>3035</ID>
                              <Description>"OX.BaseValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>3036</ID>
                              <Description>"OX.CurrentValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+C</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>3072</ID>
                          <Description>"GuardEndurance (GameplayAttributeData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+200</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>3073</ID>
                              <Description>"SH.BaseValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>3074</ID>
                              <Description>"SH.CurrentValue"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Float</VariableType>
                              <Address>+C</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>3083</ID>
      <Description>"Get magic stone amount"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>{
  Generated by AOBMaker,  bbfox@https://opencheattables.com
  Date   : 2026/06/20
}

[ENABLE]

aobscanmodule(INJECT_GET_MSTONE_PIECE,$process,75 ?? 03 ?? 08 ?? 83 ?? 10)
// raw AOB: 75 ?? 48 8B 03 48 8B CB 48 8B 5C 24 30 48 83 C4 20 5F 48 FF A0 08 04 00 00 48 8B 93 E8 0C 00 00 33 C0 4C 63 83 F0 0C 00 00 49 C1 E0 04 4C 03 C2 49 3B D0 74 ?? 48 8B 0F 48 39 0A 75 ?? 03 42 08 48 83 C2 10 49 3B D0 75 ?? 48 8B 5C 24 30 48 83 C4 20 5F C3 CC CC 48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 40 48 8B DA 33 D2 48 89 13
// injection point AOB: 75 ?? 03 ?? 08 ?? 83 ?? 10 ?? 3B ?? 75 ?? ?? 8B ?? 24 ?? 48 83 C4 20 ?? C3 CC CC ?? 89 ?? 24 ?? ?? 89 ?? 24 ?? ?? 48 83 EC 40 ?? 8B ?? 33 ?? ?? 89
alloc(newmem,$1000,INJECT_GET_MSTONE_PIECE)

alloc(INJECT_GET_MSTONE_PIECEo, $5)

label(code)
label(return)
label(i_base_mstone_addr)

INJECT_GET_MSTONE_PIECEo:
  readmem(INJECT_GET_MSTONE_PIECE, $5)

newmem:

code:
  // jne "Elliot-Win64-Shipping.exe"+4F8FA5A
  reassemble(INJECT_GET_MSTONE_PIECE)

  //--------------------------
  mov [i_base_mstone_addr], rdx
  //--------------------------

  // add eax,[rdx+08]
  reassemble(INJECT_GET_MSTONE_PIECE+2)
  jmp return
  align 10 cc
  i_base_mstone_addr:
  dq 0

INJECT_GET_MSTONE_PIECE:
  jmp newmem
return:
registersymbol(INJECT_GET_MSTONE_PIECE INJECT_GET_MSTONE_PIECEo)
registersymbol(i_base_mstone_addr)
[DISABLE]

INJECT_GET_MSTONE_PIECE:
  readmem(INJECT_GET_MSTONE_PIECEo, $5)

unregistersymbol(INJECT_GET_MSTONE_PIECE INJECT_GET_MSTONE_PIECEo)
unregistersymbol(i_base_mstone_addr)
dealloc(newmem)
dealloc(INJECT_GET_MSTONE_PIECEo)

{
// ORIGINAL CODE - INJECTION POINT: "Elliot-Win64-Shipping.exe"+4F8FA55

"Elliot-Win64-Shipping.exe"+4F8FA00: 48 89 5C 24 08                     - mov [rsp+08],rbx
"Elliot-Win64-Shipping.exe"+4F8FA05: 57                                 - push rdi
"Elliot-Win64-Shipping.exe"+4F8FA06: 48 83 EC 20                        - sub rsp,20
"Elliot-Win64-Shipping.exe"+4F8FA0A: 48 8B D9                           - mov rbx,rcx
"Elliot-Win64-Shipping.exe"+4F8FA0D: 48 8B FA                           - mov rdi,rdx
"Elliot-Win64-Shipping.exe"+4F8FA10: 48 8B CA                           - mov rcx,rdx
"Elliot-Win64-Shipping.exe"+4F8FA13: E8 58 D5 F6 FF                     - call "Elliot-Win64-Shipping.exe"+4EFCF70
"Elliot-Win64-Shipping.exe"+4F8FA18: 3C 01                              - cmp al,01
"Elliot-Win64-Shipping.exe"+4F8FA1A: 75 17                              - jne "Elliot-Win64-Shipping.exe"+4F8FA33
"Elliot-Win64-Shipping.exe"+4F8FA1C: 48 8B 03                           - mov rax,[rbx]
"Elliot-Win64-Shipping.exe"+4F8FA1F: 48 8B CB                           - mov rcx,rbx
"Elliot-Win64-Shipping.exe"+4F8FA22: 48 8B 5C 24 30                     - mov rbx,[rsp+30]
"Elliot-Win64-Shipping.exe"+4F8FA27: 48 83 C4 20                        - add rsp,20
"Elliot-Win64-Shipping.exe"+4F8FA2B: 5F                                 - pop rdi
"Elliot-Win64-Shipping.exe"+4F8FA2C: 48 FF A0 08 04 00 00               - jmp qword ptr [rax+00000408]
"Elliot-Win64-Shipping.exe"+4F8FA33: 48 8B 93 E8 0C 00 00               - mov rdx,[rbx+00000CE8]
"Elliot-Win64-Shipping.exe"+4F8FA3A: 33 C0                              - xor eax,eax
"Elliot-Win64-Shipping.exe"+4F8FA3C: 4C 63 83 F0 0C 00 00               - movsxd  r8,dword ptr [rbx+00000CF0]
"Elliot-Win64-Shipping.exe"+4F8FA43: 49 C1 E0 04                        - shl r8,04
"Elliot-Win64-Shipping.exe"+4F8FA47: 4C 03 C2                           - add r8,rdx
"Elliot-Win64-Shipping.exe"+4F8FA4A: 49 3B D0                           - cmp rdx,r8
"Elliot-Win64-Shipping.exe"+4F8FA4D: 74 14                              - je "Elliot-Win64-Shipping.exe"+4F8FA63
"Elliot-Win64-Shipping.exe"+4F8FA4F: 48 8B 0F                           - mov rcx,[rdi]
"Elliot-Win64-Shipping.exe"+4F8FA52: 48 39 0A                           - cmp [rdx],rcx
// ---------- INJECTING HERE ----------
"Elliot-Win64-Shipping.exe"+4F8FA55: 75 03                              - jne "Elliot-Win64-Shipping.exe"+4F8FA5A
// ---------- DONE INJECTING  ----------
"Elliot-Win64-Shipping.exe"+4F8FA57: 03 42 08                           - add eax,[rdx+08]
"Elliot-Win64-Shipping.exe"+4F8FA5A: 48 83 C2 10                        - add rdx,10
"Elliot-Win64-Shipping.exe"+4F8FA5E: 49 3B D0                           - cmp rdx,r8
"Elliot-Win64-Shipping.exe"+4F8FA61: 75 EF                              - jne "Elliot-Win64-Shipping.exe"+4F8FA52
"Elliot-Win64-Shipping.exe"+4F8FA63: 48 8B 5C 24 30                     - mov rbx,[rsp+30]
"Elliot-Win64-Shipping.exe"+4F8FA68: 48 83 C4 20                        - add rsp,20
"Elliot-Win64-Shipping.exe"+4F8FA6C: 5F                                 - pop rdi
"Elliot-Win64-Shipping.exe"+4F8FA6D: C3                                 - ret
"Elliot-Win64-Shipping.exe"+4F8FA6E: CC                                 - int 3
"Elliot-Win64-Shipping.exe"+4F8FA6F: CC                                 - int 3
"Elliot-Win64-Shipping.exe"+4F8FA70: 48 89 5C 24 08                     - mov [rsp+08],rbx
"Elliot-Win64-Shipping.exe"+4F8FA75: 48 89 74 24 10                     - mov [rsp+10],rsi
"Elliot-Win64-Shipping.exe"+4F8FA7A: 57                                 - push rdi
"Elliot-Win64-Shipping.exe"+4F8FA7B: 48 83 EC 40                        - sub rsp,40
"Elliot-Win64-Shipping.exe"+4F8FA7F: 48 8B DA                           - mov rbx,rdx
"Elliot-Win64-Shipping.exe"+4F8FA82: 33 D2                              - xor edx,edx
}

</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>3084</ID>
          <Description>"amt"</Description>
          <ShowAsSigned>0</ShowAsSigned>
          <Color>FF8080</Color>
          <VariableType>4 Bytes</VariableType>
          <Address>i_base_mstone_addr</Address>
          <Offsets>
            <Offset>8</Offset>
          </Offsets>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>100</ID>
      <Description>"GWorld → more game data"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end

if not AOBScanModuleUE then
  function AOBScanModuleUE(moduleName, signature)
    local baseAddr = nil
    local maxAddr = 0
    local modList
    synchronize(function()
      modList = enumModules()
    end)
    for _, mod in ipairs(modList) do
      if string.lower(mod.Name) == string.lower(moduleName) then
        baseAddr = mod.Address
        maxAddr = baseAddr + mod.Size
        break
      end
    end
    if not baseAddr then return nil end
    local ms = createMemScan()
    synchronize(function()
      ms.firstScan(soExactValue, vtByteArray, nil, signature,
        nil, baseAddr, maxAddr, '+X-C-W', fsmNotAligned, '1', true, true, false, false)
    end)
    ms.waitTillDone()
    local results = createFoundList(ms)
    results.initialize()
    local addr
    synchronize(function()
      if results.getCount() &gt; 0 then
        addr = results[0]
      end
    end)
    results.destroy()
    ms.destroy()
    return addr
  end
end
registerLuaFunctionHighlight('AOBScanModuleUE')

if not closeLuaEngine then
  function closeLuaEngine()
    synchronize(function()
      getLuaEngine().Close()
    end)
  end
end
registerLuaFunctionHighlight('closeLuaEngine')

local AOBs = {
  {name='GWorld → gworld_addr_5214E2', aob='48 8B 1D ?? ?? ?? ?? 48 85 ?? 74 ?? 41 B0 01 33 ?? ?? 8B ?? E8', pos=3, aoblen=7, symbol='gworld_addr_5214E2'},
}

local module_name = process

for _, entry in ipairs(AOBs) do
  local aob_addr_str = AOBScanModuleUE(module_name, entry.aob)
  if aob_addr_str then
    local aob_addr_val = tonumber(aob_addr_str, 16)
    local offset_addr = aob_addr_val + entry.pos
    local relative_offset = readInteger(offset_addr, true)
    local final_addr = relative_offset + aob_addr_val + entry.aoblen
    synchronize(function()
      unregisterSymbol(entry.symbol)
      registerSymbol(entry.symbol, final_addr)
    end)
    print(string.format('[SymbolScanner] %s registered at: %X', entry.name, final_addr))
  else
    print(string.format('[SymbolScanner] WARNING: AOB scan failed for %s', entry.name))
  end
end

closeLuaEngine()
{$asm}

[DISABLE]
{$lua}
if syntaxcheck then return end
unregisterSymbol('gworld_addr_5214E2')
closeLuaEngine()
{$asm}
      
</AssemblerScript>
      <CheatEntries>
        <CheatEntry>
          <ID>101</ID>
          <Description>"base"</Description>
          <ShowAsHex>1</ShowAsHex>
          <ShowAsSigned>0</ShowAsSigned>
          <VariableType>8 Bytes</VariableType>
          <Address>gworld_addr_5214E2</Address>
          <Offsets>
            <Offset>0</Offset>
          </Offsets>
          <CheatEntries>
            <CheatEntry>
              <ID>102</ID>
              <Description>"OwningGameInstance"</Description>
              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+228</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>103</ID>
                  <Description>"GameWork"</Description>
                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+D38</Address>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>105</ID>
                      <Description>"bStartedWithNewGamePlus"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+1</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>107</ID>
                      <Description>"PlayerStatus (PlayerStatusWork)"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+8</Address>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>108</ID>
                          <Description>"Hp"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>109</ID>
                          <Description>"HpMax"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+4</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>110</ID>
                          <Description>"BaseHpMax"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+8</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>111</ID>
                          <Description>"HpBuff"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+C</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>112</ID>
                          <Description>"Weapon1"</Description>
                          <DropDownList DisplayValueAsItem="1">0:EWeaponType::None
1:EWeaponType::Sword
2:EWeaponType::Spear
3:EWeaponType::Hammer
4:EWeaponType::Bomb
5:EWeaponType::Boomerang
6:EWeaponType::Bow
7:EWeaponType::Kusari
8:EWeaponType::Compass
9:EWeaponType::Num
10:EWeaponType::EWeaponType_MAX
</DropDownList>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+10</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>113</ID>
                          <Description>"Weapon2"</Description>
                          <DropDownListLink>Weapon1</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+11</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>114</ID>
                          <Description>"supportAction"</Description>
                          <DropDownList DisplayValueAsItem="1">0:ESupportActionType::None
1:ESupportActionType::Warp
2:ESupportActionType::Dash
3:ESupportActionType::Fire
4:ESupportActionType::Attract
5:ESupportActionType::Clone
6:ESupportActionType::Heal
7:ESupportActionType::Num
8:ESupportActionType::ESupportActionType_MAX
</DropDownList>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+12</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>115</ID>
                          <Description>"SupportAIMode"</Description>
                          <DropDownList DisplayValueAsItem="1">0:ESupportAIMode::Default
1:ESupportAIMode::Wait
2:ESupportAIMode::Forward
3:ESupportAIMode::Hide
4:ESupportAIMode::Come
5:ESupportAIMode::Num
6:ESupportAIMode::ESupportAIMode_MAX
</DropDownList>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+13</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>116</ID>
                          <Description>"bSupportHide"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+14</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>117</ID>
                          <Description>"bEnableReraise"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+15</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>118</ID>
                          <Description>"BuffData"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+18</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>119</ID>
                      <Description>"EquipWeaponIDs [9 x NameProperty (8B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <DropDownList DisplayValueAsItem="1">0:None
8722358:WPN_SWORD
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+50</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>120</ID>
                          <Description>"[0]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>121</ID>
                          <Description>"[1]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+8</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>122</ID>
                          <Description>"[2]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+10</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>123</ID>
                          <Description>"[3]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+18</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>124</ID>
                          <Description>"[4]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+20</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>125</ID>
                          <Description>"[5]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+28</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>126</ID>
                          <Description>"[6]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+30</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>127</ID>
                          <Description>"[7]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+38</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>128</ID>
                          <Description>"[8]"</Description>
                          <DropDownListLink>EquipWeaponIDs [9 x NameProperty (8B)]</DropDownListLink>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+40</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>129</ID>
                      <Description>"WeaponLevels [9 x ByteProperty (1B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+60</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>130</ID>
                          <Description>"[0]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>131</ID>
                          <Description>"[1]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+1</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>132</ID>
                          <Description>"[2]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+2</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>133</ID>
                          <Description>"[3]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+3</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>134</ID>
                          <Description>"[4]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+4</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>135</ID>
                          <Description>"[5]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+5</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>136</ID>
                          <Description>"[6]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+6</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>137</ID>
                          <Description>"[7]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+7</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>138</ID>
                          <Description>"[8]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+8</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>139</ID>
                      <Description>"ArrowMax"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+70</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>140</ID>
                      <Description>"BombMax"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+74</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>141</ID>
                      <Description>"ShieldID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+78</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>145</ID>
                      <Description>"MagicStonePresetData [10 x MagicStonePresetData (16B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+B0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>146</ID>
                          <Description>"[0] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>147</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>148</ID>
                          <Description>"[1] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+10</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>149</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>150</ID>
                          <Description>"[2] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+20</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>151</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>152</ID>
                          <Description>"[3] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>153</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>154</ID>
                          <Description>"[4] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+40</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>155</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>156</ID>
                          <Description>"[5] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+50</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>157</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>158</ID>
                          <Description>"[6] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+60</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>159</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>160</ID>
                          <Description>"[7] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+70</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>161</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>162</ID>
                          <Description>"[8] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+80</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>163</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>164</ID>
                          <Description>"[9] (MagicStonePresetData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+90</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>165</ID>
                              <Description>"PresetData"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+0</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>166</ID>
                      <Description>"SelectingPresetNum"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+C0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>167</ID>
                      <Description>"MagicStoneMenuSortTypeIndex"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+C4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>168</ID>
                      <Description>"MagicStoneDecomposeSortTypeIndex"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+C8</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>169</ID>
                      <Description>"MagicStoneCostEnhanceLevel"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+CC</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>170</ID>
                      <Description>"MagicStoneLotteryExperience"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+D0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>171</ID>
                      <Description>"MagicStoneShopGachaNewFlag"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+D4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>172</ID>
                      <Description>"MagicStoneShopDecomposeNewFlag"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+D5</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>173</ID>
                      <Description>"MagicStoneShopBoxEnhanceNewFlag"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+D6</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>175</ID>
                      <Description>"SupportType"</Description>
                      <DropDownList DisplayValueAsItem="1">0:ESupportType::None
1:ESupportType::Princess
2:ESupportType::Fairy
3:ESupportType::CatGirl
4:ESupportType::Auto
4:ESupportType::Num
5:ESupportType::ESupportType_MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+E8</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>176</ID>
                      <Description>"SupportActionLevels [7 x Support (2B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+F0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>177</ID>
                          <Description>"[0] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>178</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>179</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>180</ID>
                          <Description>"[1] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+2</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>181</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>182</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>183</ID>
                          <Description>"[2] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+4</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>184</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>185</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>186</ID>
                          <Description>"[3] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+6</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>187</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>188</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>189</ID>
                          <Description>"[4] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>190</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>191</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>192</ID>
                          <Description>"[5] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+A</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>193</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>194</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>195</ID>
                          <Description>"[6] (Support)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>196</ID>
                              <Description>"Level"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>197</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+1</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>104</ID>
                      <Description>"Bottles [1 x BottleData (12B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+1D0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2511</ID>
                          <Description>"[0] (BottleData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>106</ID>
                              <Description>"InBottleID"</Description>
                              <DropDownList DisplayValueAsItem="1">8721737:ITEM_CONTAINER_HP
</DropDownList>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2512</ID>
                              <Description>"IsNew"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>225</ID>
                      <Description>"MONEY"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>8 Bytes</VariableType>
                      <Address>+1E0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1242</ID>
                      <Description>"ActiveSubQuestID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+468</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1243</ID>
                      <Description>"SubQuestNewEntryNums"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+470</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1244</ID>
                      <Description>"SubQuestNoticeNoOrderNums"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+474</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1245</ID>
                      <Description>"SubQuestNoticeExpireNums"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+478</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1246</ID>
                      <Description>"SubQuestExpiredNums"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+47C</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1247</ID>
                      <Description>"SubQuestNoticedTime"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+480</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1274</ID>
                      <Description>"MagicSpringElapsedData {Map: 22, NameProperty → StructProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+5D8</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1275</ID>
                          <Description>"[0] MagicSpring_A4_SW_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1276</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1277</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1278</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1279</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1280</ID>
                          <Description>"[1] MagicSpring_A4_SW_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1281</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1282</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1283</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1284</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1285</ID>
                          <Description>"[2] MagicSpring_A4_SN_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+38</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1286</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1287</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1288</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1289</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1290</ID>
                          <Description>"[3] MagicSpring_A4_SN_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+54</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1291</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1292</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1293</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1294</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1295</ID>
                          <Description>"[4] MagicSpring_A4_LK_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+70</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1296</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1297</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1298</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1299</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1300</ID>
                          <Description>"[5] MagicSpring_A4_FO_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+8C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1301</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1302</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1303</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1304</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1305</ID>
                          <Description>"[6] MagicSpring_A4_FG_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+A8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1306</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1307</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1308</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1309</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1310</ID>
                          <Description>"[7] MagicSpring_A4_FO_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+C4</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1311</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1312</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1313</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1314</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1315</ID>
                          <Description>"[8] MagicSpring_A4_GR_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+E0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1316</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1317</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1318</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1319</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1320</ID>
                          <Description>"[9] MagicSpring_A4_DE_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+FC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1321</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1322</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1323</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1324</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1325</ID>
                          <Description>"[10] MagicSpring_A4_DE_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+118</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1326</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1327</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1328</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1329</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1330</ID>
                          <Description>"[11] MagicSpring_A4_DE_03"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+134</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1331</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1332</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1333</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1334</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1335</ID>
                          <Description>"[12] MagicSpring_A4_VO_01"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+150</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1336</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1337</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1338</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1339</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1340</ID>
                          <Description>"[13] MagicSpring_A4_VO_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+16C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1341</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1342</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1343</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1344</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1345</ID>
                          <Description>"[14] MagicSpring_A4_GR_02"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+188</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1346</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1347</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1348</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1349</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1350</ID>
                          <Description>"[15] MagicSpring_A4_VO_03"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1A4</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1351</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1352</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1353</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1354</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1355</ID>
                          <Description>"[16] MagicSpring_A4_VO_04"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1C0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1356</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1357</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1358</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1359</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1360</ID>
                          <Description>"[17] MagicSpring_A4_SN_03"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1DC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1361</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1362</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1363</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1364</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1365</ID>
                          <Description>"[18] MagicSpring_A4_SW_03"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1F8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1366</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1367</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1368</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1369</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1370</ID>
                          <Description>"[19] MagicSpring_A4_GR_03"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+214</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1371</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1372</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1373</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1374</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1375</ID>
                          <Description>"[20] MagicSpring_A4_SW_04"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+230</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1376</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1377</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1378</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1379</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1380</ID>
                          <Description>"[21] MagicSpring_A4_SW_05"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+24C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1381</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1382</ID>
                              <Description>"Value (MagicSpringElapsedData)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1383</ID>
                                  <Description>"interactedTime"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1384</ID>
                                  <Description>"prevDataFlag"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1385</ID>
                      <Description>"RecoveryMagicPointValue"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Float</VariableType>
                      <Address>+628</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1386</ID>
                      <Description>"ReachedMapIDs {Set: 3, NameProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+630</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1387</ID>
                          <Description>"[0] DNG_EVENT_SPACE_04_1F"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1388</ID>
                          <Description>"[1] DNG_TOWN_PALACE_A4_1F"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+10</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1389</ID>
                          <Description>"[2] FLD_A4"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+20</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1390</ID>
                      <Description>"PlayedEventList {Set: 3, NameProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+680</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1391</ID>
                          <Description>"[0] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1392</ID>
                          <Description>"[1] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+10</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1393</ID>
                          <Description>"[2] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+20</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1394</ID>
                      <Description>"NewEventList {Set: 3, NameProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+6D0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1395</ID>
                          <Description>"[0] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1396</ID>
                          <Description>"[1] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+10</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1397</ID>
                          <Description>"[2] M01_E01"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>4 Bytes</VariableType>
                          <Address>+20</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1402</ID>
                      <Description>"TargetSubQuestPointID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+790</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1403</ID>
                      <Description>"EventByStoryProgress"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+798</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1404</ID>
                      <Description>"MinimapMaskList {Map: 2, NameProperty → StructProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+7A0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1405</ID>
                          <Description>"[0] DNG_TOWN_PALACE_A4_1F"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1406</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1407</ID>
                              <Description>"Value (MinimapMask)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1408</ID>
                                  <Description>"MapID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1409</ID>
                                  <Description>"GridSize"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1410</ID>
                                  <Description>"min.X"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1411</ID>
                                  <Description>"min.Y"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1412</ID>
                                  <Description>"max.X"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1413</ID>
                                  <Description>"max.Y"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1414</ID>
                                  <Description>"Width"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+30</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1415</ID>
                                  <Description>"Height"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+34</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1416</ID>
                                  <Description>"LineSize"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+38</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1417</ID>
                                  <Description>"MaskMap [62 x UInt32Property (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1418</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1419</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1420</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1421</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1422</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1423</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1424</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1425</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1426</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1427</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1428</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1429</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1430</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1431</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1432</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1433</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1434</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1435</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1436</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1437</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1438</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1439</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1440</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1441</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1442</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1443</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1444</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1445</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1446</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1447</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1448</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1449</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1450</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1451</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1452</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1453</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1454</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1455</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1456</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1457</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1458</ID>
                                      <Description>"[40]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1459</ID>
                                      <Description>"[41]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1460</ID>
                                      <Description>"[42]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1461</ID>
                                      <Description>"[43]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+AC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1462</ID>
                                      <Description>"[44]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1463</ID>
                                      <Description>"[45]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1464</ID>
                                      <Description>"[46]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1465</ID>
                                      <Description>"[47]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+BC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1466</ID>
                                      <Description>"[48]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1467</ID>
                                      <Description>"[49]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1468</ID>
                                      <Description>"[50]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1469</ID>
                                      <Description>"[51]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+CC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1470</ID>
                                      <Description>"[52]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1471</ID>
                                      <Description>"[53]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+D4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1472</ID>
                                      <Description>"[54]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+D8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1473</ID>
                                      <Description>"[55]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+DC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1474</ID>
                                      <Description>"[56]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+E0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1475</ID>
                                      <Description>"[57]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+E4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1476</ID>
                                      <Description>"[58]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+E8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1477</ID>
                                      <Description>"[59]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+EC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1478</ID>
                                      <Description>"[60]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+F0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1479</ID>
                                      <Description>"[61]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+F4</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1480</ID>
                          <Description>"[1] FLD_A4"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+60</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1481</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1482</ID>
                              <Description>"Value (MinimapMask)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1483</ID>
                                  <Description>"MapID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+0</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1484</ID>
                                  <Description>"GridSize"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Float</VariableType>
                                  <Address>+8</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1485</ID>
                                  <Description>"min.X"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1486</ID>
                                  <Description>"min.Y"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1487</ID>
                                  <Description>"max.X"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1488</ID>
                                  <Description>"max.Y"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Double</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1489</ID>
                                  <Description>"Width"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+30</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1490</ID>
                                  <Description>"Height"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+34</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1491</ID>
                                  <Description>"LineSize"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+38</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1492</ID>
                                  <Description>"MaskMap [54 x UInt32Property (4B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+40</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>1493</ID>
                                      <Description>"[0]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1494</ID>
                                      <Description>"[1]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1495</ID>
                                      <Description>"[2]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1496</ID>
                                      <Description>"[3]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1497</ID>
                                      <Description>"[4]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+10</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1498</ID>
                                      <Description>"[5]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+14</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1499</ID>
                                      <Description>"[6]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+18</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1500</ID>
                                      <Description>"[7]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+1C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1501</ID>
                                      <Description>"[8]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+20</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1502</ID>
                                      <Description>"[9]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+24</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1503</ID>
                                      <Description>"[10]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+28</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1504</ID>
                                      <Description>"[11]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+2C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1505</ID>
                                      <Description>"[12]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+30</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1506</ID>
                                      <Description>"[13]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+34</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1507</ID>
                                      <Description>"[14]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+38</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1508</ID>
                                      <Description>"[15]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+3C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1509</ID>
                                      <Description>"[16]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+40</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1510</ID>
                                      <Description>"[17]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+44</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1511</ID>
                                      <Description>"[18]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+48</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1512</ID>
                                      <Description>"[19]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+4C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1513</ID>
                                      <Description>"[20]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+50</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1514</ID>
                                      <Description>"[21]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+54</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1515</ID>
                                      <Description>"[22]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+58</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1516</ID>
                                      <Description>"[23]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+5C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1517</ID>
                                      <Description>"[24]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+60</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1518</ID>
                                      <Description>"[25]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+64</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1519</ID>
                                      <Description>"[26]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+68</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1520</ID>
                                      <Description>"[27]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+6C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1521</ID>
                                      <Description>"[28]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+70</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1522</ID>
                                      <Description>"[29]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+74</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1523</ID>
                                      <Description>"[30]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+78</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1524</ID>
                                      <Description>"[31]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+7C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1525</ID>
                                      <Description>"[32]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+80</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1526</ID>
                                      <Description>"[33]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+84</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1527</ID>
                                      <Description>"[34]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+88</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1528</ID>
                                      <Description>"[35]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+8C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1529</ID>
                                      <Description>"[36]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+90</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1530</ID>
                                      <Description>"[37]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+94</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1531</ID>
                                      <Description>"[38]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+98</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1532</ID>
                                      <Description>"[39]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+9C</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1533</ID>
                                      <Description>"[40]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1534</ID>
                                      <Description>"[41]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1535</ID>
                                      <Description>"[42]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+A8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1536</ID>
                                      <Description>"[43]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+AC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1537</ID>
                                      <Description>"[44]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1538</ID>
                                      <Description>"[45]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1539</ID>
                                      <Description>"[46]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+B8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1540</ID>
                                      <Description>"[47]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+BC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1541</ID>
                                      <Description>"[48]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1542</ID>
                                      <Description>"[49]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C4</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1543</ID>
                                      <Description>"[50]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+C8</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1544</ID>
                                      <Description>"[51]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+CC</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1545</ID>
                                      <Description>"[52]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+D0</Address>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>1546</ID>
                                      <Description>"[53]"</Description>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <VariableType>4 Bytes</VariableType>
                                      <Address>+D4</Address>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>1547</ID>
                      <Description>"CatInfoList {Map: 50, NameProperty → StructProperty}"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+7F0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>1548</ID>
                          <Description>"[0] CAT001"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1549</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1550</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1551</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1552</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownList DisplayValueAsItem="1">0:ECatLivingMode::Free
1:ECatLivingMode::Town
2:ECatLivingMode::MyRoom
3:ECatLivingMode::Wait
4:ECatLivingMode::Ending
5:ECatLivingMode::None
6:ECatLivingMode::ECatLivingMode_MAX
</DropDownList>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1553</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1554</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1555</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1556</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1557</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1558</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1559</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1560</ID>
                          <Description>"[1] CAT002"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+3C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1561</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1562</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1563</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1564</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1565</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1566</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1567</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1568</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1569</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1570</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1571</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1572</ID>
                          <Description>"[2] CAT003"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+78</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1573</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1574</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1575</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1576</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1577</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1578</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1579</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1580</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1581</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1582</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1583</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1584</ID>
                          <Description>"[3] CAT004"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+B4</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1585</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1586</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1587</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1588</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1589</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1590</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1591</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1592</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1593</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1594</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1595</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1596</ID>
                          <Description>"[4] CAT005"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+F0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1597</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1598</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1599</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1600</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1601</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1602</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1603</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1604</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1605</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1606</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1607</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1608</ID>
                          <Description>"[5] CAT006"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+12C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1609</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1610</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1611</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1612</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1613</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1614</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1615</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1616</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1617</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1618</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1619</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1620</ID>
                          <Description>"[6] CAT007"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+168</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1621</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1622</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1623</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1624</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1625</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1626</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1627</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1628</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1629</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1630</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1631</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1632</ID>
                          <Description>"[7] CAT008"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1A4</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1633</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1634</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1635</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1636</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1637</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1638</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1639</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1640</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1641</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1642</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1643</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1644</ID>
                          <Description>"[8] CAT009"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+1E0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1645</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1646</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1647</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1648</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1649</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1650</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1651</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1652</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1653</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1654</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1655</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1656</ID>
                          <Description>"[9] CAT010"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+21C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1657</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1658</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1659</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1660</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1661</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1662</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1663</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1664</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1665</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1666</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1667</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1668</ID>
                          <Description>"[10] CAT011"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+258</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1669</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1670</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1671</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1672</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1673</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1674</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1675</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1676</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1677</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1678</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1679</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1680</ID>
                          <Description>"[11] CAT012"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+294</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1681</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1682</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1683</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1684</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1685</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1686</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1687</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1688</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1689</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1690</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1691</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1692</ID>
                          <Description>"[12] CAT013"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+2D0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1693</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1694</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1695</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1696</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1697</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1698</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1699</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1700</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1701</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1702</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1703</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1704</ID>
                          <Description>"[13] CAT014"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+30C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1705</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1706</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1707</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1708</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1709</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1710</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1711</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1712</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1713</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1714</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1715</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1716</ID>
                          <Description>"[14] CAT015"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+348</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1717</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1718</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1719</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1720</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1721</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1722</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1723</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1724</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1725</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1726</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1727</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1728</ID>
                          <Description>"[15] CAT016"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+384</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1729</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1730</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1731</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1732</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1733</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1734</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1735</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1736</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1737</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1738</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1739</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1740</ID>
                          <Description>"[16] CAT017"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+3C0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1741</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1742</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1743</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1744</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1745</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1746</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1747</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1748</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1749</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1750</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1751</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1752</ID>
                          <Description>"[17] CAT018"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+3FC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1753</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1754</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1755</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1756</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1757</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1758</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1759</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1760</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1761</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1762</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1763</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1764</ID>
                          <Description>"[18] CAT019"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+438</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1765</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1766</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1767</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1768</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1769</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1770</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1771</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1772</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1773</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1774</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1775</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1776</ID>
                          <Description>"[19] CAT020"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+474</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1777</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1778</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1779</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1780</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1781</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1782</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1783</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1784</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1785</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1786</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1787</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1788</ID>
                          <Description>"[20] CAT021"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+4B0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1789</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1790</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1791</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1792</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1793</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1794</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1795</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1796</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1797</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1798</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1799</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1800</ID>
                          <Description>"[21] CAT022"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+4EC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1801</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1802</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1803</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1804</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1805</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1806</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1807</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1808</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1809</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1810</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1811</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1812</ID>
                          <Description>"[22] CAT023"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+528</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1813</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1814</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1815</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1816</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1817</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1818</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1819</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1820</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1821</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1822</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1823</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1824</ID>
                          <Description>"[23] CAT024"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+564</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1825</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1826</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1827</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1828</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1829</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1830</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1831</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1832</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1833</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1834</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1835</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1836</ID>
                          <Description>"[24] CAT025"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+5A0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1837</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1838</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1839</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1840</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1841</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1842</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1843</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1844</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1845</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1846</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1847</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1848</ID>
                          <Description>"[25] CAT026"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+5DC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1849</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1850</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1851</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1852</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1853</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1854</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1855</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1856</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1857</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1858</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1859</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1860</ID>
                          <Description>"[26] CAT027"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+618</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1861</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1862</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1863</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1864</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1865</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1866</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1867</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1868</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1869</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1870</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1871</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1872</ID>
                          <Description>"[27] CAT028"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+654</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1873</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1874</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1875</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1876</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1877</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1878</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1879</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1880</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1881</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1882</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1883</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1884</ID>
                          <Description>"[28] CAT029"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+690</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1885</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1886</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1887</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1888</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1889</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1890</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1891</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1892</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1893</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1894</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1895</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1896</ID>
                          <Description>"[29] CAT030"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+6CC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1897</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1898</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1899</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1900</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1901</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1902</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1903</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1904</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1905</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1906</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1907</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1908</ID>
                          <Description>"[30] CAT031"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+708</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1909</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1910</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1911</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1912</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1913</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1914</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1915</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1916</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1917</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1918</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1919</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1920</ID>
                          <Description>"[31] CAT032"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+744</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1921</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1922</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1923</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1924</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1925</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1926</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1927</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1928</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1929</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1930</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1931</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1932</ID>
                          <Description>"[32] CAT033"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+780</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1933</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1934</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1935</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1936</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1937</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1938</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1939</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1940</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1941</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1942</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1943</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1944</ID>
                          <Description>"[33] CAT034"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+7BC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1945</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1946</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1947</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1948</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1949</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1950</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1951</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1952</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1953</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1954</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1955</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1956</ID>
                          <Description>"[34] CAT035"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+7F8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1957</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1958</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1959</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1960</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1961</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1962</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1963</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1964</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1965</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1966</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1967</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1968</ID>
                          <Description>"[35] CAT036"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+834</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1969</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1970</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1971</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1972</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1973</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1974</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1975</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1976</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1977</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1978</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1979</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1980</ID>
                          <Description>"[36] CAT037"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+870</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1981</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1982</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1983</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1984</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1985</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1986</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1987</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1988</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1989</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1990</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1991</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>1992</ID>
                          <Description>"[37] CAT038"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+8AC</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>1993</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>1994</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>1995</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1996</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1997</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1998</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>1999</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2000</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2001</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2002</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2003</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2004</ID>
                          <Description>"[38] CAT039"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+8E8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2005</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2006</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2007</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2008</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2009</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2010</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2011</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2012</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2013</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2014</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2015</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2016</ID>
                          <Description>"[39] CAT040"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+924</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2017</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2018</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2019</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2020</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2021</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2022</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2023</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2024</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2025</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2026</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2027</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2028</ID>
                          <Description>"[40] CAT041"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+960</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2029</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2030</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2031</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2032</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2033</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2034</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2035</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2036</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2037</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2038</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2039</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2040</ID>
                          <Description>"[41] CAT042"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+99C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2041</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2042</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2043</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2044</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2045</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2046</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2047</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2048</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2049</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2050</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2051</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2052</ID>
                          <Description>"[42] CAT043"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+9D8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2053</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2054</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2055</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2056</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2057</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2058</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2059</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2060</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2061</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2062</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2063</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2064</ID>
                          <Description>"[43] CAT044"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+A14</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2065</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2066</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2067</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2068</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2069</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2070</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2071</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2072</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2073</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2074</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2075</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2076</ID>
                          <Description>"[44] CAT045"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+A50</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2077</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2078</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2079</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2080</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2081</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2082</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2083</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2084</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2085</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2086</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2087</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2088</ID>
                          <Description>"[45] CAT046"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+A8C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2089</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2090</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2091</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2092</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2093</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2094</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2095</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2096</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2097</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2098</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2099</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2100</ID>
                          <Description>"[46] CAT047"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+AC8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2101</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2102</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2103</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2104</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2105</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2106</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2107</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2108</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2109</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2110</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2111</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2112</ID>
                          <Description>"[47] NPC0510"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+B04</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2113</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2114</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2115</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2116</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2117</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2118</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2119</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2120</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2121</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2122</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2123</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2124</ID>
                          <Description>"[48] NPC0730"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+B40</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2125</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2126</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2127</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2128</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2129</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2130</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2131</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2132</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2133</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2134</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2135</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2136</ID>
                          <Description>"[49] NPC0720"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+B7C</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2137</ID>
                              <Description>"Key"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2138</ID>
                              <Description>"Value (CatInfo)"</Description>
                              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+8</Address>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2139</ID>
                                  <Description>"NPCID"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+4</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2140</ID>
                                  <Description>"LivingMode"</Description>
                                  <DropDownListLink>LivingMode</DropDownListLink>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2141</ID>
                                  <Description>"Friendship"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+10</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2142</ID>
                                  <Description>"Fullness"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+14</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2143</ID>
                                  <Description>"JoinTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+18</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2144</ID>
                                  <Description>"LastFullnessUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+1C</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2145</ID>
                                  <Description>"LastFriendshipUpdateTime"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+20</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2146</ID>
                                  <Description>"InviteFeedCount"</Description>
                                  <ShowAsSigned>1</ShowAsSigned>
                                  <VariableType>4 Bytes</VariableType>
                                  <Address>+24</Address>
                                </CheatEntry>
                                <CheatEntry>
                                  <ID>2147</ID>
                                  <Description>"bHasEverCaught"</Description>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <VariableType>Byte</VariableType>
                                  <Address>+28</Address>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2148</ID>
                      <Description>"MyRoomCat"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+840</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2149</ID>
                      <Description>"ArenaNowDifficulty"</Description>
                      <DropDownList DisplayValueAsItem="1">0:EArenaDifficulty::Rookie
1:EArenaDifficulty::Expert
2:EArenaDifficulty::Veteran
3:EArenaDifficulty::Legend
4:EArenaDifficulty::Num
5:EArenaDifficulty::EArenaDifficulty_MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+848</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2150</ID>
                      <Description>"ArenaNowFloor"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+84C</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2155</ID>
                      <Description>"IsNewMainMenuCategory [7 x BoolProperty (1B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+890</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2156</ID>
                          <Description>"[0]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2157</ID>
                          <Description>"[1]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+1</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2158</ID>
                          <Description>"[2]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+2</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2159</ID>
                          <Description>"[3]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+3</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2160</ID>
                          <Description>"[4]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+4</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2161</ID>
                          <Description>"[5]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+5</Address>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2162</ID>
                          <Description>"[6]"</Description>
                          <ShowAsSigned>0</ShowAsSigned>
                          <VariableType>Byte</VariableType>
                          <Address>+6</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2164</ID>
                      <Description>"MiniGames [6 x FairyMiniGameData (8B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+8F0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2165</ID>
                          <Description>"[0] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2166</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2167</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2168</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2169</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2170</ID>
                          <Description>"[1] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+8</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2171</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2172</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2173</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2174</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2175</ID>
                          <Description>"[2] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+10</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2176</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2177</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2178</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2179</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2180</ID>
                          <Description>"[3] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+18</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2181</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2182</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2183</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2184</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2185</ID>
                          <Description>"[4] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+20</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2186</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2187</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2188</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2189</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2190</ID>
                          <Description>"[5] (FairyMiniGameData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+28</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2191</ID>
                              <Description>"BestScore"</Description>
                              <ShowAsSigned>1</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2192</ID>
                              <Description>"IsPlayStartCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+4</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2193</ID>
                              <Description>"IsPlayEndCutScene"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+5</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2194</ID>
                              <Description>"bCleared"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Byte</VariableType>
                              <Address>+6</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2196</ID>
                      <Description>"IsNewSoundGallery"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+910</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2200</ID>
                      <Description>"bDispSpecialSecretClearOnce"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+988</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2201</ID>
                      <Description>"MarkedNpcEventIDs"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+990</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2202</ID>
                      <Description>"KeyConfigType"</Description>
                      <DropDownList DisplayValueAsItem="1">0:EKeyConfigPreset::TypeA
1:EKeyConfigPreset::TypeB
2:EKeyConfigPreset::TypeC
3:EKeyConfigPreset::Custom
4:EKeyConfigPreset::EKeyConfigPreset_MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+9E0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2203</ID>
                      <Description>"IsOrderedAnySubQuest"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+9E1</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2204</ID>
                      <Description>"bIsFairyMouseMove"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+9E2</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2205</ID>
                      <Description>"SavePointID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+9E4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2206</ID>
                      <Description>"OverrideSavePointID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+9EC</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2207</ID>
                      <Description>"SaveMapID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+9F4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2208</ID>
                      <Description>"OverrideSaveMapID"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+9FC</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2209</ID>
                      <Description>"LoadSlotIndex"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+A3C</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2210</ID>
                      <Description>"Difficulty"</Description>
                      <DropDownList DisplayValueAsItem="1">0:EDifficulty::VERY_EASY
1:EDifficulty::EASY
2:EDifficulty::NORMAL
3:EDifficulty::HARD
4:EDifficulty::Max
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+A3D</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2211</ID>
                      <Description>"SaveTime (DateTime)"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+A40</Address>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2212</ID>
                          <Description>"Ticks"</Description>
                          <ShowAsSigned>1</ShowAsSigned>
                          <VariableType>8 Bytes</VariableType>
                          <Address>+0</Address>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2213</ID>
                      <Description>"ElapsedActiveTime"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Double</VariableType>
                      <Address>+A48</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2215</ID>
                      <Description>"FootprintLocations [4 x FootPrintData (32B)]"</Description>
                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+A60</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2216</ID>
                          <Description>"[0] (FootPrintData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+0</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2217</ID>
                              <Description>"Location.X"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2218</ID>
                              <Description>"Location.Y"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2219</ID>
                              <Description>"Location.Z"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+10</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2220</ID>
                              <Description>"MapID"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+18</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2221</ID>
                          <Description>"[1] (FootPrintData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+20</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2222</ID>
                              <Description>"Location.X"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2223</ID>
                              <Description>"Location.Y"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2224</ID>
                              <Description>"Location.Z"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+10</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2225</ID>
                              <Description>"MapID"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+18</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2226</ID>
                          <Description>"[2] (FootPrintData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+40</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2227</ID>
                              <Description>"Location.X"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2228</ID>
                              <Description>"Location.Y"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2229</ID>
                              <Description>"Location.Z"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+10</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2230</ID>
                              <Description>"MapID"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+18</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                        <CheatEntry>
                          <ID>2231</ID>
                          <Description>"[3] (FootPrintData)"</Description>
                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+60</Address>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2232</ID>
                              <Description>"Location.X"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+0</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2233</ID>
                              <Description>"Location.Y"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+8</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2234</ID>
                              <Description>"Location.Z"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>Double</VariableType>
                              <Address>+10</Address>
                            </CheatEntry>
                            <CheatEntry>
                              <ID>2235</ID>
                              <Description>"MapID"</Description>
                              <ShowAsSigned>0</ShowAsSigned>
                              <VariableType>4 Bytes</VariableType>
                              <Address>+18</Address>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2238</ID>
                      <Description>"MemoShelfCheckNum"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+A90</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2496</ID>
                      <Description>"FlagDispChainCountOnlyLvUP"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AA8</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2497</ID>
                      <Description>"DeadNum"</Description>
                      <ShowAsSigned>1</ShowAsSigned>
                      <VariableType>4 Bytes</VariableType>
                      <Address>+AAC</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2498</ID>
                      <Description>"bChargeAttackDirection"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB0</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2499</ID>
                      <Description>"bSkillDirection"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB1</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2500</ID>
                      <Description>"DestinationType"</Description>
                      <DropDownList DisplayValueAsItem="1">0:EDestinationType::Standard
1:EDestinationType::Always
2:EDestinationType::Invisible
3:EDestinationType::EDestinationType_MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB2</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2501</ID>
                      <Description>"OperationGuideType"</Description>
                      <DropDownListLink>DestinationType</DropDownListLink>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB3</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2502</ID>
                      <Description>"AbilitySwitchType"</Description>
                      <DropDownList DisplayValueAsItem="1">0:EAbilitySwitchType::SCMenu
1:EAbilitySwitchType::Direct
2:EAbilitySwitchType::MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB4</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2503</ID>
                      <Description>"SupportTalkType"</Description>
                      <DropDownList DisplayValueAsItem="1">0:ESupportTalkType::Many
1:ESupportTalkType::Little
2:ESupportTalkType::MAX
</DropDownList>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB5</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2504</ID>
                      <Description>"bVisibleEventCharacter"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB6</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2505</ID>
                      <Description>"bAutoCaption"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB7</Address>
                    </CheatEntry>
                    <CheatEntry>
                      <ID>2506</ID>
                      <Description>"bFrameRateGraphicPrioritized"</Description>
                      <ShowAsSigned>0</ShowAsSigned>
                      <VariableType>Byte</VariableType>
                      <Address>+AB8</Address>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
            <CheatEntry>
              <ID>2800</ID>
              <Description>"GameState"</Description>
              <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
              <ShowAsHex>1</ShowAsHex>
              <ShowAsSigned>0</ShowAsSigned>
              <GroupHeader>1</GroupHeader>
              <Address>+1B0</Address>
              <Offsets>
                <Offset>0</Offset>
              </Offsets>
              <CheatEntries>
                <CheatEntry>
                  <ID>2801</ID>
                  <Description>"PlayerArray"</Description>
                  <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                  <ShowAsHex>1</ShowAsHex>
                  <ShowAsSigned>0</ShowAsSigned>
                  <GroupHeader>1</GroupHeader>
                  <Address>+2E0</Address>
                  <Offsets>
                    <Offset>0</Offset>
                  </Offsets>
                  <CheatEntries>
                    <CheatEntry>
                      <ID>2896</ID>
                      <Description>"[0]"</Description>
                      <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                      <ShowAsSigned>0</ShowAsSigned>
                      <GroupHeader>1</GroupHeader>
                      <Address>+0</Address>
                      <Offsets>
                        <Offset>0</Offset>
                      </Offsets>
                      <CheatEntries>
                        <CheatEntry>
                          <ID>2802</ID>
                          <Description>"PawnPrivate"</Description>
                          <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                          <ShowAsHex>1</ShowAsHex>
                          <ShowAsSigned>0</ShowAsSigned>
                          <GroupHeader>1</GroupHeader>
                          <Address>+340</Address>
                          <Offsets>
                            <Offset>0</Offset>
                          </Offsets>
                          <CheatEntries>
                            <CheatEntry>
                              <ID>2803</ID>
                              <Description>"AbilitySystemComponent"</Description>
                              <Options moHideChildren="1" moActivateChildrenAsWell="1" moDeactivateChildrenAsWell="1"/>
                              <ShowAsHex>1</ShowAsHex>
                              <ShowAsSigned>0</ShowAsSigned>
                              <GroupHeader>1</GroupHeader>
                              <Address>+7E0</Address>
                              <Offsets>
                                <Offset>0</Offset>
                              </Offsets>
                              <CheatEntries>
                                <CheatEntry>
                                  <ID>2804</ID>
                                  <Description>"SpawnedAttributes [3 x ObjectProperty (8B)]"</Description>
                                  <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                  <ShowAsSigned>0</ShowAsSigned>
                                  <GroupHeader>1</GroupHeader>
                                  <Address>+10A8</Address>
                                  <Offsets>
                                    <Offset>0</Offset>
                                  </Offsets>
                                  <CheatEntries>
                                    <CheatEntry>
                                      <ID>2944</ID>
                                      <Description>"[0] ShieldAttributeSet_2147477186 (ShieldAttributeSet)"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+0</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2945</ID>
                                          <Description>"GuardMaxEndurance (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+30</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2946</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2947</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2948</ID>
                                          <Description>"GuardNeedEndurance (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+40</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2949</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2950</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2951</ID>
                                          <Description>"GuardHealTimeNormal (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+50</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2952</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2953</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2954</ID>
                                          <Description>"GuardHealTimeBreak (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+60</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2955</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2956</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2957</ID>
                                          <Description>"GuardDefensibleDeg (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+70</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2958</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2959</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2960</ID>
                                          <Description>"GuardKnockbackRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+80</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2961</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2962</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2963</ID>
                                          <Description>"GuardCoefficientOfRestitution (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+90</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2964</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2965</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2966</ID>
                                          <Description>"GuardJustTime (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+A0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2967</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2968</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2969</ID>
                                          <Description>"GuardStartTime (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+B0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2970</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2971</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2972</ID>
                                          <Description>"GuardMoveSpeedRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2973</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2974</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2975</ID>
                                          <Description>"GuardFixedOrientation (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+D0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2976</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2977</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>142</ID>
                                          <Description>"GuardEnableGuardBreakSlomo (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+E0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>143</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>144</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2978</ID>
                                          <Description>"GuardJustRandomRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+F0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2979</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2980</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2905</ID>
                                      <Description>"[1] ExtraAttributeSet_2147477185 (ExtraAttributeSet)"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+8</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2906</ID>
                                          <Description>"ExpandFairyItemGetRange (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+30</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2907</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2908</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2909</ID>
                                          <Description>"FairyAttackTimeRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+40</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2910</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2911</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2912</ID>
                                          <Description>"SupportActionCooldownRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+50</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2913</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2914</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2915</ID>
                                          <Description>"SupportActionConsumeGaugeRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+60</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2916</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2917</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2918</ID>
                                          <Description>"RareEnemyAppearRateMultiplier (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+70</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2919</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2920</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2921</ID>
                                          <Description>"SpecialEnemyAppearRateMultiplier (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+80</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2922</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2923</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2924</ID>
                                          <Description>"EnemyDropItemDoubleRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+90</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2925</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2926</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2927</ID>
                                          <Description>"EnemyDropMoneyDoubleRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+A0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2928</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2929</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2930</ID>
                                          <Description>"BuffItemTimeMultiplier (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+B0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2931</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2932</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2933</ID>
                                          <Description>"EnemyDropMoneyAndPieceRateMultiplier (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2934</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2935</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                    <CheatEntry>
                                      <ID>2805</ID>
                                      <Description>"[2] CharacterAttributeSet_2147477188 (CharacterAttributeSet)"</Description>
                                      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                      <ShowAsHex>1</ShowAsHex>
                                      <ShowAsSigned>0</ShowAsSigned>
                                      <GroupHeader>1</GroupHeader>
                                      <Address>+10</Address>
                                      <Offsets>
                                        <Offset>0</Offset>
                                      </Offsets>
                                      <CheatEntries>
                                        <CheatEntry>
                                          <ID>2806</ID>
                                          <Description>"HealthPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+30</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2807</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2808</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2809</ID>
                                          <Description>"MaxHealthPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+40</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2810</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2811</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2812</ID>
                                          <Description>"HealthPointBuff (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+50</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2813</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2814</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2815</ID>
                                          <Description>"MinHealthPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+60</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2816</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2817</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2818</ID>
                                          <Description>"ResuscitationPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+70</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2819</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2820</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2821</ID>
                                          <Description>"CalculatedDamage (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+80</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2822</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2823</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2824</ID>
                                          <Description>"BasicDefense (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+90</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2825</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2826</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2827</ID>
                                          <Description>"AdditiveDefense (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+A0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2828</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2829</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2830</ID>
                                          <Description>"MultiplicativeDefense (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+B0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2831</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2832</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2833</ID>
                                          <Description>"MultiplicativeDefenseBOS410 (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+C0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2834</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2835</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2836</ID>
                                          <Description>"BasicAttack (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+D0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2837</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2838</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2839</ID>
                                          <Description>"BasicMultiplicativeAttack (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+E0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2840</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2841</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2842</ID>
                                          <Description>"AdditiveAttack (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+F0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2843</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2844</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2845</ID>
                                          <Description>"MultiplicativeAttack (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+100</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2846</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2847</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2848</ID>
                                          <Description>"KnockbackRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+110</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2849</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2850</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2851</ID>
                                          <Description>"MaxDivingOxygenPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+120</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2852</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2853</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2854</ID>
                                          <Description>"DivingOxygenPoint (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+130</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2855</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2856</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2857</ID>
                                          <Description>"DivingOxygenConsumption (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+140</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2858</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2859</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2860</ID>
                                          <Description>"DivingOxygenHealNormal (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+150</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2861</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2862</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2863</ID>
                                          <Description>"DivingOxygenHealDeficiency (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+160</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2864</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2865</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2866</ID>
                                          <Description>"DivingOxygenRecoverDeficiency (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+170</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2867</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2868</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2869</ID>
                                          <Description>"BasicMoveSpeed (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+180</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2870</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2871</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2872</ID>
                                          <Description>"AdditiveMoveSpeed (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+190</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2873</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2874</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2875</ID>
                                          <Description>"MultiplicativeMoveSpeed (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1A0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2876</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2877</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2878</ID>
                                          <Description>"InputMovementSpeedRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1B0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2879</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2880</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2881</ID>
                                          <Description>"ActionMovementSpeedRate (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1C0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2882</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2883</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2884</ID>
                                          <Description>"BasicJumpZVelocity (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1D0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2885</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2886</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2887</ID>
                                          <Description>"AdditiveJumpZVelocity (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1E0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2888</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2889</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2890</ID>
                                          <Description>"MultiplicativeJumpZVelocity (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+1F0</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2891</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2892</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                        <CheatEntry>
                                          <ID>2893</ID>
                                          <Description>"GuardEndurance (GameplayAttributeData)"</Description>
                                          <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
                                          <ShowAsSigned>0</ShowAsSigned>
                                          <GroupHeader>1</GroupHeader>
                                          <Address>+200</Address>
                                          <CheatEntries>
                                            <CheatEntry>
                                              <ID>2894</ID>
                                              <Description>"BaseValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+8</Address>
                                            </CheatEntry>
                                            <CheatEntry>
                                              <ID>2895</ID>
                                              <Description>"CurrentValue"</Description>
                                              <ShowAsSigned>0</ShowAsSigned>
                                              <VariableType>Float</VariableType>
                                              <Address>+C</Address>
                                            </CheatEntry>
                                          </CheatEntries>
                                        </CheatEntry>
                                      </CheatEntries>
                                    </CheatEntry>
                                  </CheatEntries>
                                </CheatEntry>
                              </CheatEntries>
                            </CheatEntry>
                          </CheatEntries>
                        </CheatEntry>
                      </CheatEntries>
                    </CheatEntry>
                  </CheatEntries>
                </CheatEntry>
              </CheatEntries>
            </CheatEntry>
          </CheatEntries>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>3102</ID>
      <Description>"Require UE5CEDumper DLL proxy installed"</Description>
      <Options moHideChildren="1" moDeactivateChildrenAsWell="1"/>
      <GroupHeader>1</GroupHeader>
      <CheatEntries>
        <CheatEntry>
          <ID>3085</ID>
          <Description>"Teleport: Save marker 1 [Num0]"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Save marker 1 -- Generated by UE5CEDumper (self-contained)
-- Momentary action: fires once, then auto-unticks. Talks to
-- UE5Dumper.dll's mailbox directly (CMD_TELEPORT=8). Requires the
-- DLL injected (version.dll proxy or CE inject).
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

if readInteger(mb + 0x00) == 0 then
  writeQword(mb + 0x18, 0)           -- slot / show flag
  writeQword(mb + 0x10, 1)             -- op
  writeInteger(mb + 0x04, 0)             -- clear status
  writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
  local elapsed = 0
  while readInteger(mb + 0x04) ~= 1 do
    sleep(1); elapsed = elapsed + 1
    if elapsed &gt;= 10000 then break end
  end
  local code = readInteger(mb + 0x08)
  print('[Teleport] Save marker 1 -&gt; code=' .. code)
  if code == -7 then
    showMessage('[Teleport] marker saved on another map -- recall refused. Use the UI Force button.')
  end
end

-- Deferred self-untick (avoids reentrancy on the activating thread).
local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>96</Key>
              </Keys>
              <ID>0</ID>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>3088</ID>
          <Description>"Teleport: Recall marker 1 [Num .]"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Recall marker 1 -- Generated by UE5CEDumper (self-contained)
-- Momentary action: fires once, then auto-unticks. Talks to
-- UE5Dumper.dll's mailbox directly (CMD_TELEPORT=8). Requires the
-- DLL injected (version.dll proxy or CE inject).
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

if readInteger(mb + 0x00) == 0 then
  writeQword(mb + 0x18, 0)           -- slot / show flag
  writeQword(mb + 0x10, 2)             -- op
  writeInteger(mb + 0x04, 0)             -- clear status
  writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
  local elapsed = 0
  while readInteger(mb + 0x04) ~= 1 do
    sleep(1); elapsed = elapsed + 1
    if elapsed &gt;= 10000 then break end
  end
  local code = readInteger(mb + 0x08)
  print('[Teleport] Recall marker 1 -&gt; code=' .. code)
  if code == -7 then
    showMessage('[Teleport] marker saved on another map -- recall refused. Use the UI Force button.')
  end
end

-- Deferred self-untick (avoids reentrancy on the activating thread).
local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>110</Key>
              </Keys>
              <ID>0</ID>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>3091</ID>
          <Description>"Teleport: Recall last [Num -]"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Recall last -- Generated by UE5CEDumper (self-contained)
-- Momentary action: fires once, then auto-unticks. Talks to
-- UE5Dumper.dll's mailbox directly (CMD_TELEPORT=8). Requires the
-- DLL injected (version.dll proxy or CE inject).
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

if readInteger(mb + 0x00) == 0 then
  writeQword(mb + 0x18, 0)           -- slot / show flag
  writeQword(mb + 0x10, 7)             -- op
  writeInteger(mb + 0x04, 0)             -- clear status
  writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
  local elapsed = 0
  while readInteger(mb + 0x04) ~= 1 do
    sleep(1); elapsed = elapsed + 1
    if elapsed &gt;= 10000 then break end
  end
  local code = readInteger(mb + 0x08)
  print('[Teleport] Recall last -&gt; code=' .. code)
  if code == -7 then
    showMessage('[Teleport] marker saved on another map -- recall refused. Use the UI Force button.')
  end
end

-- Deferred self-untick (avoids reentrancy on the activating thread).
local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>109</Key>
              </Keys>
              <ID>0</ID>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>3094</ID>
          <Description>"Teleport: To cursor [F1]"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Teleport to cursor -- Generated by UE5CEDumper (self-contained)
-- Momentary action: fires once, then auto-unticks. Talks to
-- UE5Dumper.dll's mailbox directly (CMD_TELEPORT=8). Requires the
-- DLL injected (version.dll proxy or CE inject).
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

if readInteger(mb + 0x00) == 0 then
  writeDouble(mb + 0x328, 100.0)   -- zOffset
  writeBytes(mb + 0x330, 0)            -- trace channel
  writeBytes(mb + 0x331, 1)            -- fall back to screen center
  writeQword(mb + 0x18, 0)           -- slot / show flag
  writeQword(mb + 0x10, 4)             -- op
  writeInteger(mb + 0x04, 0)             -- clear status
  writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
  local elapsed = 0
  while readInteger(mb + 0x04) ~= 1 do
    sleep(1); elapsed = elapsed + 1
    if elapsed &gt;= 10000 then break end
  end
  local code = readInteger(mb + 0x08)
  print('[Teleport] Teleport to cursor -&gt; code=' .. code)
  if code == -7 then
    showMessage('[Teleport] marker saved on another map -- recall refused. Use the UI Force button.')
  end
end

-- Deferred self-untick (avoids reentrancy on the activating thread).
local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>112</Key>
              </Keys>
              <ID>0</ID>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>3097</ID>
          <Description>"Teleport: TP facing direction (short range) [Num 5]"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Teleport facing direction -- Generated by UE5CEDumper (self-contained)
-- Momentary action: fires once, then auto-unticks. Talks to
-- UE5Dumper.dll's mailbox directly (CMD_TELEPORT=8). Requires the
-- DLL injected (version.dll proxy or CE inject).
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

if readInteger(mb + 0x00) == 0 then
  writeDouble(mb + 0x328, 800.0)  -- distance (uu; -ve = backward)
  writeBytes(mb + 0x330, 0)            -- mode (0 = horizontal, 1 = 3D)
  writeQword(mb + 0x18, 0)           -- slot / show flag
  writeQword(mb + 0x10, 12)             -- op
  writeInteger(mb + 0x04, 0)             -- clear status
  writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
  local elapsed = 0
  while readInteger(mb + 0x04) ~= 1 do
    sleep(1); elapsed = elapsed + 1
    if elapsed &gt;= 10000 then break end
  end
  local code = readInteger(mb + 0x08)
  print('[Teleport] Teleport facing direction -&gt; code=' .. code)
  if code == -7 then
    showMessage('[Teleport] marker saved on another map -- recall refused. Use the UI Force button.')
  end
end

-- Deferred self-untick (avoids reentrancy on the activating thread).
local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
          <Hotkeys>
            <Hotkey>
              <Action>Toggle Activation</Action>
              <Keys>
                <Key>101</Key>
              </Keys>
              <ID>0</ID>
            </Hotkey>
          </Hotkeys>
        </CheatEntry>
        <CheatEntry>
          <ID>3101</ID>
          <Description>"Teleport: Clear all markers"</Description>
          <VariableType>Auto Assembler Script</VariableType>
          <AssemblerScript>[ENABLE]
{$lua}
if syntaxcheck then return end
-- ================================================================
-- Teleport: Clear all markers -- Generated by UE5CEDumper
-- Momentary action: clears slots 1-3, then auto-unticks.
-- ================================================================

local mb = getAddressSafe('g_invokeMailbox')
if not mb or mb == 0 then mb = getAddressSafe('UE5Dumper.g_invokeMailbox') end
if not mb or mb == 0 then
  showMessage('[Teleport] g_invokeMailbox not found -- is UE5Dumper.dll injected?')
  if memrec then memrec.Active = false end
  return
end

for slot = 0, 2 do
  if readInteger(mb + 0x00) == 0 then
    writeQword(mb + 0x18, slot)            -- slot
    writeQword(mb + 0x10, 6)               -- op = CLEAR_MARKER
    writeInteger(mb + 0x04, 0)             -- clear status
    writeInteger(mb + 0x00, 8)  -- CMD_TELEPORT (write LAST)
    local elapsed = 0
    while readInteger(mb + 0x04) ~= 1 do
      sleep(1); elapsed = elapsed + 1
      if elapsed &gt;= 10000 then break end
    end
  end
end
print('[Teleport] all markers cleared')

local t = createTimer(nil)
t.Interval = 50
t.OnTimer = function(timer)
  timer.destroy()
  if memrec then memrec.Active = false end
end
{$asm}
[DISABLE]
{$lua}
-- momentary action -- nothing to undo
{$asm}

</AssemblerScript>
        </CheatEntry>
      </CheatEntries>
    </CheatEntry>
    <CheatEntry>
      <ID>3104</ID>
      <Description>"The Adventures of Elliot: The Millennium Tales  /  https://opencheattables.com  /  CE 7.6+"</Description>
      <Color>00AA00</Color>
      <GroupHeader>1</GroupHeader>
    </CheatEntry>
  </CheatEntries>
  <UserdefinedSymbols/>
</CheatTable>
