ERC-20
DeFi
Overview
Max Total Supply
40,626,702.385780708293361636 POLTER
Holders
1,989 ( 0.251%)
Market
Price
$0.0041 @ 0.007840 FTM
Onchain Market Cap
$168,520.78
Circulating Supply Market Cap
$168,521.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
PolterToken
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2024-01-30 */ // Sources flattened with hardhat v2.19.2 https://hardhat.org // SPDX-License-Identifier: MIT AND agpl-3.0 // File contracts/dependencies/openzeppelin/contracts/IERC20.sol // Original license: SPDX_License_Identifier: agpl-3.0 pragma solidity 0.7.6; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File contracts/dependencies/openzeppelin/contracts/SafeMath.sol // Original license: SPDX_License_Identifier: agpl-3.0 pragma solidity 0.7.6; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, 'SafeMath: addition overflow'); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, 'SafeMath: subtraction overflow'); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, 'SafeMath: multiplication overflow'); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, 'SafeMath: division by zero'); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, 'SafeMath: modulo by zero'); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File contracts/staking/PolterToken.sol pragma solidity 0.7.6; // Original license: SPDX_License_Identifier: MIT contract PolterToken is IERC20 { using SafeMath for uint256; string public constant symbol = "POLTER"; string public constant name = "Polter.Finance Protocol Token"; uint8 public constant decimals = 18; uint256 public override totalSupply; uint256 public immutable maxTotalSupply; address public minter; mapping(address => uint256) public override balanceOf; mapping(address => mapping(address => uint256)) public override allowance; constructor(uint256 _maxTotalSupply) { maxTotalSupply = _maxTotalSupply; emit Transfer(address(0), msg.sender, 0); } function setMinter(address _minter) external returns (bool) { require(minter == address(0)); minter = _minter; return true; } function approve(address _spender, uint256 _value) external override returns (bool) { allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** shared logic for transfer and transferFrom */ function _transfer(address _from, address _to, uint256 _value) internal { require(balanceOf[_from] >= _value, "Insufficient balance"); balanceOf[_from] = balanceOf[_from].sub(_value); balanceOf[_to] = balanceOf[_to].add(_value); emit Transfer(_from, _to, _value); } /** @notice Transfer tokens to a specified address @param _to The address to transfer to @param _value The amount to be transferred @return Success boolean */ function transfer(address _to, uint256 _value) public override returns (bool) { _transfer(msg.sender, _to, _value); return true; } /** @notice Transfer tokens from one address to another @param _from The address which you want to send tokens from @param _to The address which you want to transfer to @param _value The amount of tokens to be transferred @return Success boolean */ function transferFrom( address _from, address _to, uint256 _value ) public override returns (bool) { uint256 allowed = allowance[_from][msg.sender]; require(allowed >= _value, "Insufficient allowance"); if (allowed != uint(-1)) { allowance[_from][msg.sender] = allowed.sub(_value); } _transfer(_from, _to, _value); return true; } function mint(address _to, uint256 _value) external returns (bool) { require(msg.sender == minter); balanceOf[_to] = balanceOf[_to].add(_value); totalSupply = totalSupply.add(_value); require(maxTotalSupply >= totalSupply); emit Transfer(address(0), _to, _value); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"setMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405234801561001057600080fd5b506040516109a63803806109a68339818101604052602081101561003357600080fd5b5051608081905260408051600080825291513392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a350608051610913610093600039806104b0528061054252506109136000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c8063313ce5671161008c57806395d89b411161006657806395d89b411461028d578063a9059cbb14610295578063dd62ed3e146102c1578063fca3b5aa146102ef576100df565b8063313ce5671461021d57806340c10f191461023b57806370a0823114610267576100df565b806318160ddd116100bd57806318160ddd146101c557806323b872dd146101df5780632ab4d05214610215576100df565b806306fdde03146100e45780630754617214610161578063095ea7b314610185575b600080fd5b6100ec610315565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012657818101518382015260200161010e565b50505050905090810190601f1680156101535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61016961034e565b604080516001600160a01b039092168252519081900360200190f35b6101b16004803603604081101561019b57600080fd5b506001600160a01b03813516906020013561035d565b604080519115158252519081900360200190f35b6101cd6103c3565b60408051918252519081900360200190f35b6101b1600480360360608110156101f557600080fd5b506001600160a01b038135811691602081013590911690604001356103c9565b6101cd6104ae565b6102256104d2565b6040805160ff9092168252519081900360200190f35b6101b16004803603604081101561025157600080fd5b506001600160a01b0381351690602001356104d7565b6101cd6004803603602081101561027d57600080fd5b50356001600160a01b03166105b6565b6100ec6105c8565b6101b1600480360360408110156102ab57600080fd5b506001600160a01b038135169060200135610601565b6101cd600480360360408110156102d757600080fd5b506001600160a01b0381358116916020013516610617565b6101b16004803603602081101561030557600080fd5b50356001600160a01b0316610634565b6040518060400160405280601d81526020017f506f6c7465722e46696e616e63652050726f746f636f6c20546f6b656e00000081525081565b6001546001600160a01b031681565b3360008181526003602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b6001600160a01b038316600090815260036020908152604080832033845290915281205482811015610442576040805162461bcd60e51b815260206004820152601660248201527f496e73756666696369656e7420616c6c6f77616e636500000000000000000000604482015290519081900360640190fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610498576104738184610688565b6001600160a01b03861660009081526003602090815260408083203384529091529020555b6104a38585856106d1565b506001949350505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601281565b6001546000906001600160a01b031633146104f157600080fd5b6001600160a01b03831660009081526002602052604090205461051490836107ec565b6001600160a01b0384166000908152600260205260408120919091555461053b90836107ec565b60008190557f0000000000000000000000000000000000000000000000000000000000000000101561056c57600080fd5b6040805183815290516001600160a01b038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60026020526000908152604090205481565b6040518060400160405280600681526020017f504f4c544552000000000000000000000000000000000000000000000000000081525081565b600061060e3384846106d1565b50600192915050565b600360209081526000928352604080842090915290825290205481565b6001546000906001600160a01b03161561064d57600080fd5b50600180546001600160a01b0383167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116178155919050565b60006106ca83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610846565b9392505050565b6001600160a01b03831660009081526002602052604090205481111561073e576040805162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e742062616c616e6365000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600260205260409020546107619082610688565b6001600160a01b03808516600090815260026020526040808220939093559084168152205461079090826107ec565b6001600160a01b0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156106ca576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156108d55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561089a578181015183820152602001610882565b50505050905090810190601f1680156108c75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea26469706673582212206fe8f2b762bd6d434c045b11750e9a63933d42fb75ac858bc7adaa886e945dca64736f6c6343000706003300000000000000000000000000000000000000000053bb15fc2c1a368059e29c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100df5760003560e01c8063313ce5671161008c57806395d89b411161006657806395d89b411461028d578063a9059cbb14610295578063dd62ed3e146102c1578063fca3b5aa146102ef576100df565b8063313ce5671461021d57806340c10f191461023b57806370a0823114610267576100df565b806318160ddd116100bd57806318160ddd146101c557806323b872dd146101df5780632ab4d05214610215576100df565b806306fdde03146100e45780630754617214610161578063095ea7b314610185575b600080fd5b6100ec610315565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012657818101518382015260200161010e565b50505050905090810190601f1680156101535780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61016961034e565b604080516001600160a01b039092168252519081900360200190f35b6101b16004803603604081101561019b57600080fd5b506001600160a01b03813516906020013561035d565b604080519115158252519081900360200190f35b6101cd6103c3565b60408051918252519081900360200190f35b6101b1600480360360608110156101f557600080fd5b506001600160a01b038135811691602081013590911690604001356103c9565b6101cd6104ae565b6102256104d2565b6040805160ff9092168252519081900360200190f35b6101b16004803603604081101561025157600080fd5b506001600160a01b0381351690602001356104d7565b6101cd6004803603602081101561027d57600080fd5b50356001600160a01b03166105b6565b6100ec6105c8565b6101b1600480360360408110156102ab57600080fd5b506001600160a01b038135169060200135610601565b6101cd600480360360408110156102d757600080fd5b506001600160a01b0381358116916020013516610617565b6101b16004803603602081101561030557600080fd5b50356001600160a01b0316610634565b6040518060400160405280601d81526020017f506f6c7465722e46696e616e63652050726f746f636f6c20546f6b656e00000081525081565b6001546001600160a01b031681565b3360008181526003602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b6001600160a01b038316600090815260036020908152604080832033845290915281205482811015610442576040805162461bcd60e51b815260206004820152601660248201527f496e73756666696369656e7420616c6c6f77616e636500000000000000000000604482015290519081900360640190fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610498576104738184610688565b6001600160a01b03861660009081526003602090815260408083203384529091529020555b6104a38585856106d1565b506001949350505050565b7f00000000000000000000000000000000000000000053bb15fc2c1a368059e29c81565b601281565b6001546000906001600160a01b031633146104f157600080fd5b6001600160a01b03831660009081526002602052604090205461051490836107ec565b6001600160a01b0384166000908152600260205260408120919091555461053b90836107ec565b60008190557f00000000000000000000000000000000000000000053bb15fc2c1a368059e29c101561056c57600080fd5b6040805183815290516001600160a01b038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b60026020526000908152604090205481565b6040518060400160405280600681526020017f504f4c544552000000000000000000000000000000000000000000000000000081525081565b600061060e3384846106d1565b50600192915050565b600360209081526000928352604080842090915290825290205481565b6001546000906001600160a01b03161561064d57600080fd5b50600180546001600160a01b0383167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116178155919050565b60006106ca83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610846565b9392505050565b6001600160a01b03831660009081526002602052604090205481111561073e576040805162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e742062616c616e6365000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600260205260409020546107619082610688565b6001600160a01b03808516600090815260026020526040808220939093559084168152205461079090826107ec565b6001600160a01b0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156106ca576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156108d55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561089a578181015183820152602001610882565b50505050905090810190601f1680156108c75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea26469706673582212206fe8f2b762bd6d434c045b11750e9a63933d42fb75ac858bc7adaa886e945dca64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000053bb15fc2c1a368059e29c
-----Decoded View---------------
Arg [0] : _maxTotalSupply (uint256): 101224331112863810973196956
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000053bb15fc2c1a368059e29c
Deployed Bytecode Sourcemap
8225:2887:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8347:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8545:21;;;:::i;:::-;;;;-1:-1:-1;;;;;8545:21:0;;;;;;;;;;;;;;9029:219;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9029:219:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;8457:35;;;:::i;:::-;;;;;;;;;;;;;;;;10297:465;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10297:465:0;;;;;;;;;;;;;;;;;:::i;8499:39::-;;;:::i;8415:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10770:337;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10770:337:0;;;;;;;;:::i;8575:53::-;;;;;;;;;;;;;;;;-1:-1:-1;8575:53:0;-1:-1:-1;;;;;8575:53:0;;:::i;8300:40::-;;;:::i;9831:153::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9831:153:0;;;;;;;;:::i;8635:73::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8635:73:0;;;;;;;;;;:::i;8864:157::-;;;;;;;;;;;;;;;;-1:-1:-1;8864:157:0;-1:-1:-1;;;;;8864:157:0;;:::i;8347:61::-;;;;;;;;;;;;;;;;;;;:::o;8545:21::-;;;-1:-1:-1;;;;;8545:21:0;;:::o;9029:219::-;9134:10;9107:4;9124:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;9124:31:0;;;;;;;;;;;:40;;;9180:38;;;;;;;9107:4;;9124:31;;9134:10;;9180:38;;;;;;;;-1:-1:-1;9236:4:0;9029:219;;;;:::o;8457:35::-;;;;:::o;10297:465::-;-1:-1:-1;;;;;10489:16:0;;10449:4;10489:16;;;:9;:16;;;;;;;;10506:10;10489:28;;;;;;;;10536:17;;;;10528:52;;;;;-1:-1:-1;;;10528:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10611:2;10595:7;:19;10591:102;;10662:19;:7;10674:6;10662:11;:19::i;:::-;-1:-1:-1;;;;;10631:16:0;;;;;;:9;:16;;;;;;;;10648:10;10631:28;;;;;;;:50;10591:102;10703:29;10713:5;10720:3;10725:6;10703:9;:29::i;:::-;-1:-1:-1;10750:4:0;;10297:465;-1:-1:-1;;;;10297:465:0:o;8499:39::-;;;:::o;8415:35::-;8448:2;8415:35;:::o;10770:337::-;10870:6;;10831:4;;-1:-1:-1;;;;;10870:6:0;10856:10;:20;10848:29;;;;;;-1:-1:-1;;;;;10905:14:0;;;;;;:9;:14;;;;;;:26;;10924:6;10905:18;:26::i;:::-;-1:-1:-1;;;;;10888:14:0;;;;;;:9;:14;;;;;:43;;;;10956:11;:23;;10972:6;10956:15;:23::i;:::-;10942:11;:37;;;10998:14;:29;;10990:38;;;;;;11044:33;;;;;;;;-1:-1:-1;;;;;11044:33:0;;;11061:1;;11044:33;;;;;;;;;-1:-1:-1;11095:4:0;10770:337;;;;:::o;8575:53::-;;;;;;;;;;;;;:::o;8300:40::-;;;;;;;;;;;;;;;;;;;:::o;9831:153::-;9903:4;9920:34;9930:10;9942:3;9947:6;9920:9;:34::i;:::-;-1:-1:-1;9972:4:0;9831:153;;;;:::o;8635:73::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;8864:157::-;8943:6;;8918:4;;-1:-1:-1;;;;;8943:6:0;:20;8935:29;;;;;;-1:-1:-1;8975:6:0;:16;;-1:-1:-1;;;;;8975:16:0;;;;;;;;;8864:157;;;:::o;4262:130::-;4320:7;4343:43;4347:1;4350;4343:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4336:50;4262:130;-1:-1:-1;;;4262:130:0:o;9311:306::-;-1:-1:-1;;;;;9402:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;9402:26:0;9394:59;;;;;-1:-1:-1;;;9394:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9483:16:0;;;;;;:9;:16;;;;;;:28;;9504:6;9483:20;:28::i;:::-;-1:-1:-1;;;;;9464:16:0;;;;;;;:9;:16;;;;;;:47;;;;9539:14;;;;;;;:26;;9558:6;9539:18;:26::i;:::-;-1:-1:-1;;;;;9522:14:0;;;;;;;:9;:14;;;;;;;;;:43;;;;9581:28;;;;;;;9522:14;;9581:28;;;;;;;;;;;;;9311:306;;;:::o;3840:167::-;3898:7;3926:5;;;3946:6;;;;3938:46;;;;;-1:-1:-1;;;3938:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;4667:198;4773:7;4805:12;4797:6;;;;4789:29;;;;-1:-1:-1;;;4789:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4837:5:0;;;4667:198::o
Swarm Source
ipfs://6fe8f2b762bd6d434c045b11750e9a63933d42fb75ac858bc7adaa886e945dca
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.