ERC-20
Gaming
Overview
Max Total Supply
35,000,000 COMBO
Holders
526 (0.00%)
Market
Price
$0.41 @ 0.000134 ETH (+4.84%)
Onchain Market Cap
$14,254,962.86
Circulating Supply Market Cap
$28,938,286.55
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ComboToken
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; /// @title ComboToken Contract /// For more information about this token please visit https://combo.io contract ComboToken is ERC20, Pausable, Ownable { /// Constant token specific fields uint256 public constant MAX_SUPPLY = 100000000 * (10 ** 18); // minters mapping(address => bool) public _minters; // white list mapping(address => bool) public whiteAccountMap; // black list mapping(address => bool) public blackAccountMap; event AddWhiteAccount( address indexed operator, address indexed whiteAccount ); event AddBlackAccount( address indexed operator, address indexed blackAccount ); event DelWhiteAccount( address indexed operator, address indexed whiteAccount ); event DelBlackAccount( address indexed operator, address indexed blackAccount ); event Mint(address indexed from, address indexed to, uint256 value); event AddMinter(address minter); event DelMinter(address minter); modifier validAddress(address addr) { require(addr != address(0x0), "address is not 0x0"); require(addr != address(this), "address is not contract"); _; } /** * CONSTRUCTOR * * @dev Initialize the Combo Token */ constructor() ERC20("ComboToken", "COMBO") { // Pause at start super._pause(); } function _transfer( address from, address to, uint256 value ) internal override { if (paused()) { // only white list pass require(whiteAccountMap[from], "'from' is not in white list"); } else { // check black list require(!blackAccountMap[from], "'from' is in black list"); } super._transfer(from, to, value); } // people will transfer COMBO to contract, fix it function withdrawFromContract( address _to ) public onlyOwner validAddress(_to) returns (bool) { uint256 contractBalance = balanceOf(address(this)); require(contractBalance > 0, "not enough balance"); _transfer(address(this), _to, contractBalance); return true; } function pause() external onlyOwner { super._pause(); } function unpause() external onlyOwner { super._unpause(); } /** * @dev for mint function */ function mint( address account, uint256 amount ) external validAddress(account) { require(_minters[msg.sender], "!minter"); uint256 newMintSupply = totalSupply() + amount; require(newMintSupply <= MAX_SUPPLY, "supply is max!"); _mint(account, amount); emit Mint(address(0), account, amount); } function addMinter(address _minter) external onlyOwner { require(!_minters[_minter], "is minter"); _minters[_minter] = true; emit AddMinter(_minter); } function removeMinter(address _minter) external onlyOwner { require(_minters[_minter], "not is minter"); _minters[_minter] = false; emit DelMinter(_minter); } function addWhiteAccount( address _whiteAccount ) public onlyOwner validAddress(_whiteAccount) { require(!whiteAccountMap[_whiteAccount], "has in white list"); whiteAccountMap[_whiteAccount] = true; emit AddWhiteAccount(msg.sender, _whiteAccount); } function delWhiteAccount( address _whiteAccount ) public onlyOwner validAddress(_whiteAccount) { require(whiteAccountMap[_whiteAccount], "not in white list"); whiteAccountMap[_whiteAccount] = false; emit DelWhiteAccount(msg.sender, _whiteAccount); } function addBlackAccount( address _blackAccount ) public onlyOwner validAddress(_blackAccount) { require(!blackAccountMap[_blackAccount], "has in black list"); blackAccountMap[_blackAccount] = true; emit AddBlackAccount(msg.sender, _blackAccount); } function delBlackAccount( address _blackAccount ) public onlyOwner validAddress(_blackAccount) { require(blackAccountMap[_blackAccount], "not in black list"); blackAccountMap[_blackAccount] = false; emit DelBlackAccount(msg.sender, _blackAccount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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 {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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 virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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 virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 virtual { 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.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 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"blackAccount","type":"address"}],"name":"AddBlackAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"AddMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"whiteAccount","type":"address"}],"name":"AddWhiteAccount","type":"event"},{"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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"blackAccount","type":"address"}],"name":"DelBlackAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"DelMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"whiteAccount","type":"address"}],"name":"DelWhiteAccount","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":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_blackAccount","type":"address"}],"name":"addBlackAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whiteAccount","type":"address"}],"name":"addWhiteAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blackAccountMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_blackAccount","type":"address"}],"name":"delBlackAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whiteAccount","type":"address"}],"name":"delWhiteAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteAccountMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawFromContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600a81526020016921b7b6b137aa37b5b2b760b11b81525060405180604001604052806005815260200164434f4d424f60d81b815250816003908162000064919062000244565b50600462000073828262000244565b50506005805460ff19169055506200008b336200009b565b62000095620000f5565b62000310565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620000ff62000152565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001353390565b6040516001600160a01b03909116815260200160405180910390a1565b60055460ff16156200019d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001ca57607f821691505b602082108103620001eb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023f57600081815260208120601f850160051c810160208610156200021a5750805b601f850160051c820191505b818110156200023b5782815560010162000226565b5050505b505050565b81516001600160401b038111156200026057620002606200019f565b6200027881620002718454620001b5565b84620001f1565b602080601f831160018114620002b05760008415620002975750858301515b600019600386901b1c1916600185901b1785556200023b565b600085815260208120601f198616915b82811015620002e157888601518255948401946001909101908401620002c0565b5085821015620003005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6116f680620003206000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063983b2d56116100a2578063dd62ed3e11610071578063dd62ed3e146103de578063f2fde38b146103f1578063f3ff496114610404578063fec27a0a1461041757600080fd5b8063983b2d5614610392578063a457c2d7146103a5578063a9059cbb146103b8578063db5009a5146103cb57600080fd5b80638456cb59116100de5780638456cb59146103465780638da5cb5b1461034e57806395d89b4114610377578063981417121461037f57600080fd5b80635c975abb1461030a57806370a0823114610315578063715018a61461033e57600080fd5b806331d42bf211610171578063395093511161014b57806339509351146102c95780633976bd1d146102dc5780633f4ba83a146102ef57806340c10f19146102f757600080fd5b806331d42bf21461028157806332cb6b0c146102945780633575597d146102a657600080fd5b806318160ddd116101ad57806318160ddd1461023857806323b872dd1461024a5780633092afd51461025d578063313ce5671461027257600080fd5b806306fdde03146101d4578063095ea7b3146101f25780630bb46a6614610215575b600080fd5b6101dc61043a565b6040516101e991906114e3565b60405180910390f35b61020561020036600461154d565b6104cc565b60405190151581526020016101e9565b610205610223366004611577565b60086020526000908152604090205460ff1681565b6002545b6040519081526020016101e9565b610205610258366004611599565b6104e6565b61027061026b366004611577565b61050a565b005b604051601281526020016101e9565b61027061028f366004611577565b6105c7565b61023c6a52b7d2dcc80cd2e400000081565b6102056102b4366004611577565b60066020526000908152604090205460ff1681565b6102056102d736600461154d565b6106c9565b6102706102ea366004611577565b6106eb565b6102706107e9565b61027061030536600461154d565b6107fb565b60055460ff16610205565b61023c610323366004611577565b6001600160a01b031660009081526020819052604090205490565b610270610948565b61027061095a565b60055461010090046001600160a01b03166040516001600160a01b0390911681526020016101e9565b6101dc61096a565b61027061038d366004611577565b610979565b6102706103a0366004611577565b610a7b565b6102056103b336600461154d565b610b2c565b6102056103c636600461154d565b610ba7565b6102706103d9366004611577565b610bb5565b61023c6103ec3660046115d5565b610cb3565b6102706103ff366004611577565b610cde565b610205610412366004611577565b610d57565b610205610425366004611577565b60076020526000908152604090205460ff1681565b60606003805461044990611608565b80601f016020809104026020016040519081016040528092919081815260200182805461047590611608565b80156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b6000336104da818585610e19565b60019150505b92915050565b6000336104f4858285610f3d565b6104ff858585610fb7565b506001949350505050565b6105126110a8565b6001600160a01b03811660009081526006602052604090205460ff1661056f5760405162461bcd60e51b815260206004820152600d60248201526c3737ba1034b99036b4b73a32b960991b60448201526064015b60405180910390fd5b6001600160a01b038116600081815260066020908152604091829020805460ff1916905590519182527f2aa6ff3c9b853713f87f3be0cae11224c8d9e4227d2d09fbb69b80346f5432a391015b60405180910390a150565b6105cf6110a8565b806001600160a01b0381166105f65760405162461bcd60e51b81526004016105669061163c565b306001600160a01b0382160361061e5760405162461bcd60e51b815260040161056690611668565b6001600160a01b03821660009081526008602052604090205460ff161561067b5760405162461bcd60e51b81526020600482015260116024820152701a185cc81a5b88189b1858dac81b1a5cdd607a1b6044820152606401610566565b6001600160a01b038216600081815260086020526040808220805460ff191660011790555133917fc476158237ccbc15520902c2dde98207da751a8ed354f6ac5a0fc7bf6367539f91a35050565b6000336104da8185856106dc8383610cb3565b6106e6919061169f565b610e19565b6106f36110a8565b806001600160a01b03811661071a5760405162461bcd60e51b81526004016105669061163c565b306001600160a01b038216036107425760405162461bcd60e51b815260040161056690611668565b6001600160a01b03821660009081526008602052604090205460ff1661079e5760405162461bcd60e51b81526020600482015260116024820152701b9bdd081a5b88189b1858dac81b1a5cdd607a1b6044820152606401610566565b6001600160a01b038216600081815260086020526040808220805460ff191690555133917ff5313ac47c999dc2ae75dfcccccfaf58315f81db55e56a9f484fcc9a02cc559891a35050565b6107f16110a8565b6107f9611108565b565b816001600160a01b0381166108225760405162461bcd60e51b81526004016105669061163c565b306001600160a01b0382160361084a5760405162461bcd60e51b815260040161056690611668565b3360009081526006602052604090205460ff166108935760405162461bcd60e51b815260206004820152600760248201526610b6b4b73a32b960c91b6044820152606401610566565b60008261089f60025490565b6108a9919061169f565b90506a52b7d2dcc80cd2e40000008111156108f75760405162461bcd60e51b815260206004820152600e60248201526d737570706c79206973206d61782160901b6044820152606401610566565b610901848461115a565b6040518381526001600160a01b038516906000907fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f89060200160405180910390a350505050565b6109506110a8565b6107f96000611219565b6109626110a8565b6107f9611273565b60606004805461044990611608565b6109816110a8565b806001600160a01b0381166109a85760405162461bcd60e51b81526004016105669061163c565b306001600160a01b038216036109d05760405162461bcd60e51b815260040161056690611668565b6001600160a01b03821660009081526007602052604090205460ff1615610a2d5760405162461bcd60e51b81526020600482015260116024820152701a185cc81a5b881dda1a5d19481b1a5cdd607a1b6044820152606401610566565b6001600160a01b038216600081815260076020526040808220805460ff191660011790555133917f70a380f431974c4a702597b5a84db4fd82b46c6c22bbece2f7a2ace9b4f2407191a35050565b610a836110a8565b6001600160a01b03811660009081526006602052604090205460ff1615610ad85760405162461bcd60e51b815260206004820152600960248201526834b99036b4b73a32b960b91b6044820152606401610566565b6001600160a01b038116600081815260066020908152604091829020805460ff1916600117905590519182527f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab91016105bc565b60003381610b3a8286610cb3565b905083811015610b9a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610566565b6104ff8286868403610e19565b6000336104da818585610fb7565b610bbd6110a8565b806001600160a01b038116610be45760405162461bcd60e51b81526004016105669061163c565b306001600160a01b03821603610c0c5760405162461bcd60e51b815260040161056690611668565b6001600160a01b03821660009081526007602052604090205460ff16610c685760405162461bcd60e51b81526020600482015260116024820152701b9bdd081a5b881dda1a5d19481b1a5cdd607a1b6044820152606401610566565b6001600160a01b038216600081815260076020526040808220805460ff191690555133917f4a1cd3dad39d738320ad544b9d523ba6ee01375228a912e5ebbe7ed7f52c3c0c91a35050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ce66110a8565b6001600160a01b038116610d4b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610566565b610d5481611219565b50565b6000610d616110a8565b816001600160a01b038116610d885760405162461bcd60e51b81526004016105669061163c565b306001600160a01b03821603610db05760405162461bcd60e51b815260040161056690611668565b3060009081526020819052604090205480610e025760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b6044820152606401610566565b610e0d308583610fb7565b60019250505b50919050565b6001600160a01b038316610e7b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610566565b6001600160a01b038216610edc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610566565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f498484610cb3565b90506000198114610fb15781811015610fa45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610566565b610fb18484848403610e19565b50505050565b60055460ff161561102f576001600160a01b03831660009081526007602052604090205460ff1661102a5760405162461bcd60e51b815260206004820152601b60248201527f2766726f6d27206973206e6f7420696e207768697465206c69737400000000006044820152606401610566565b611098565b6001600160a01b03831660009081526008602052604090205460ff16156110985760405162461bcd60e51b815260206004820152601760248201527f2766726f6d2720697320696e20626c61636b206c6973740000000000000000006044820152606401610566565b6110a38383836112b0565b505050565b6005546001600160a01b036101009091041633146107f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610566565b611110611454565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166111b05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610566565b80600260008282546111c2919061169f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61127b61149d565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861113d3390565b6001600160a01b0383166113145760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610566565b6001600160a01b0382166113765760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610566565b6001600160a01b038316600090815260208190526040902054818110156113ee5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610566565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fb1565b60055460ff166107f95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610566565b60055460ff16156107f95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610566565b600060208083528351808285015260005b81811015611510578581018301518582016040015282016114f4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461154857600080fd5b919050565b6000806040838503121561156057600080fd5b61156983611531565b946020939093013593505050565b60006020828403121561158957600080fd5b61159282611531565b9392505050565b6000806000606084860312156115ae57600080fd5b6115b784611531565b92506115c560208501611531565b9150604084013590509250925092565b600080604083850312156115e857600080fd5b6115f183611531565b91506115ff60208401611531565b90509250929050565b600181811c9082168061161c57607f821691505b602082108103610e1357634e487b7160e01b600052602260045260246000fd5b602080825260129082015271061646472657373206973206e6f74203078360741b604082015260600190565b60208082526017908201527f61646472657373206973206e6f7420636f6e7472616374000000000000000000604082015260600190565b808201808211156104e057634e487b7160e01b600052601160045260246000fdfea26469706673582212206674536bcc37732f8614b1f23b18cea9669d2208741760f24e24c2535309010f64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063983b2d56116100a2578063dd62ed3e11610071578063dd62ed3e146103de578063f2fde38b146103f1578063f3ff496114610404578063fec27a0a1461041757600080fd5b8063983b2d5614610392578063a457c2d7146103a5578063a9059cbb146103b8578063db5009a5146103cb57600080fd5b80638456cb59116100de5780638456cb59146103465780638da5cb5b1461034e57806395d89b4114610377578063981417121461037f57600080fd5b80635c975abb1461030a57806370a0823114610315578063715018a61461033e57600080fd5b806331d42bf211610171578063395093511161014b57806339509351146102c95780633976bd1d146102dc5780633f4ba83a146102ef57806340c10f19146102f757600080fd5b806331d42bf21461028157806332cb6b0c146102945780633575597d146102a657600080fd5b806318160ddd116101ad57806318160ddd1461023857806323b872dd1461024a5780633092afd51461025d578063313ce5671461027257600080fd5b806306fdde03146101d4578063095ea7b3146101f25780630bb46a6614610215575b600080fd5b6101dc61043a565b6040516101e991906114e3565b60405180910390f35b61020561020036600461154d565b6104cc565b60405190151581526020016101e9565b610205610223366004611577565b60086020526000908152604090205460ff1681565b6002545b6040519081526020016101e9565b610205610258366004611599565b6104e6565b61027061026b366004611577565b61050a565b005b604051601281526020016101e9565b61027061028f366004611577565b6105c7565b61023c6a52b7d2dcc80cd2e400000081565b6102056102b4366004611577565b60066020526000908152604090205460ff1681565b6102056102d736600461154d565b6106c9565b6102706102ea366004611577565b6106eb565b6102706107e9565b61027061030536600461154d565b6107fb565b60055460ff16610205565b61023c610323366004611577565b6001600160a01b031660009081526020819052604090205490565b610270610948565b61027061095a565b60055461010090046001600160a01b03166040516001600160a01b0390911681526020016101e9565b6101dc61096a565b61027061038d366004611577565b610979565b6102706103a0366004611577565b610a7b565b6102056103b336600461154d565b610b2c565b6102056103c636600461154d565b610ba7565b6102706103d9366004611577565b610bb5565b61023c6103ec3660046115d5565b610cb3565b6102706103ff366004611577565b610cde565b610205610412366004611577565b610d57565b610205610425366004611577565b60076020526000908152604090205460ff1681565b60606003805461044990611608565b80601f016020809104026020016040519081016040528092919081815260200182805461047590611608565b80156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b6000336104da818585610e19565b60019150505b92915050565b6000336104f4858285610f3d565b6104ff858585610fb7565b506001949350505050565b6105126110a8565b6001600160a01b03811660009081526006602052604090205460ff1661056f5760405162461bcd60e51b815260206004820152600d60248201526c3737ba1034b99036b4b73a32b960991b60448201526064015b60405180910390fd5b6001600160a01b038116600081815260066020908152604091829020805460ff1916905590519182527f2aa6ff3c9b853713f87f3be0cae11224c8d9e4227d2d09fbb69b80346f5432a391015b60405180910390a150565b6105cf6110a8565b806001600160a01b0381166105f65760405162461bcd60e51b81526004016105669061163c565b306001600160a01b0382160361061e5760405162461bcd60e51b815260040161056690611668565b6001600160a01b03821660009081526008602052604090205460ff161561067b5760405162461bcd60e51b81526020600482015260116024820152701a185cc81a5b88189b1858dac81b1a5cdd607a1b6044820152606401610566565b6001600160a01b038216600081815260086020526040808220805460ff191660011790555133917fc476158237ccbc15520902c2dde98207da751a8ed354f6ac5a0fc7bf6367539f91a35050565b6000336104da8185856106dc8383610cb3565b6106e6919061169f565b610e19565b6106f36110a8565b806001600160a01b03811661071a5760405162461bcd60e51b81526004016105669061163c565b306001600160a01b038216036107425760405162461bcd60e51b815260040161056690611668565b6001600160a01b03821660009081526008602052604090205460ff1661079e5760405162461bcd60e51b81526020600482015260116024820152701b9bdd081a5b88189b1858dac81b1a5cdd607a1b6044820152606401610566565b6001600160a01b038216600081815260086020526040808220805460ff191690555133917ff5313ac47c999dc2ae75dfcccccfaf58315f81db55e56a9f484fcc9a02cc559891a35050565b6107f16110a8565b6107f9611108565b565b816001600160a01b0381166108225760405162461bcd60e51b81526004016105669061163c565b306001600160a01b0382160361084a5760405162461bcd60e51b815260040161056690611668565b3360009081526006602052604090205460ff166108935760405162461bcd60e51b815260206004820152600760248201526610b6b4b73a32b960c91b6044820152606401610566565b60008261089f60025490565b6108a9919061169f565b90506a52b7d2dcc80cd2e40000008111156108f75760405162461bcd60e51b815260206004820152600e60248201526d737570706c79206973206d61782160901b6044820152606401610566565b610901848461115a565b6040518381526001600160a01b038516906000907fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f89060200160405180910390a350505050565b6109506110a8565b6107f96000611219565b6109626110a8565b6107f9611273565b60606004805461044990611608565b6109816110a8565b806001600160a01b0381166109a85760405162461bcd60e51b81526004016105669061163c565b306001600160a01b038216036109d05760405162461bcd60e51b815260040161056690611668565b6001600160a01b03821660009081526007602052604090205460ff1615610a2d5760405162461bcd60e51b81526020600482015260116024820152701a185cc81a5b881dda1a5d19481b1a5cdd607a1b6044820152606401610566565b6001600160a01b038216600081815260076020526040808220805460ff191660011790555133917f70a380f431974c4a702597b5a84db4fd82b46c6c22bbece2f7a2ace9b4f2407191a35050565b610a836110a8565b6001600160a01b03811660009081526006602052604090205460ff1615610ad85760405162461bcd60e51b815260206004820152600960248201526834b99036b4b73a32b960b91b6044820152606401610566565b6001600160a01b038116600081815260066020908152604091829020805460ff1916600117905590519182527f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab91016105bc565b60003381610b3a8286610cb3565b905083811015610b9a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610566565b6104ff8286868403610e19565b6000336104da818585610fb7565b610bbd6110a8565b806001600160a01b038116610be45760405162461bcd60e51b81526004016105669061163c565b306001600160a01b03821603610c0c5760405162461bcd60e51b815260040161056690611668565b6001600160a01b03821660009081526007602052604090205460ff16610c685760405162461bcd60e51b81526020600482015260116024820152701b9bdd081a5b881dda1a5d19481b1a5cdd607a1b6044820152606401610566565b6001600160a01b038216600081815260076020526040808220805460ff191690555133917f4a1cd3dad39d738320ad544b9d523ba6ee01375228a912e5ebbe7ed7f52c3c0c91a35050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ce66110a8565b6001600160a01b038116610d4b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610566565b610d5481611219565b50565b6000610d616110a8565b816001600160a01b038116610d885760405162461bcd60e51b81526004016105669061163c565b306001600160a01b03821603610db05760405162461bcd60e51b815260040161056690611668565b3060009081526020819052604090205480610e025760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b6044820152606401610566565b610e0d308583610fb7565b60019250505b50919050565b6001600160a01b038316610e7b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610566565b6001600160a01b038216610edc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610566565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f498484610cb3565b90506000198114610fb15781811015610fa45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610566565b610fb18484848403610e19565b50505050565b60055460ff161561102f576001600160a01b03831660009081526007602052604090205460ff1661102a5760405162461bcd60e51b815260206004820152601b60248201527f2766726f6d27206973206e6f7420696e207768697465206c69737400000000006044820152606401610566565b611098565b6001600160a01b03831660009081526008602052604090205460ff16156110985760405162461bcd60e51b815260206004820152601760248201527f2766726f6d2720697320696e20626c61636b206c6973740000000000000000006044820152606401610566565b6110a38383836112b0565b505050565b6005546001600160a01b036101009091041633146107f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610566565b611110611454565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166111b05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610566565b80600260008282546111c2919061169f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61127b61149d565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861113d3390565b6001600160a01b0383166113145760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610566565b6001600160a01b0382166113765760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610566565b6001600160a01b038316600090815260208190526040902054818110156113ee5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610566565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fb1565b60055460ff166107f95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610566565b60055460ff16156107f95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610566565b600060208083528351808285015260005b81811015611510578581018301518582016040015282016114f4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461154857600080fd5b919050565b6000806040838503121561156057600080fd5b61156983611531565b946020939093013593505050565b60006020828403121561158957600080fd5b61159282611531565b9392505050565b6000806000606084860312156115ae57600080fd5b6115b784611531565b92506115c560208501611531565b9150604084013590509250925092565b600080604083850312156115e857600080fd5b6115f183611531565b91506115ff60208401611531565b90509250929050565b600181811c9082168061161c57607f821691505b602082108103610e1357634e487b7160e01b600052602260045260246000fd5b602080825260129082015271061646472657373206973206e6f74203078360741b604082015260600190565b60208082526017908201527f61646472657373206973206e6f7420636f6e7472616374000000000000000000604082015260600190565b808201808211156104e057634e487b7160e01b600052601160045260246000fdfea26469706673582212206674536bcc37732f8614b1f23b18cea9669d2208741760f24e24c2535309010f64736f6c63430008130033
Deployed Bytecode Sourcemap
327:4225:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:7;;1162:22;1144:41;;1132:2;1117:18;4431:197:2;1004:187:7;638:47:6;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3242:106:2;3329:12;;3242:106;;;1533:25:7;;;1521:2;1506:18;3242:106:2;1387:177:7;5190:286:2;;;;;;:::i;:::-;;:::i;3184:186:6:-;;;;;;:::i;:::-;;:::i;:::-;;3091:91:2;;;3173:2;2044:36:7;;2032:2;2017:18;3091:91:2;1902:184:7;3966:289:6;;;;;;:::i;:::-;;:::i;420:59::-;;457:22;420:59;;501:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;5871:234:2;;;;;;:::i;:::-;;:::i;4261:289:6:-;;;;;;:::i;:::-;;:::i;2511:71::-;;;:::i;2634:359::-;;;;;;:::i;:::-;;:::i;1615:84:1:-;1685:7;;;;1615:84;;3406:125:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3506:18:2;3480:7;3506:18;;;;;;;;;;;;3406:125;1831:101:0;;;:::i;2438:67:6:-;;;:::i;1201:85:0:-;1273:6;;;;;-1:-1:-1;;;;;1273:6:0;1201:85;;-1:-1:-1;;;;;2255:32:7;;;2237:51;;2225:2;2210:18;1201:85:0;2091:203:7;2365:102:2;;;:::i;3376:289:6:-;;;;;;:::i;:::-;;:::i;2999:179::-;;;;;;:::i;:::-;;:::i;6592:427:2:-;;;;;;:::i;:::-;;:::i;3727:189::-;;;;;;:::i;:::-;;:::i;3671:289:6:-;;;;;;:::i;:::-;;:::i;3974:149:2:-;;;;;;:::i;:::-;;:::i;2081:198:0:-;;;;;;:::i;:::-;;:::i;2120:312:6:-;;;;;;:::i;:::-;;:::i;566:47::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2154:98:2;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;719:10:5;4568:32:2;719:10:5;4584:7:2;4593:6;4568:8;:32::i;:::-;4617:4;4610:11;;;4431:197;;;;;:::o;5190:286::-;5317:4;719:10:5;5373:38:2;5389:4;719:10:5;5404:6:2;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;-1:-1:-1;5465:4:2;;5190:286;-1:-1:-1;;;;5190:286:2:o;3184:186:6:-;1094:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;3260:17:6;::::1;;::::0;;;:8:::1;:17;::::0;;;;;::::1;;3252:43;;;::::0;-1:-1:-1;;;3252:43:6;;3151:2:7;3252:43:6::1;::::0;::::1;3133:21:7::0;3190:2;3170:18;;;3163:30;-1:-1:-1;;;3209:18:7;;;3202:43;3262:18;;3252:43:6::1;;;;;;;;;-1:-1:-1::0;;;;;3305:17:6;::::1;3325:5;3305:17:::0;;;:8:::1;:17;::::0;;;;;;;;:25;;-1:-1:-1;;3305:25:6::1;::::0;;3345:18;;2237:51:7;;;3345:18:6::1;::::0;2210::7;3345::6::1;;;;;;;;3184:186:::0;:::o;3966:289::-;1094:13:0;:11;:13::i;:::-;4058::6;-1:-1:-1;;;;;1316:20:6;::::1;1308:51;;;;-1:-1:-1::0;;;1308:51:6::1;;;;;;;:::i;:::-;1393:4;-1:-1:-1::0;;;;;1377:21:6;::::1;::::0;1369:57:::1;;;;-1:-1:-1::0;;;1369:57:6::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4092:30:6;::::2;;::::0;;;:15:::2;:30;::::0;;;;;::::2;;4091:31;4083:61;;;::::0;-1:-1:-1;;;4083:61:6;;4192:2:7;4083:61:6::2;::::0;::::2;4174:21:7::0;4231:2;4211:18;;;4204:30;-1:-1:-1;;;4250:18:7;;;4243:47;4307:18;;4083:61:6::2;3990:341:7::0;4083:61:6::2;-1:-1:-1::0;;;;;4154:30:6;::::2;;::::0;;;:15:::2;:30;::::0;;;;;:37;;-1:-1:-1;;4154:37:6::2;4187:4;4154:37;::::0;;4206:42;4222:10:::2;::::0;4206:42:::2;::::0;::::2;1117:1:0::1;3966:289:6::0;:::o;5871:234:2:-;5959:4;719:10:5;6013:64:2;719:10:5;6029:7:2;6066:10;6038:25;719:10:5;6029:7:2;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;4261:289:6:-;1094:13:0;:11;:13::i;:::-;4353::6;-1:-1:-1;;;;;1316:20:6;::::1;1308:51;;;;-1:-1:-1::0;;;1308:51:6::1;;;;;;;:::i;:::-;1393:4;-1:-1:-1::0;;;;;1377:21:6;::::1;::::0;1369:57:::1;;;;-1:-1:-1::0;;;1369:57:6::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4386:30:6;::::2;;::::0;;;:15:::2;:30;::::0;;;;;::::2;;4378:60;;;::::0;-1:-1:-1;;;4378:60:6;;4765:2:7;4378:60:6::2;::::0;::::2;4747:21:7::0;4804:2;4784:18;;;4777:30;-1:-1:-1;;;4823:18:7;;;4816:47;4880:18;;4378:60:6::2;4563:341:7::0;4378:60:6::2;-1:-1:-1::0;;;;;4448:30:6;::::2;4481:5;4448:30:::0;;;:15:::2;:30;::::0;;;;;:38;;-1:-1:-1;;4448:38:6::2;::::0;;4501:42;4517:10:::2;::::0;4501:42:::2;::::0;::::2;1117:1:0::1;4261:289:6::0;:::o;2511:71::-;1094:13:0;:11;:13::i;:::-;2559:16:6::1;:14;:16::i;:::-;2511:71::o:0;2634:359::-;2725:7;-1:-1:-1;;;;;1316:20:6;;1308:51;;;;-1:-1:-1;;;1308:51:6;;;;;;;:::i;:::-;1393:4;-1:-1:-1;;;;;1377:21:6;;;1369:57;;;;-1:-1:-1;;;1369:57:6;;;;;;;:::i;:::-;2761:10:::1;2752:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;2744:40;;;::::0;-1:-1:-1;;;2744:40:6;;5111:2:7;2744:40:6::1;::::0;::::1;5093:21:7::0;5150:1;5130:18;;;5123:29;-1:-1:-1;;;5168:18:7;;;5161:37;5215:18;;2744:40:6::1;4909:330:7::0;2744:40:6::1;2795:21;2835:6;2819:13;3329:12:2::0;;;3242:106;2819:13:6::1;:22;;;;:::i;:::-;2795:46;;457:22;2859:13;:27;;2851:54;;;::::0;-1:-1:-1;;;2851:54:6;;5446:2:7;2851:54:6::1;::::0;::::1;5428:21:7::0;5485:2;5465:18;;;5458:30;-1:-1:-1;;;5504:18:7;;;5497:44;5558:18;;2851:54:6::1;5244:338:7::0;2851:54:6::1;2916:22;2922:7;2931:6;2916:5;:22::i;:::-;2953:33;::::0;1533:25:7;;;-1:-1:-1;;;;;2953:33:6;::::1;::::0;2966:1:::1;::::0;2953:33:::1;::::0;1521:2:7;1506:18;2953:33:6::1;;;;;;;2734:259;2634:359:::0;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;2438:67:6:-:0;1094:13:0;:11;:13::i;:::-;2484:14:6::1;:12;:14::i;2365:102:2:-:0;2421:13;2453:7;2446:14;;;;;:::i;3376:289:6:-;1094:13:0;:11;:13::i;:::-;3468::6;-1:-1:-1;;;;;1316:20:6;::::1;1308:51;;;;-1:-1:-1::0;;;1308:51:6::1;;;;;;;:::i;:::-;1393:4;-1:-1:-1::0;;;;;1377:21:6;::::1;::::0;1369:57:::1;;;;-1:-1:-1::0;;;1369:57:6::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3502:30:6;::::2;;::::0;;;:15:::2;:30;::::0;;;;;::::2;;3501:31;3493:61;;;::::0;-1:-1:-1;;;3493:61:6;;5789:2:7;3493:61:6::2;::::0;::::2;5771:21:7::0;5828:2;5808:18;;;5801:30;-1:-1:-1;;;5847:18:7;;;5840:47;5904:18;;3493:61:6::2;5587:341:7::0;3493:61:6::2;-1:-1:-1::0;;;;;3564:30:6;::::2;;::::0;;;:15:::2;:30;::::0;;;;;:37;;-1:-1:-1;;3564:37:6::2;3597:4;3564:37;::::0;;3616:42;3632:10:::2;::::0;3616:42:::2;::::0;::::2;1117:1:0::1;3376:289:6::0;:::o;2999:179::-;1094:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;3073:17:6;::::1;;::::0;;;:8:::1;:17;::::0;;;;;::::1;;3072:18;3064:40;;;::::0;-1:-1:-1;;;3064:40:6;;6135:2:7;3064:40:6::1;::::0;::::1;6117:21:7::0;6174:1;6154:18;;;6147:29;-1:-1:-1;;;6192:18:7;;;6185:39;6241:18;;3064:40:6::1;5933:332:7::0;3064:40:6::1;-1:-1:-1::0;;;;;3114:17:6;::::1;;::::0;;;:8:::1;:17;::::0;;;;;;;;:24;;-1:-1:-1;;3114:24:6::1;3134:4;3114:24;::::0;;3153:18;;2237:51:7;;;3153:18:6::1;::::0;2210::7;3153::6::1;2091:203:7::0;6592:427:2;6685:4;719:10:5;6685:4:2;6766:25;719:10:5;6783:7:2;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;-1:-1:-1;;;6801:85:2;;6472:2:7;6801:85:2;;;6454:21:7;6511:2;6491:18;;;6484:30;6550:34;6530:18;;;6523:62;-1:-1:-1;;;6601:18:7;;;6594:35;6646:19;;6801:85:2;6270:401:7;6801:85:2;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;3727:189::-;3806:4;719:10:5;3860:28:2;719:10:5;3877:2:2;3881:6;3860:9;:28::i;3671:289:6:-;1094:13:0;:11;:13::i;:::-;3763::6;-1:-1:-1;;;;;1316:20:6;::::1;1308:51;;;;-1:-1:-1::0;;;1308:51:6::1;;;;;;;:::i;:::-;1393:4;-1:-1:-1::0;;;;;1377:21:6;::::1;::::0;1369:57:::1;;;;-1:-1:-1::0;;;1369:57:6::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3796:30:6;::::2;;::::0;;;:15:::2;:30;::::0;;;;;::::2;;3788:60;;;::::0;-1:-1:-1;;;3788:60:6;;6878:2:7;3788:60:6::2;::::0;::::2;6860:21:7::0;6917:2;6897:18;;;6890:30;-1:-1:-1;;;6936:18:7;;;6929:47;6993:18;;3788:60:6::2;6676:341:7::0;3788:60:6::2;-1:-1:-1::0;;;;;3858:30:6;::::2;3891:5;3858:30:::0;;;:15:::2;:30;::::0;;;;;:38;;-1:-1:-1;;3858:38:6::2;::::0;;3911:42;3927:10:::2;::::0;3911:42:::2;::::0;::::2;1117:1:0::1;3671:289:6::0;:::o;3974:149:2:-;-1:-1:-1;;;;;4089:18:2;;;4063:7;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3974:149::o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;7224:2:7;2161:73:0::1;::::0;::::1;7206:21:7::0;7263:2;7243:18;;;7236:30;7302:34;7282:18;;;7275:62;-1:-1:-1;;;7353:18:7;;;7346:36;7399:19;;2161:73:0::1;7022:402:7::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;2120:312:6:-;2221:4;1094:13:0;:11;:13::i;:::-;2207:3:6;-1:-1:-1;;;;;1316:20:6;::::1;1308:51;;;;-1:-1:-1::0;;;1308:51:6::1;;;;;;;:::i;:::-;1393:4;-1:-1:-1::0;;;;;1377:21:6;::::1;::::0;1369:57:::1;;;;-1:-1:-1::0;;;1369:57:6::1;;;;;;;:::i;:::-;2281:4:::2;2237:23;3506:18:2::0;;;;;;;;;;;2305:19:6;2297:50:::2;;;::::0;-1:-1:-1;;;2297:50:6;;7631:2:7;2297:50:6::2;::::0;::::2;7613:21:7::0;7670:2;7650:18;;;7643:30;-1:-1:-1;;;7689:18:7;;;7682:48;7747:18;;2297:50:6::2;7429:342:7::0;2297:50:6::2;2358:46;2376:4;2383:3;2388:15;2358:9;:46::i;:::-;2421:4;2414:11;;;1436:1;1117::0::1;2120:312:6::0;;;:::o;10504:370:2:-;-1:-1:-1;;;;;10635:19:2;;10627:68;;;;-1:-1:-1;;;10627:68:2;;7978:2:7;10627:68:2;;;7960:21:7;8017:2;7997:18;;;7990:30;8056:34;8036:18;;;8029:62;-1:-1:-1;;;8107:18:7;;;8100:34;8151:19;;10627:68:2;7776:400:7;10627:68:2;-1:-1:-1;;;;;10713:21:2;;10705:68;;;;-1:-1:-1;;;10705:68:2;;8383:2:7;10705:68:2;;;8365:21:7;8422:2;8402:18;;;8395:30;8461:34;8441:18;;;8434:62;-1:-1:-1;;;8512:18:7;;;8505:32;8554:19;;10705:68:2;8181:398:7;10705:68:2;-1:-1:-1;;;;;10784:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10835:32;;1533:25:7;;;10835:32:2;;1506:18:7;10835:32:2;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;-1:-1:-1;;11351:16:2;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;-1:-1:-1;;;11404:68:2;;8786:2:7;11404:68:2;;;8768:21:7;8825:2;8805:18;;;8798:30;8864:31;8844:18;;;8837:59;8913:18;;11404:68:2;8584:353:7;11404:68:2;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11275:321;11155:441;;;:::o;1637:423:6:-;1685:7:1;;;;1755:257:6;;;-1:-1:-1;;;;;1827:21:6;;;;;;:15;:21;;;;;;;;1819:61;;;;-1:-1:-1;;;1819:61:6;;9144:2:7;1819:61:6;;;9126:21:7;9183:2;9163:18;;;9156:30;9222:29;9202:18;;;9195:57;9269:18;;1819:61:6;8942:351:7;1819:61:6;1755:257;;;-1:-1:-1;;;;;1952:21:6;;;;;;:15;:21;;;;;;;;1951:22;1943:58;;;;-1:-1:-1;;;1943:58:6;;9500:2:7;1943:58:6;;;9482:21:7;9539:2;9519:18;;;9512:30;9578:25;9558:18;;;9551:53;9621:18;;1943:58:6;9298:347:7;1943:58:6;2021:32;2037:4;2043:2;2047:5;2021:15;:32::i;:::-;1637:423;;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;;;;;719:10:5;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;9852:2:7;1414:68:0;;;9834:21:7;;;9871:18;;;9864:30;9930:34;9910:18;;;9903:62;9982:18;;1414:68:0;9650:356:7;2433:117:1;1486:16;:14;:16::i;:::-;2491:7:::1;:15:::0;;-1:-1:-1;;2491:15:1::1;::::0;;2521:22:::1;719:10:5::0;2530:12:1::1;2521:22;::::0;-1:-1:-1;;;;;2255:32:7;;;2237:51;;2225:2;2210:18;2521:22:1::1;;;;;;;2433:117::o:0;8567:535:2:-;-1:-1:-1;;;;;8650:21:2;;8642:65;;;;-1:-1:-1;;;8642:65:2;;10213:2:7;8642:65:2;;;10195:21:7;10252:2;10232:18;;;10225:30;10291:33;10271:18;;;10264:61;10342:18;;8642:65:2;10011:355:7;8642:65:2;8794:6;8778:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8946:18:2;;:9;:18;;;;;;;;;;;:28;;;;;;8999:37;1533:25:7;;;8999:37:2;;1506:18:7;8999:37:2;;;;;;;8567:535;;:::o;2433:187:0:-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;2525:6;2541:17;;;-1:-1:-1;;;;;;2541:17:0;;;;;;2573:40;;2525:6;;;;;;;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;2186:115:1:-;1239:19;:17;:19::i;:::-;2245:7:::1;:14:::0;;-1:-1:-1;;2245:14:1::1;2255:4;2245:14;::::0;;2274:20:::1;2281:12;719:10:5::0;;640:96;7473:818:2;-1:-1:-1;;;;;7599:18:2;;7591:68;;;;-1:-1:-1;;;7591:68:2;;10573:2:7;7591:68:2;;;10555:21:7;10612:2;10592:18;;;10585:30;10651:34;10631:18;;;10624:62;-1:-1:-1;;;10702:18:7;;;10695:35;10747:19;;7591:68:2;10371:401:7;7591:68:2;-1:-1:-1;;;;;7677:16:2;;7669:64;;;;-1:-1:-1;;;7669:64:2;;10979:2:7;7669:64:2;;;10961:21:7;11018:2;10998:18;;;10991:30;11057:34;11037:18;;;11030:62;-1:-1:-1;;;11108:18:7;;;11101:33;11151:19;;7669:64:2;10777:399:7;7669:64:2;-1:-1:-1;;;;;7815:15:2;;7793:19;7815:15;;;;;;;;;;;7848:21;;;;7840:72;;;;-1:-1:-1;;;7840:72:2;;11383:2:7;7840:72:2;;;11365:21:7;11422:2;11402:18;;;11395:30;11461:34;11441:18;;;11434:62;-1:-1:-1;;;11512:18:7;;;11505:36;11558:19;;7840:72:2;11181:402:7;7840:72:2;-1:-1:-1;;;;;7946:15:2;;;:9;:15;;;;;;;;;;;7964:20;;;7946:38;;8161:13;;;;;;;;;;:23;;;;;;8210:26;;1533:25:7;;;8161:13:2;;8210:26;;1506:18:7;8210:26:2;;;;;;;8247:37;1637:423:6;1945:106:1;1685:7;;;;2003:41;;;;-1:-1:-1;;;2003:41:1;;11790:2:7;2003:41:1;;;11772:21:7;11829:2;11809:18;;;11802:30;-1:-1:-1;;;11848:18:7;;;11841:50;11908:18;;2003:41:1;11588:344:7;1767:106:1;1685:7;;;;1836:9;1828:38;;;;-1:-1:-1;;;1828:38:1;;12139:2:7;1828:38:1;;;12121:21:7;12178:2;12158:18;;;12151:30;-1:-1:-1;;;12197:18:7;;;12190:46;12253:18;;1828:38:1;11937:340:7;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:7;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:7:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:7:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;3291:342;3493:2;3475:21;;;3532:2;3512:18;;;3505:30;-1:-1:-1;;;3566:2:7;3551:18;;3544:48;3624:2;3609:18;;3291:342::o;3638:347::-;3840:2;3822:21;;;3879:2;3859:18;;;3852:30;3918:25;3913:2;3898:18;;3891:53;3976:2;3961:18;;3638:347::o;4336:222::-;4401:9;;;4422:10;;;4419:133;;;4474:10;4469:3;4465:20;4462:1;4455:31;4509:4;4506:1;4499:15;4537:4;4534:1;4527:15
Swarm Source
ipfs://6674536bcc37732f8614b1f23b18cea9669d2208741760f24e24c2535309010f
Loading...
Loading
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.