public static ushort GetMapId(this UniversalGuid128 guid) => (ushort)((guid.High >> 29) & 0x1FFF);
 public static uint GetServerId(this UniversalGuid128 guid) => (uint)((guid.Low >> 40) & 0xFFFFFF);
 public static byte GetSubType(this UniversalGuid128 guid) => (byte)(guid.High & 0x3F);
 public static ushort GetRealmId(this UniversalGuid128 guid) => (ushort)((guid.High >> 42) & 0x1FFF);
 public static uint GetEntry(this UniversalGuid128 guid)
 {
     return((uint)((guid.High >> 6) & 0x7FFFFF));
 }