It is 81,000 halving and 30,000,000 total WikiCoins the specs just like it reads in the op. Next time make your statement a bit more gentle and it will be taken with appreciation.
from wallet source files:
static const int64 nGenesisBlockRewardCoin = 1 * COIN;
static const int64 nBlockRewardStartCoin = 50 * COIN;
static const int64 nBlockRewardMinimumCoin = 1 * COIN;
static const int64 nTargetTimespan = 3.5 * 24 * 60 * 60; // 3.5 days
static const int64 nTargetSpacing = 2.5 * 60; // 2.5 minutes
static const int64 nInterval = nTargetTimespan / nTargetSpacing;
int64 static GetBlockValue(int nHeight, int64 nFees, unsigned int nBits)
{
if (nHeight == 0)
{
return nGenesisBlockRewardCoin;
}
int64 nSubsidy = nBlockRewardStartCoin;
nSubsidy >>= (nHeight / 810000);
// Minimum subsidy
if (nSubsidy < nBlockRewardMinimumCoin)
{
nSubsidy = nBlockRewardMinimumCoin;
}
return nSubsidy + nFees;
}
Looks like reward halvnig are per 810,000 blocks.
And min reward 1 WikiCoin!
Theoretically, there isn't max coin limit.