protected virtual void _handleMaxList(string value)
        {
            var z1 = ListHelper.ParseList(value);
            var z2 = ListHelper.ParseValuesAsInt(z1);
            var z3 = ListHelper.ExplodeKeys(z2);

            ListHelper.AddListToDictionary(z3, ServerInformation.Limit.TypeAModeListEntries);
        }
        protected virtual void _handleIdChan(string value)
        {
            var z1 = ListHelper.ParseList(value);
            var z2 = ListHelper.ParseValuesAsInt(z1);
            var z3 = ListHelper.ExplodeKeys(z2);

            ListHelper.AddListToDictionary(z3, ServerInformation.Limit.SafeChannelIdPrefixLength);
        }