Overview
Max Total Supply
299,541.545601403545568855 wCPH
Holders
6
Total Transfers
-
Market
Price
$0.00 @ 0.000000 XDC
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
MintBurn
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at xdcscan.com on 2024-11-24 */ // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.5.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } // File: @openzeppelin/contracts/access/Roles.sol pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File: @openzeppelin/contracts/access/roles/MinterRole.sol pragma solidity ^0.5.0; contract MinterRole is Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(_msgSender()); } modifier onlyMinter() { require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(_msgSender()); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } // File: @openzeppelin/contracts/token/ERC20/ERC20Mintable.sol pragma solidity ^0.5.0; /** * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole}, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev See {ERC20-_mint}. * * Requirements: * * - the caller must have the {MinterRole}. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } } // File: contracts/MintBurn.sol // SPDX-License-Identifier: MIT pragma solidity ^0.5.16; contract MintBurn is ERC20, ERC20Mintable { string public name = "CypheriumCommunityDrivenWrappedCPH"; string public symbol = "wCPH"; uint8 public decimals = 18; address public owner; uint256 public minMintAmount = 10000 * (10 ** 18); bool private _locked; event Minted( address indexed user, uint256 amount, uint256 blockNumber, uint256 timestamp, address indexed initiator, bool success ); event Burned( address indexed user, uint256 amount, uint256 blockNumber, uint256 timestamp, address indexed initiator, bool success ); constructor() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner, "Only owner can perform this action"); _; } modifier nonReentrant() { require(!_locked, "Reentrant call detected"); _locked = true; _; _locked = false; } function setMinMintAmount(uint256 newMinMintAmount) public onlyOwner { minMintAmount = newMinMintAmount; } function mint(address to, uint256 amount) public onlyOwner nonReentrant returns (bool) { require(amount >= minMintAmount, "Amount must be greater than minimum mint limit"); _mint(to, amount); emit Minted( to, amount, block.number, block.timestamp, msg.sender, true ); return true; } function burn(uint256 amount) public nonReentrant { require(amount > 0, "Amount must be greater than zero"); require(balanceOf(msg.sender) >= amount, "Insufficient balance"); _burn(msg.sender, amount); emit Burned( msg.sender, amount, block.number, block.timestamp, msg.sender, true ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newMinMintAmount","type":"uint256"}],"name":"setMinMintAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260226080818152906200179260a039805162000029916004916020909101906200025e565b506040805180820190915260048082527f7743504800000000000000000000000000000000000000000000000000000000602090920191825262000070916005916200025e565b506006805460ff1916601217905569021e19e0c9bab24000006007553480156200009957600080fd5b50620000c0620000b1640100000000620000dd810204565b640100000000620000e2810204565b6006805461010060a860020a031916336101000217905562000300565b335b90565b620000fd600382640100000000620011586200013482021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001498282640100000000620001db810204565b15620001b657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000600160a060020a0382166200023e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620017b46022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002a157805160ff1916838001178555620002d1565b82800160010185558215620002d1579182015b82811115620002d1578251825591602001919060010190620002b4565b50620002df929150620002e3565b5090565b620000df91905b80821115620002df5760008155600101620002ea565b61148280620003106000396000f3fe608060405234801561001057600080fd5b506004361061013e576000357c01000000000000000000000000000000000000000000000000000000009004806342966c68116100ca578063986502751161008e5780639865027514610382578063a457c2d71461038a578063a9059cbb146103b6578063aa271e1a146103e2578063dd62ed3e146104085761013e565b806342966c68146102ed57806370a082311461030a5780638da5cb5b1461033057806395d89b4114610354578063983b2d561461035c5761013e565b80631d85d796116101115780631d85d7961461022257806323b872dd14610241578063313ce56714610277578063395093511461029557806340c10f19146102c15761013e565b806301e9d7571461014357806306fdde031461015d578063095ea7b3146101da57806318160ddd1461021a575b600080fd5b61014b610436565b60408051918252519081900360200190f35b61016561043c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019f578181015183820152602001610187565b50505050905090810190601f1680156101cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610206600480360360408110156101f057600080fd5b50600160a060020a0381351690602001356104ca565b604080519115158252519081900360200190f35b61014b6104e7565b61023f6004803603602081101561023857600080fd5b50356104ed565b005b6102066004803603606081101561025757600080fd5b50600160a060020a03813581169160208101359091169060400135610543565b61027f6105d0565b6040805160ff9092168252519081900360200190f35b610206600480360360408110156102ab57600080fd5b50600160a060020a0381351690602001356105d9565b610206600480360360408110156102d757600080fd5b50600160a060020a03813516906020013561062d565b61023f6004803603602081101561030357600080fd5b503561079b565b61014b6004803603602081101561032057600080fd5b5035600160a060020a0316610918565b610338610933565b60408051600160a060020a039092168252519081900360200190f35b610165610947565b61023f6004803603602081101561037257600080fd5b5035600160a060020a03166109a2565b61023f6109fc565b610206600480360360408110156103a057600080fd5b50600160a060020a038135169060200135610a0e565b610206600480360360408110156103cc57600080fd5b50600160a060020a038135169060200135610a7c565b610206600480360360208110156103f857600080fd5b5035600160a060020a0316610a90565b61014b6004803603604081101561041e57600080fd5b50600160a060020a0381358116916020013516610aa9565b60075481565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b505050505081565b60006104de6104d7610ad4565b8484610ad8565b50600192915050565b60025490565b6006546101009004600160a060020a0316331461053e5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806114076022913960400191505060405180910390fd5b600755565b6000610550848484610bca565b6105c68461055c610ad4565b6105c18560405180606001604052806028815260200161135360289139600160a060020a038a1660009081526001602052604081209061059a610ad4565b600160a060020a03168152602081019190915260400160002054919063ffffffff610d2c16565b610ad8565b5060019392505050565b60065460ff1681565b60006104de6105e6610ad4565b846105c185600160006105f7610ad4565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610dc616565b6006546000906101009004600160a060020a031633146106815760405160e560020a62461bcd0281526004018080602001828103825260228152602001806114076022913960400191505060405180910390fd5b60085460ff16156106dc576040805160e560020a62461bcd02815260206004820152601760248201527f5265656e7472616e742063616c6c206465746563746564000000000000000000604482015290519081900360640190fd5b6008805460ff1916600117905560075482101561072d5760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806112d4602e913960400191505060405180910390fd5b6107378383610e2a565b6040805183815243602082015242818301526001606082015290513391600160a060020a038616917f6e97abfe0a62dd36c6b3b7dbe7cea8e8706b68d8da7f4ff80fed53da227b7d6c9181900360800190a350506008805460ff1916905550600190565b60085460ff16156107f6576040805160e560020a62461bcd02815260206004820152601760248201527f5265656e7472616e742063616c6c206465746563746564000000000000000000604482015290519081900360640190fd5b6008805460ff1916600117905580610858576040805160e560020a62461bcd02815260206004820181905260248201527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604482015290519081900360640190fd5b8061086233610918565b10156108b8576040805160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e742062616c616e6365000000000000000000000000604482015290519081900360640190fd5b6108c23382610f1d565b604080518281524360208201524281830152600160608201529051339182917f4eb077692cbe8b3482e136263c2de57508b4fe6d4a3f75b7907d8dc5225a3c8f9181900360800190a3506008805460ff19169055565b600160a060020a031660009081526020819052604090205490565b6006546101009004600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c25780601f10610497576101008083540402835291602001916104c2565b6109b26109ad610ad4565b610a90565b6109f05760405160e560020a62461bcd0281526004018080602001828103825260308152602001806113026030913960400191505060405180910390fd5b6109f98161101c565b50565b610a0c610a07610ad4565b611064565b565b60006104de610a1b610ad4565b846105c1856040518060600160405280602581526020016114296025913960016000610a45610ad4565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610d2c16565b60006104de610a89610ad4565b8484610bca565b6000610aa360038363ffffffff6110ac16565b92915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b3390565b600160a060020a038316610b205760405160e560020a62461bcd0281526004018080602001828103825260248152602001806113e36024913960400191505060405180910390fd5b600160a060020a038216610b685760405160e560020a62461bcd02815260040180806020018281038252602281526020018061128c6022913960400191505060405180910390fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038316610c125760405160e560020a62461bcd0281526004018080602001828103825260258152602001806113be6025913960400191505060405180910390fd5b600160a060020a038216610c5a5760405160e560020a62461bcd0281526004018080602001828103825260238152602001806112476023913960400191505060405180910390fd5b610c9d816040518060600160405280602681526020016112ae60269139600160a060020a038616600090815260208190526040902054919063ffffffff610d2c16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610cd2908263ffffffff610dc616565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610dbe5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d83578181015183820152602001610d6b565b50505050905090810190601f168015610db05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e23576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a038216610e88576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610e9b908263ffffffff610dc616565b600255600160a060020a038216600090815260208190526040902054610ec7908263ffffffff610dc616565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216610f655760405160e560020a62461bcd02815260040180806020018281038252602181526020018061139d6021913960400191505060405180910390fd5b610fa88160405180606001604052806022815260200161126a60229139600160a060020a038516600090815260208190526040902054919063ffffffff610d2c16565b600160a060020a038316600090815260208190526040902055600254610fd4908263ffffffff61111616565b600255604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61102d60038263ffffffff61115816565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61107560038263ffffffff6111dc16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0382166110f65760405160e560020a62461bcd02815260040180806020018281038252602281526020018061137b6022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6000610e2383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d2c565b61116282826110ac565b156111b7576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6111e682826110ac565b6112245760405160e560020a62461bcd0281526004018080602001828103825260218152602001806113326021913960400191505060405180910390fd5b600160a060020a0316600090815260209190915260409020805460ff1916905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416d6f756e74206d7573742062652067726561746572207468616e206d696e696d756d206d696e74206c696d69744d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734f6e6c79206f776e65722063616e20706572666f726d207468697320616374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820886cb6af2f9274d5f8f563f4ac74dc65ba7e4fdca29a06a6aa7fd17378e3dc2464736f6c6343000510003243797068657269756d436f6d6d756e69747944726976656e57726170706564435048526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061013e576000357c01000000000000000000000000000000000000000000000000000000009004806342966c68116100ca578063986502751161008e5780639865027514610382578063a457c2d71461038a578063a9059cbb146103b6578063aa271e1a146103e2578063dd62ed3e146104085761013e565b806342966c68146102ed57806370a082311461030a5780638da5cb5b1461033057806395d89b4114610354578063983b2d561461035c5761013e565b80631d85d796116101115780631d85d7961461022257806323b872dd14610241578063313ce56714610277578063395093511461029557806340c10f19146102c15761013e565b806301e9d7571461014357806306fdde031461015d578063095ea7b3146101da57806318160ddd1461021a575b600080fd5b61014b610436565b60408051918252519081900360200190f35b61016561043c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019f578181015183820152602001610187565b50505050905090810190601f1680156101cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610206600480360360408110156101f057600080fd5b50600160a060020a0381351690602001356104ca565b604080519115158252519081900360200190f35b61014b6104e7565b61023f6004803603602081101561023857600080fd5b50356104ed565b005b6102066004803603606081101561025757600080fd5b50600160a060020a03813581169160208101359091169060400135610543565b61027f6105d0565b6040805160ff9092168252519081900360200190f35b610206600480360360408110156102ab57600080fd5b50600160a060020a0381351690602001356105d9565b610206600480360360408110156102d757600080fd5b50600160a060020a03813516906020013561062d565b61023f6004803603602081101561030357600080fd5b503561079b565b61014b6004803603602081101561032057600080fd5b5035600160a060020a0316610918565b610338610933565b60408051600160a060020a039092168252519081900360200190f35b610165610947565b61023f6004803603602081101561037257600080fd5b5035600160a060020a03166109a2565b61023f6109fc565b610206600480360360408110156103a057600080fd5b50600160a060020a038135169060200135610a0e565b610206600480360360408110156103cc57600080fd5b50600160a060020a038135169060200135610a7c565b610206600480360360208110156103f857600080fd5b5035600160a060020a0316610a90565b61014b6004803603604081101561041e57600080fd5b50600160a060020a0381358116916020013516610aa9565b60075481565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b505050505081565b60006104de6104d7610ad4565b8484610ad8565b50600192915050565b60025490565b6006546101009004600160a060020a0316331461053e5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806114076022913960400191505060405180910390fd5b600755565b6000610550848484610bca565b6105c68461055c610ad4565b6105c18560405180606001604052806028815260200161135360289139600160a060020a038a1660009081526001602052604081209061059a610ad4565b600160a060020a03168152602081019190915260400160002054919063ffffffff610d2c16565b610ad8565b5060019392505050565b60065460ff1681565b60006104de6105e6610ad4565b846105c185600160006105f7610ad4565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610dc616565b6006546000906101009004600160a060020a031633146106815760405160e560020a62461bcd0281526004018080602001828103825260228152602001806114076022913960400191505060405180910390fd5b60085460ff16156106dc576040805160e560020a62461bcd02815260206004820152601760248201527f5265656e7472616e742063616c6c206465746563746564000000000000000000604482015290519081900360640190fd5b6008805460ff1916600117905560075482101561072d5760405160e560020a62461bcd02815260040180806020018281038252602e8152602001806112d4602e913960400191505060405180910390fd5b6107378383610e2a565b6040805183815243602082015242818301526001606082015290513391600160a060020a038616917f6e97abfe0a62dd36c6b3b7dbe7cea8e8706b68d8da7f4ff80fed53da227b7d6c9181900360800190a350506008805460ff1916905550600190565b60085460ff16156107f6576040805160e560020a62461bcd02815260206004820152601760248201527f5265656e7472616e742063616c6c206465746563746564000000000000000000604482015290519081900360640190fd5b6008805460ff1916600117905580610858576040805160e560020a62461bcd02815260206004820181905260248201527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604482015290519081900360640190fd5b8061086233610918565b10156108b8576040805160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e742062616c616e6365000000000000000000000000604482015290519081900360640190fd5b6108c23382610f1d565b604080518281524360208201524281830152600160608201529051339182917f4eb077692cbe8b3482e136263c2de57508b4fe6d4a3f75b7907d8dc5225a3c8f9181900360800190a3506008805460ff19169055565b600160a060020a031660009081526020819052604090205490565b6006546101009004600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c25780601f10610497576101008083540402835291602001916104c2565b6109b26109ad610ad4565b610a90565b6109f05760405160e560020a62461bcd0281526004018080602001828103825260308152602001806113026030913960400191505060405180910390fd5b6109f98161101c565b50565b610a0c610a07610ad4565b611064565b565b60006104de610a1b610ad4565b846105c1856040518060600160405280602581526020016114296025913960016000610a45610ad4565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610d2c16565b60006104de610a89610ad4565b8484610bca565b6000610aa360038363ffffffff6110ac16565b92915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b3390565b600160a060020a038316610b205760405160e560020a62461bcd0281526004018080602001828103825260248152602001806113e36024913960400191505060405180910390fd5b600160a060020a038216610b685760405160e560020a62461bcd02815260040180806020018281038252602281526020018061128c6022913960400191505060405180910390fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038316610c125760405160e560020a62461bcd0281526004018080602001828103825260258152602001806113be6025913960400191505060405180910390fd5b600160a060020a038216610c5a5760405160e560020a62461bcd0281526004018080602001828103825260238152602001806112476023913960400191505060405180910390fd5b610c9d816040518060600160405280602681526020016112ae60269139600160a060020a038616600090815260208190526040902054919063ffffffff610d2c16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610cd2908263ffffffff610dc616565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610dbe5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d83578181015183820152602001610d6b565b50505050905090810190601f168015610db05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e23576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a038216610e88576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610e9b908263ffffffff610dc616565b600255600160a060020a038216600090815260208190526040902054610ec7908263ffffffff610dc616565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216610f655760405160e560020a62461bcd02815260040180806020018281038252602181526020018061139d6021913960400191505060405180910390fd5b610fa88160405180606001604052806022815260200161126a60229139600160a060020a038516600090815260208190526040902054919063ffffffff610d2c16565b600160a060020a038316600090815260208190526040902055600254610fd4908263ffffffff61111616565b600255604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61102d60038263ffffffff61115816565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61107560038263ffffffff6111dc16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0382166110f65760405160e560020a62461bcd02815260040180806020018281038252602281526020018061137b6022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6000610e2383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d2c565b61116282826110ac565b156111b7576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6111e682826110ac565b6112245760405160e560020a62461bcd0281526004018080602001828103825260218152602001806113326021913960400191505060405180910390fd5b600160a060020a0316600090815260209190915260409020805460ff1916905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416d6f756e74206d7573742062652067726561746572207468616e206d696e696d756d206d696e74206c696d69744d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734f6e6c79206f776e65722063616e20706572666f726d207468697320616374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820886cb6af2f9274d5f8f563f4ac74dc65ba7e4fdca29a06a6aa7fd17378e3dc2464736f6c63430005100032
Deployed Bytecode Sourcemap
20812:2024:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20812:2024:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21023:49;;;:::i;:::-;;;;;;;;;;;;;;;;20861:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;20861:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12134:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12134:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11155:91;;;:::i;21862:120::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21862:120:0;;:::i;:::-;;12758:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12758:304:0;;;;;;;;;;;;;;;;;:::i;20961:26::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13471:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13471:210:0;;;;;;;;:::i;21990:416::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21990:416:0;;;;;;;;:::i;22414:419::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22414:419:0;;:::i;11309:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11309:110:0;-1:-1:-1;;;;;11309:110:0;;:::i;20996:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;20996:20:0;;;;;;;;;;;;;;20925:29;;;:::i;19591:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19591:92:0;-1:-1:-1;;;;;19591:92:0;;:::i;19691:79::-;;;:::i;14184:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14184:261:0;;;;;;;;:::i;11632:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11632:158:0;;;;;;;;:::i;19474:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19474:109:0;-1:-1:-1;;;;;19474:109:0;;:::i;11853:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11853:134:0;;;;;;;;;;:::i;21023:49::-;;;;:::o;20861:57::-;;;;;;;;;;;;;;;-1:-1:-1;;20861:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12134:152::-;12200:4;12217:39;12226:12;:10;:12::i;:::-;12240:7;12249:6;12217:8;:39::i;:::-;-1:-1:-1;12274:4:0;12134:152;;;;:::o;11155:91::-;11226:12;;11155:91;:::o;21862:120::-;21632:5;;;;;-1:-1:-1;;;;;21632:5:0;21618:10;:19;21610:66;;;;-1:-1:-1;;;;;21610:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21942:13;:32;21862:120::o;12758:304::-;12847:4;12864:36;12874:6;12882:9;12893:6;12864:9;:36::i;:::-;12911:121;12920:6;12928:12;:10;:12::i;:::-;12942:89;12980:6;12942:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12942:19:0;;;;;;:11;:19;;;;;;12962:12;:10;:12::i;:::-;-1:-1:-1;;;;;12942:33:0;;;;;;;;;;;;-1:-1:-1;12942:33:0;;;:89;;:37;:89;:::i;:::-;12911:8;:121::i;:::-;-1:-1:-1;13050:4:0;12758:304;;;;;:::o;20961:26::-;;;;;;:::o;13471:210::-;13551:4;13568:83;13577:12;:10;:12::i;:::-;13591:7;13600:50;13639:10;13600:11;:25;13612:12;:10;:12::i;:::-;-1:-1:-1;;;;;13600:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13600:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;21990:416::-;21632:5;;22071:4;;21632:5;;;-1:-1:-1;;;;;21632:5:0;21618:10;:19;21610:66;;;;-1:-1:-1;;;;;21610:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21748:7;;;;21747:8;21739:44;;;;;-1:-1:-1;;;;;21739:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21794:7;:14;;-1:-1:-1;;21794:14:0;21804:4;21794:14;;;22106:13;;22096:23;;;22088:82;;;;-1:-1:-1;;;;;22088:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22183:17;22189:2;22193:6;22183:5;:17::i;:::-;22218:156;;;;;;22277:12;22218:156;;;;22304:15;22218:156;;;;22359:4;22218:156;;;;;;22334:10;;-1:-1:-1;;;;;22218:156:0;;;;;;;;;;;;-1:-1:-1;;21831:7:0;:15;;-1:-1:-1;;21831:15:0;;;-1:-1:-1;22394:4:0;;21990:416::o;22414:419::-;21748:7;;;;21747:8;21739:44;;;;;-1:-1:-1;;;;;21739:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21794:7;:14;;-1:-1:-1;;21794:14:0;21804:4;21794:14;;;22483:10;22475:55;;;;;-1:-1:-1;;;;;22475:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22574:6;22549:21;22559:10;22549:9;:21::i;:::-;:31;;22541:64;;;;;-1:-1:-1;;;;;22541:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22618:25;22624:10;22636:6;22618:5;:25::i;:::-;22661:164;;;;;;22728:12;22661:164;;;;22755:15;22661:164;;;;22810:4;22661:164;;;;;;22785:10;;;;22661:164;;;;;;;;;-1:-1:-1;21831:7:0;:15;;-1:-1:-1;;21831:15:0;;;22414:419::o;11309:110::-;-1:-1:-1;;;;;11393:18:0;11366:7;11393:18;;;;;;;;;;;;11309:110::o;20996:20::-;;;;;;-1:-1:-1;;;;;20996:20:0;;:::o;20925:29::-;;;;;;;;;;;;;;;-1:-1:-1;;20925:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19591:92;19371:22;19380:12;:10;:12::i;:::-;19371:8;:22::i;:::-;19363:83;;;;-1:-1:-1;;;;;19363:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19656:19;19667:7;19656:10;:19::i;:::-;19591:92;:::o;19691:79::-;19735:27;19749:12;:10;:12::i;:::-;19735:13;:27::i;:::-;19691:79::o;14184:261::-;14269:4;14286:129;14295:12;:10;:12::i;:::-;14309:7;14318:96;14357:15;14318:96;;;;;;;;;;;;;;;;;:11;:25;14330:12;:10;:12::i;:::-;-1:-1:-1;;;;;14318:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14318:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;11632:158::-;11701:4;11718:42;11728:12;:10;:12::i;:::-;11742:9;11753:6;11718:9;:42::i;19474:109::-;19530:4;19554:21;:8;19567:7;19554:21;:12;:21;:::i;:::-;19547:28;19474:109;-1:-1:-1;;19474:109:0:o;11853:134::-;-1:-1:-1;;;;;11952:18:0;;;11925:7;11952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11853:134::o;858:98::-;938:10;858:98;:::o;17115:338::-;-1:-1:-1;;;;;17209:19:0;;17201:68;;;;-1:-1:-1;;;;;17201:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17288:21:0;;17280:68;;;;-1:-1:-1;;;;;17280:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17361:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17413:32;;;;;;;;;;;;;;;;;17115:338;;;:::o;14935:471::-;-1:-1:-1;;;;;15033:20:0;;15025:70;;;;-1:-1:-1;;;;;15025:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15114:23:0;;15106:71;;;;-1:-1:-1;;;;;15106:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15210;15232:6;15210:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15210:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;15190:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15315:20;;;;;;;:32;;15340:6;15315:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15292:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15363:35;;;;;;;15292:20;;15363:35;;;;;;;;;;;;;14935:471;;;:::o;5918:192::-;6004:7;6040:12;6032:6;;;;6024:29;;;;-1:-1:-1;;;;;6024:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6024:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6076:5:0;;;5918:192::o;4989:181::-;5047:7;5079:5;;;5103:6;;;;5095:46;;;;;-1:-1:-1;;;;;5095:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5161:1;4989:181;-1:-1:-1;;;4989:181:0:o;15687:308::-;-1:-1:-1;;;;;15763:21:0;;15755:65;;;;;-1:-1:-1;;;;;15755:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15848:12;;:24;;15865:6;15848:24;:16;:24;:::i;:::-;15833:12;:39;-1:-1:-1;;;;;15904:18:0;;:9;:18;;;;;;;;;;;:30;;15927:6;15904:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;15883:18:0;;:9;:18;;;;;;;;;;;:51;;;;15950:37;;;;;;;15883:18;;:9;;15950:37;;;;;;;;;;15687:308;;:::o;16327:348::-;-1:-1:-1;;;;;16403:21:0;;16395:67;;;;-1:-1:-1;;;;;16395:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16496:68;16519:6;16496:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16496:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;16475:18:0;;:9;:18;;;;;;;;;;:89;16590:12;;:24;;16607:6;16590:24;:16;:24;:::i;:::-;16575:12;:39;16630:37;;;;;;;;16656:1;;-1:-1:-1;;;;;16630:37:0;;;;;;;;;;;;16327:348;;:::o;19778:122::-;19835:21;:8;19848:7;19835:21;:12;:21;:::i;:::-;19872:20;;-1:-1:-1;;;;;19872:20:0;;;;;;;;19778:122;:::o;19908:130::-;19968:24;:8;19984:7;19968:24;:15;:24;:::i;:::-;20008:22;;-1:-1:-1;;;;;20008:22:0;;;;;;;;19908:130;:::o;18741:203::-;18813:4;-1:-1:-1;;;;;18838:21:0;;18830:68;;;;-1:-1:-1;;;;;18830:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18916:20:0;:11;:20;;;;;;;;;;;;;;;18741:203::o;5445:136::-;5503:7;5530:43;5534:1;5537;5530:43;;;;;;;;;;;;;;;;;:3;:43::i;18205:178::-;18283:18;18287:4;18293:7;18283:3;:18::i;:::-;18282:19;18274:63;;;;;-1:-1:-1;;;;;18274:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18348:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;18348:27:0;18371:4;18348:27;;;18205:178::o;18463:183::-;18543:18;18547:4;18553:7;18543:3;:18::i;:::-;18535:64;;;;-1:-1:-1;;;;;18535:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18610:20:0;18633:5;18610:20;;;;;;;;;;;:28;;-1:-1:-1;;18610:28:0;;;18463:183::o
Swarm Source
bzzr://886cb6af2f9274d5f8f563f4ac74dc65ba7e4fdca29a06a6aa7fd17378e3dc24
[ 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.