function TransferCommunityAndMarketing(uint256 amount) private {
        uint256 half = amount.div(2);
        uint256 otherHalf = amount.sub(half);

        communityAddress.transfer(half);
        marketingAddress.transfer(otherHalf);
    }