public static Chat_Model_Base Parse(string str)
    {
        Chat_Model_RallyInvite chat_Model_RallyInvite = new Chat_Model_RallyInvite();

        chat_Model_RallyInvite.m_packetType = CHAT_PACKET_TYPE.RALLY_INVITE;
        chat_Model_RallyInvite.payload      = str.Substring(Chat_Model_Base.PAYLOAD_ORIGIN_INDEX);
        chat_Model_RallyInvite.flag         = str.Substring(40, 1);
        Chat_Model_RallyInvite chat_Model_RallyInvite2 = chat_Model_RallyInvite;

        chat_Model_RallyInvite2.SetErrorType("0");
        return(chat_Model_RallyInvite2);
    }