//他のクラスでこのデータを参照しているか?
        bool UpdateIndependencePanel()
        {
            uint assignLevelUpP = FindFE8SpellPatchPointer();

            if (assignLevelUpP == U.NOT_FOUND)
            {
                return(false);
            }
            uint assignLevelUpAddr = Program.ROM.p32(assignLevelUpP);

            if (!U.isSafetyOffset(assignLevelUpAddr))
            {
                return(false);
            }

            return(SkillAssignmentClassSkillSystemForm.IsShowIndependencePanel(this.AddressList, assignLevelUpAddr));
        }
 //他のユニットでこのデータを参照しているか?
 bool IsShowIndependencePanel()
 {
     return(SkillAssignmentClassSkillSystemForm.IsShowIndependencePanel(this.AddressList, this.AssignLevelUpBaseAddress));
 }