Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
contract NFTVotesToken is ERC721, ERC721Votes {
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
uint256 tokenCount;
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
mapping(uint256 => uint256) tokenIdToVotingPower;
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
function initialize() public payable initializer {
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
__ERC721_init("NFT Votes Token", "NVT");
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
}
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
function _afterTokenTransfer(
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
address from,
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
address to,
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
uint256 tokenId
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
) internal override(ERC721, ERC721Votes) {
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_transferVotingUnits(from, to, LibVotesPower.votesStorage().tokenIdToVotingPower[tokenId]);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
super._afterTokenTransfer(from, to, tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
}
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
function mint(address to, uint256 tokenPower) public {
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
require(to != address(0), "ERC721: mint to the zero address");
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
require(tokenPower != 0, "ERC721: power must be > 0");
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
tokenCount++;
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
uint256 tokenId = tokenCount;
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_beforeTokenTransfer(address(0), to, tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
tokenIdToVotingPower[tokenId] = tokenPower;
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_balances[to] += tokenPower;
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_owners[tokenId] = to;
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_mint(to, tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
}
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
function _mint(address to, uint256 tokenId) internal override(ERC721) {
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
emit Transfer(address(0), to, tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_afterTokenTransfer(address(0), to, tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
}
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
function transfer(
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
address from,
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
address to,
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
uint256 tokenId
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
) public {
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_transfer(from, to, tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
}
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
function _transfer(
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
address from,
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
address to,
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
uint256 tokenId
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
) internal override(ERC721) {
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
require(to != address(0), "ERC721: transfer to the zero address");
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_beforeTokenTransfer(from, to, tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
// Clear approvals from the previous owner
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_approve(address(0), tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
uint256 tokenPower = tokenIdToVotingPower[tokenId];
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_balances[from] -= tokenPower;
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_balances[to] += tokenPower;
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_owners[tokenId] = to;
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
emit Transfer(from, to, tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_afterTokenTransfer(from, to, tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
}
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
function burn(uint256 tokenId) public {
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_burn(tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
}
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
function _burn(uint256 tokenId) internal override(ERC721) {
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
address owner = ERC721.ownerOf(tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_beforeTokenTransfer(owner, address(0), tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
// Clear approvals
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_approve(address(0), tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
ERC721Storage.layout()._balances[owner] -= tokenIdToVotingPower[tokenId];
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
delete tokenIdToVotingPower[tokenId];
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
delete _owners[tokenId];
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
emit Transfer(owner, address(0), tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
_afterTokenTransfer(owner, address(0), tokenId);
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
}
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183
}
Warning: Undefined variable $perm in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 183

Warning: Undefined variable $control_servidores in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 198

Fatal error: Uncaught TypeError: implode(): Argument #1 ($array) must be of type array, string given in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php:198 Stack trace: #0 /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php(198): implode() #1 /var/www/vhosts/tiny-paste.com/httpdocs/inc/class/template.php(52): include('...') #2 /var/www/vhosts/tiny-paste.com/httpdocs/footer.php(54): mvcTemplate->output() #3 /var/www/vhosts/tiny-paste.com/httpdocs/fullscreen.php(36): include('...') #4 {main} thrown in /var/www/vhosts/tiny-paste.com/httpdocs/template/ver_full.php on line 198