// Token: 0x060000A4 RID: 164 RVA: 0x00004514 File Offset: 0x00002714
        public static string SubIDMachine(string str)
        {
            int startIndex = str.IndexOf("{IDMachine}");

            str = str.Remove(startIndex, 11);
            str = str.Insert(startIndex, RegSystem.GetIDMachine());
            return(str);
        }
        // Token: 0x060000A5 RID: 165 RVA: 0x00004548 File Offset: 0x00002748
        public static bool IfMachineIDOk(string id)
        {
            string text = RegSystem.GetIDMachine();

            text = text.Replace("-", "");
            text = text.Trim();
            char[] array = text.ToCharArray();
            Array.Reverse(array);
            text = new string(array);
            return(id.Equals(text));
        }