ERC-20
NFT
Overview
Max Total Supply
99,981,495 HBC
Holders
143 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
597.653742592541102424 HBCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
HeartbreakCoin
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-04 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts v4.4.0 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @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 Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { 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()); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.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 {ERC20PresetMinterPauser}. * * 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 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override 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 virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `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; _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; } _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 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 {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } // File: contracts/HeartbreakCoin.sol pragma solidity ^0.8.2; contract HeartbreakCoin is ERC20, ERC20Burnable, Pausable, Ownable { constructor() ERC20("Heartbreak Coin", "HBC") { _mint(msg.sender, 100000000 * 10 ** decimals()); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"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":[{"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"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":"to","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":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600f81526020016e2432b0b93a313932b0b59021b7b4b760891b8152506040518060400160405280600381526020016248424360e81b81525081600390805190602001906200006e92919062000281565b5080516200008490600490602084019062000281565b50506005805460ff19169055506200009c33620000cb565b620000c533620000af6012600a6200038b565b620000bf906305f5e10062000459565b62000125565b620004ce565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001815760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200018f600083836200021c565b8060026000828254620001a3919062000327565b90915550506001600160a01b03821660009081526020819052604081208054839290620001d290849062000327565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60055460ff1615620002645760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000178565b6200027c8383836200027c60201b620005b61760201c565b505050565b8280546200028f906200047b565b90600052602060002090601f016020900481019282620002b35760008555620002fe565b82601f10620002ce57805160ff1916838001178555620002fe565b82800160010185558215620002fe579182015b82811115620002fe578251825591602001919060010190620002e1565b506200030c92915062000310565b5090565b5b808211156200030c576000815560010162000311565b600082198211156200033d576200033d620004b8565b500190565b600181815b8085111562000383578160001904821115620003675762000367620004b8565b808516156200037557918102915b93841c939080029062000347565b509250929050565b60006200039c60ff841683620003a3565b9392505050565b600082620003b45750600162000453565b81620003c35750600062000453565b8160018114620003dc5760028114620003e75762000407565b600191505062000453565b60ff841115620003fb57620003fb620004b8565b50506001821b62000453565b5060208310610133831016604e8410600b84101617156200042c575081810a62000453565b62000438838362000342565b80600019048211156200044f576200044f620004b8565b0290505b92915050565b6000816000190483118215151615620004765762000476620004b8565b500290565b600181811c908216806200049057607f821691505b60208210811415620004b257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61106780620004de6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610269578063a457c2d714610271578063a9059cbb14610284578063dd62ed3e14610297578063f2fde38b146102d057600080fd5b806370a08231146101f4578063715018a61461021d57806379cc6790146102255780638456cb59146102385780638da5cb5b1461024057600080fd5b806339509351116100f457806339509351146101a65780633f4ba83a146101b957806340c10f19146101c357806342966c68146101d65780635c975abb146101e957600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102e3565b6040516101469190610f27565b60405180910390f35b61016261015d366004610ee4565b610375565b6040519015158152602001610146565b6002545b604051908152602001610146565b610162610192366004610ea8565b61038b565b60405160128152602001610146565b6101626101b4366004610ee4565b61043a565b6101c1610476565b005b6101c16101d1366004610ee4565b6104b0565b6101c16101e4366004610f0e565b6104ee565b60055460ff16610162565b610176610202366004610e53565b6001600160a01b031660009081526020819052604090205490565b6101c16104fb565b6101c1610233366004610ee4565b610535565b6101c16105bb565b60055461010090046001600160a01b03166040516001600160a01b039091168152602001610146565b6101396105f3565b61016261027f366004610ee4565b610602565b610162610292366004610ee4565b61069b565b6101766102a5366004610e75565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101c16102de366004610e53565b6106a8565b6060600380546102f290610fe0565b80601f016020809104026020016040519081016040528092919081815260200182805461031e90610fe0565b801561036b5780601f106103405761010080835404028352916020019161036b565b820191906000526020600020905b81548152906001019060200180831161034e57829003601f168201915b5050505050905090565b6000610382338484610746565b50600192915050565b600061039884848461086a565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104225760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61042f8533858403610746565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610382918590610471908690610fb1565b610746565b6005546001600160a01b036101009091041633146104a65760405162461bcd60e51b815260040161041990610f7c565b6104ae610a44565b565b6005546001600160a01b036101009091041633146104e05760405162461bcd60e51b815260040161041990610f7c565b6104ea8282610ad7565b5050565b6104f83382610bc2565b50565b6005546001600160a01b0361010090910416331461052b5760405162461bcd60e51b815260040161041990610f7c565b6104ae6000610d1c565b600061054183336102a5565b90508181101561059f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610419565b6105ac8333848403610746565b6105b68383610bc2565b505050565b6005546001600160a01b036101009091041633146105eb5760405162461bcd60e51b815260040161041990610f7c565b6104ae610d76565b6060600480546102f290610fe0565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610419565b6106913385858403610746565b5060019392505050565b600061038233848461086a565b6005546001600160a01b036101009091041633146106d85760405162461bcd60e51b815260040161041990610f7c565b6001600160a01b03811661073d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610419565b6104f881610d1c565b6001600160a01b0383166107a85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610419565b6001600160a01b0382166108095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610419565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108ce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610419565b6001600160a01b0382166109305760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610419565b61093b838383610df1565b6001600160a01b038316600090815260208190526040902054818110156109b35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610419565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109ea908490610fb1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a3691815260200190565b60405180910390a350505050565b60055460ff16610a8d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610419565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610b2d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610419565b610b3960008383610df1565b8060026000828254610b4b9190610fb1565b90915550506001600160a01b03821660009081526020819052604081208054839290610b78908490610fb1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c225760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610419565b610c2e82600083610df1565b6001600160a01b03821660009081526020819052604090205481811015610ca25760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610419565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610cd1908490610fc9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff1615610dbc5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610419565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610aba3390565b60055460ff16156105b65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610419565b80356001600160a01b0381168114610e4e57600080fd5b919050565b600060208284031215610e6557600080fd5b610e6e82610e37565b9392505050565b60008060408385031215610e8857600080fd5b610e9183610e37565b9150610e9f60208401610e37565b90509250929050565b600080600060608486031215610ebd57600080fd5b610ec684610e37565b9250610ed460208501610e37565b9150604084013590509250925092565b60008060408385031215610ef757600080fd5b610f0083610e37565b946020939093013593505050565b600060208284031215610f2057600080fd5b5035919050565b600060208083528351808285015260005b81811015610f5457858101830151858201604001528201610f38565b81811115610f66576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610fc457610fc461101b565b500190565b600082821015610fdb57610fdb61101b565b500390565b600181811c90821680610ff457607f821691505b6020821081141561101557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212200874d630ed6785c088107636d7426da542346267cbf1f71453b4507fd538a2a364736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610269578063a457c2d714610271578063a9059cbb14610284578063dd62ed3e14610297578063f2fde38b146102d057600080fd5b806370a08231146101f4578063715018a61461021d57806379cc6790146102255780638456cb59146102385780638da5cb5b1461024057600080fd5b806339509351116100f457806339509351146101a65780633f4ba83a146101b957806340c10f19146101c357806342966c68146101d65780635c975abb146101e957600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102e3565b6040516101469190610f27565b60405180910390f35b61016261015d366004610ee4565b610375565b6040519015158152602001610146565b6002545b604051908152602001610146565b610162610192366004610ea8565b61038b565b60405160128152602001610146565b6101626101b4366004610ee4565b61043a565b6101c1610476565b005b6101c16101d1366004610ee4565b6104b0565b6101c16101e4366004610f0e565b6104ee565b60055460ff16610162565b610176610202366004610e53565b6001600160a01b031660009081526020819052604090205490565b6101c16104fb565b6101c1610233366004610ee4565b610535565b6101c16105bb565b60055461010090046001600160a01b03166040516001600160a01b039091168152602001610146565b6101396105f3565b61016261027f366004610ee4565b610602565b610162610292366004610ee4565b61069b565b6101766102a5366004610e75565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101c16102de366004610e53565b6106a8565b6060600380546102f290610fe0565b80601f016020809104026020016040519081016040528092919081815260200182805461031e90610fe0565b801561036b5780601f106103405761010080835404028352916020019161036b565b820191906000526020600020905b81548152906001019060200180831161034e57829003601f168201915b5050505050905090565b6000610382338484610746565b50600192915050565b600061039884848461086a565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104225760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61042f8533858403610746565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610382918590610471908690610fb1565b610746565b6005546001600160a01b036101009091041633146104a65760405162461bcd60e51b815260040161041990610f7c565b6104ae610a44565b565b6005546001600160a01b036101009091041633146104e05760405162461bcd60e51b815260040161041990610f7c565b6104ea8282610ad7565b5050565b6104f83382610bc2565b50565b6005546001600160a01b0361010090910416331461052b5760405162461bcd60e51b815260040161041990610f7c565b6104ae6000610d1c565b600061054183336102a5565b90508181101561059f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610419565b6105ac8333848403610746565b6105b68383610bc2565b505050565b6005546001600160a01b036101009091041633146105eb5760405162461bcd60e51b815260040161041990610f7c565b6104ae610d76565b6060600480546102f290610fe0565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610419565b6106913385858403610746565b5060019392505050565b600061038233848461086a565b6005546001600160a01b036101009091041633146106d85760405162461bcd60e51b815260040161041990610f7c565b6001600160a01b03811661073d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610419565b6104f881610d1c565b6001600160a01b0383166107a85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610419565b6001600160a01b0382166108095760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610419565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108ce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610419565b6001600160a01b0382166109305760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610419565b61093b838383610df1565b6001600160a01b038316600090815260208190526040902054818110156109b35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610419565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109ea908490610fb1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a3691815260200190565b60405180910390a350505050565b60055460ff16610a8d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610419565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610b2d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610419565b610b3960008383610df1565b8060026000828254610b4b9190610fb1565b90915550506001600160a01b03821660009081526020819052604081208054839290610b78908490610fb1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c225760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610419565b610c2e82600083610df1565b6001600160a01b03821660009081526020819052604090205481811015610ca25760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610419565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610cd1908490610fc9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff1615610dbc5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610419565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610aba3390565b60055460ff16156105b65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610419565b80356001600160a01b0381168114610e4e57600080fd5b919050565b600060208284031215610e6557600080fd5b610e6e82610e37565b9392505050565b60008060408385031215610e8857600080fd5b610e9183610e37565b9150610e9f60208401610e37565b90509250929050565b600080600060608486031215610ebd57600080fd5b610ec684610e37565b9250610ed460208501610e37565b9150604084013590509250925092565b60008060408385031215610ef757600080fd5b610f0083610e37565b946020939093013593505050565b600060208284031215610f2057600080fd5b5035919050565b600060208083528351808285015260005b81811015610f5457858101830151858201604001528201610f38565b81811115610f66576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610fc457610fc461101b565b500190565b600082821015610fdb57610fdb61101b565b500390565b600181811c90821680610ff457607f821691505b6020821081141561101557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212200874d630ed6785c088107636d7426da542346267cbf1f71453b4507fd538a2a364736f6c63430008070033
Deployed Bytecode Sourcemap
22895:641:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11503:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13670:169;;;;;;:::i;:::-;;:::i;:::-;;;1798:14:1;;1791:22;1773:41;;1761:2;1746:18;13670:169:0;1633:187:1;12623:108:0;12711:12;;12623:108;;;8445:25:1;;;8433:2;8418:18;12623:108:0;8299:177:1;14321:492:0;;;;;;:::i;:::-;;:::i;12465:93::-;;;12548:2;8623:36:1;;8611:2;8596:18;12465:93:0;8481:184:1;15222:215:0;;;;;;:::i;:::-;;:::i;23158:65::-;;;:::i;:::-;;23231:95;;;;;;:::i;:::-;;:::i;22032:91::-;;;;;;:::i;:::-;;:::i;4555:86::-;4626:7;;;;4555:86;;12794:127;;;;;;:::i;:::-;-1:-1:-1;;;;;12895:18:0;12868:7;12895:18;;;;;;;;;;;;12794:127;2606:103;;;:::i;22442:368::-;;;;;;:::i;:::-;;:::i;23089:61::-;;;:::i;1955:87::-;2028:6;;;;;-1:-1:-1;;;;;2028:6:0;1955:87;;-1:-1:-1;;;;;1589:32:1;;;1571:51;;1559:2;1544:18;1955:87:0;1425:203:1;11722:104:0;;;:::i;15940:413::-;;;;;;:::i;:::-;;:::i;13134:175::-;;;;;;:::i;:::-;;:::i;13372:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13488:18:0;;;13461:7;13488:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13372:151;2864:201;;;;;;:::i;:::-;;:::i;11503:100::-;11557:13;11590:5;11583:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11503:100;:::o;13670:169::-;13753:4;13770:39;759:10;13793:7;13802:6;13770:8;:39::i;:::-;-1:-1:-1;13827:4:0;13670:169;;;;:::o;14321:492::-;14461:4;14478:36;14488:6;14496:9;14507:6;14478:9;:36::i;:::-;-1:-1:-1;;;;;14554:19:0;;14527:24;14554:19;;;:11;:19;;;;;;;;759:10;14554:33;;;;;;;;14606:26;;;;14598:79;;;;-1:-1:-1;;;14598:79:0;;5347:2:1;14598:79:0;;;5329:21:1;5386:2;5366:18;;;5359:30;5425:34;5405:18;;;5398:62;-1:-1:-1;;;5476:18:1;;;5469:38;5524:19;;14598:79:0;;;;;;;;;14713:57;14722:6;759:10;14763:6;14744:16;:25;14713:8;:57::i;:::-;-1:-1:-1;14801:4:0;;14321:492;-1:-1:-1;;;;14321:492:0:o;15222:215::-;759:10;15310:4;15359:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15359:34:0;;;;;;;;;;15310:4;;15327:80;;15350:7;;15359:47;;15396:10;;15359:47;:::i;:::-;15327:8;:80::i;23158:65::-;2028:6;;-1:-1:-1;;;;;2028:6:0;;;;;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;23205:10:::1;:8;:10::i;:::-;23158:65::o:0;23231:95::-;2028:6;;-1:-1:-1;;;;;2028:6:0;;;;;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;23301:17:::1;23307:2;23311:6;23301:5;:17::i;:::-;23231:95:::0;;:::o;22032:91::-;22088:27;759:10;22108:6;22088:5;:27::i;:::-;22032:91;:::o;2606:103::-;2028:6;;-1:-1:-1;;;;;2028:6:0;;;;;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2671:30:::1;2698:1;2671:18;:30::i;22442:368::-:0;22519:24;22546:32;22556:7;759:10;13372:151;:::i;22546:32::-;22519:59;;22617:6;22597:16;:26;;22589:75;;;;-1:-1:-1;;;22589:75:0;;6117:2:1;22589:75:0;;;6099:21:1;6156:2;6136:18;;;6129:30;6195:34;6175:18;;;6168:62;-1:-1:-1;;;6246:18:1;;;6239:34;6290:19;;22589:75:0;5915:400:1;22589:75:0;22700:58;22709:7;759:10;22751:6;22732:16;:25;22700:8;:58::i;:::-;22780:22;22786:7;22795:6;22780:5;:22::i;:::-;22508:302;22442:368;;:::o;23089:61::-;2028:6;;-1:-1:-1;;;;;2028:6:0;;;;;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;23134:8:::1;:6;:8::i;11722:104::-:0;11778:13;11811:7;11804:14;;;;;:::i;15940:413::-;759:10;16033:4;16077:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16077:34:0;;;;;;;;;;16130:35;;;;16122:85;;;;-1:-1:-1;;;16122:85:0;;7735:2:1;16122:85:0;;;7717:21:1;7774:2;7754:18;;;7747:30;7813:34;7793:18;;;7786:62;-1:-1:-1;;;7864:18:1;;;7857:35;7909:19;;16122:85:0;7533:401:1;16122:85:0;16243:67;759:10;16266:7;16294:15;16275:16;:34;16243:8;:67::i;:::-;-1:-1:-1;16341:4:0;;15940:413;-1:-1:-1;;;15940:413:0:o;13134:175::-;13220:4;13237:42;759:10;13261:9;13272:6;13237:9;:42::i;2864:201::-;2028:6;;-1:-1:-1;;;;;2028:6:0;;;;;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;3785:2:1;2945:73:0::1;::::0;::::1;3767:21:1::0;3824:2;3804:18;;;3797:30;3863:34;3843:18;;;3836:62;-1:-1:-1;;;3914:18:1;;;3907:36;3960:19;;2945:73:0::1;3583:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;19624:380::-:0;-1:-1:-1;;;;;19760:19:0;;19752:68;;;;-1:-1:-1;;;19752:68:0;;7330:2:1;19752:68:0;;;7312:21:1;7369:2;7349:18;;;7342:30;7408:34;7388:18;;;7381:62;-1:-1:-1;;;7459:18:1;;;7452:34;7503:19;;19752:68:0;7128:400:1;19752:68:0;-1:-1:-1;;;;;19839:21:0;;19831:68;;;;-1:-1:-1;;;19831:68:0;;4192:2:1;19831:68:0;;;4174:21:1;4231:2;4211:18;;;4204:30;4270:34;4250:18;;;4243:62;-1:-1:-1;;;4321:18:1;;;4314:32;4363:19;;19831:68:0;3990:398:1;19831:68:0;-1:-1:-1;;;;;19912:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19964:32;;8445:25:1;;;19964:32:0;;8418:18:1;19964:32:0;;;;;;;19624:380;;;:::o;16843:733::-;-1:-1:-1;;;;;16983:20:0;;16975:70;;;;-1:-1:-1;;;16975:70:0;;6924:2:1;16975:70:0;;;6906:21:1;6963:2;6943:18;;;6936:30;7002:34;6982:18;;;6975:62;-1:-1:-1;;;7053:18:1;;;7046:35;7098:19;;16975:70:0;6722:401:1;16975:70:0;-1:-1:-1;;;;;17064:23:0;;17056:71;;;;-1:-1:-1;;;17056:71:0;;2629:2:1;17056:71:0;;;2611:21:1;2668:2;2648:18;;;2641:30;2707:34;2687:18;;;2680:62;-1:-1:-1;;;2758:18:1;;;2751:33;2801:19;;17056:71:0;2427:399:1;17056:71:0;17140:47;17161:6;17169:9;17180:6;17140:20;:47::i;:::-;-1:-1:-1;;;;;17224:17:0;;17200:21;17224:17;;;;;;;;;;;17260:23;;;;17252:74;;;;-1:-1:-1;;;17252:74:0;;4595:2:1;17252:74:0;;;4577:21:1;4634:2;4614:18;;;4607:30;4673:34;4653:18;;;4646:62;-1:-1:-1;;;4724:18:1;;;4717:36;4770:19;;17252:74:0;4393:402:1;17252:74:0;-1:-1:-1;;;;;17362:17:0;;;:9;:17;;;;;;;;;;;17382:22;;;17362:42;;17426:20;;;;;;;;:30;;17398:6;;17362:9;17426:30;;17398:6;;17426:30;:::i;:::-;;;;;;;;17491:9;-1:-1:-1;;;;;17474:35:0;17483:6;-1:-1:-1;;;;;17474:35:0;;17502:6;17474:35;;;;8445:25:1;;8433:2;8418:18;;8299:177;17474:35:0;;;;;;;;16964:612;16843:733;;;:::o;5614:120::-;4626:7;;;;5150:41;;;;-1:-1:-1;;;5150:41:0;;3033:2:1;5150:41:0;;;3015:21:1;3072:2;3052:18;;;3045:30;-1:-1:-1;;;3091:18:1;;;3084:50;3151:18;;5150:41:0;2831:344:1;5150:41:0;5673:7:::1;:15:::0;;-1:-1:-1;;5673:15:0::1;::::0;;5704:22:::1;759:10:::0;5713:12:::1;5704:22;::::0;-1:-1:-1;;;;;1589:32:1;;;1571:51;;1559:2;1544:18;5704:22:0::1;;;;;;;5614:120::o:0;17863:399::-;-1:-1:-1;;;;;17947:21:0;;17939:65;;;;-1:-1:-1;;;17939:65:0;;8141:2:1;17939:65:0;;;8123:21:1;8180:2;8160:18;;;8153:30;8219:33;8199:18;;;8192:61;8270:18;;17939:65:0;7939:355:1;17939:65:0;18017:49;18046:1;18050:7;18059:6;18017:20;:49::i;:::-;18095:6;18079:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;18112:18:0;;:9;:18;;;;;;;;;;:28;;18134:6;;18112:9;:28;;18134:6;;18112:28;:::i;:::-;;;;-1:-1:-1;;18156:37:0;;8445:25:1;;;-1:-1:-1;;;;;18156:37:0;;;18173:1;;18156:37;;8433:2:1;8418:18;18156:37:0;;;;;;;23231:95;;:::o;18595:591::-;-1:-1:-1;;;;;18679:21:0;;18671:67;;;;-1:-1:-1;;;18671:67:0;;6522:2:1;18671:67:0;;;6504:21:1;6561:2;6541:18;;;6534:30;6600:34;6580:18;;;6573:62;-1:-1:-1;;;6651:18:1;;;6644:31;6692:19;;18671:67:0;6320:397:1;18671:67:0;18751:49;18772:7;18789:1;18793:6;18751:20;:49::i;:::-;-1:-1:-1;;;;;18838:18:0;;18813:22;18838:18;;;;;;;;;;;18875:24;;;;18867:71;;;;-1:-1:-1;;;18867:71:0;;3382:2:1;18867:71:0;;;3364:21:1;3421:2;3401:18;;;3394:30;3460:34;3440:18;;;3433:62;-1:-1:-1;;;3511:18:1;;;3504:32;3553:19;;18867:71:0;3180:398:1;18867:71:0;-1:-1:-1;;;;;18974:18:0;;:9;:18;;;;;;;;;;18995:23;;;18974:44;;19040:12;:22;;19012:6;;18974:9;19040:22;;19012:6;;19040:22;:::i;:::-;;;;-1:-1:-1;;19080:37:0;;8445:25:1;;;19106:1:0;;-1:-1:-1;;;;;19080:37:0;;;;;8433:2:1;8418:18;19080:37:0;;;;;;;22508:302;22442:368;;:::o;3225:191::-;3318:6;;;-1:-1:-1;;;;;3335:17:0;;;3318:6;3335:17;;;-1:-1:-1;;;;;;3335:17:0;;;;;;3368:40;;3318:6;;;;;;;;3368:40;;3299:16;;3368:40;3288:128;3225:191;:::o;5355:118::-;4626:7;;;;4880:9;4872:38;;;;-1:-1:-1;;;4872:38:0;;5002:2:1;4872:38:0;;;4984:21:1;5041:2;5021:18;;;5014:30;-1:-1:-1;;;5060:18:1;;;5053:46;5116:18;;4872:38:0;4800:340:1;4872:38:0;5415:7:::1;:14:::0;;-1:-1:-1;;5415:14:0::1;5425:4;5415:14;::::0;;5445:20:::1;5452:12;759:10:::0;;679:98;23334:199;4626:7;;;;4880:9;4872:38;;;;-1:-1:-1;;;4872:38:0;;5002:2:1;4872:38:0;;;4984:21:1;5041:2;5021:18;;;5014:30;-1:-1:-1;;;5060:18:1;;;5053:46;5116:18;;4872:38:0;4800:340:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1825:597::-;1937:4;1966:2;1995;1984:9;1977:21;2027:6;2021:13;2070:6;2065:2;2054:9;2050:18;2043:34;2095:1;2105:140;2119:6;2116:1;2113:13;2105:140;;;2214:14;;;2210:23;;2204:30;2180:17;;;2199:2;2176:26;2169:66;2134:10;;2105:140;;;2263:6;2260:1;2257:13;2254:91;;;2333:1;2328:2;2319:6;2308:9;2304:22;2300:31;2293:42;2254:91;-1:-1:-1;2406:2:1;2385:15;-1:-1:-1;;2381:29:1;2366:45;;;;2413:2;2362:54;;1825:597;-1:-1:-1;;;1825:597:1:o;5554:356::-;5756:2;5738:21;;;5775:18;;;5768:30;5834:34;5829:2;5814:18;;5807:62;5901:2;5886:18;;5554:356::o;8670:128::-;8710:3;8741:1;8737:6;8734:1;8731:13;8728:39;;;8747:18;;:::i;:::-;-1:-1:-1;8783:9:1;;8670:128::o;8803:125::-;8843:4;8871:1;8868;8865:8;8862:34;;;8876:18;;:::i;:::-;-1:-1:-1;8913:9:1;;8803:125::o;8933:380::-;9012:1;9008:12;;;;9055;;;9076:61;;9130:4;9122:6;9118:17;9108:27;;9076:61;9183:2;9175:6;9172:14;9152:18;9149:38;9146:161;;;9229:10;9224:3;9220:20;9217:1;9210:31;9264:4;9261:1;9254:15;9292:4;9289:1;9282:15;9146:161;;8933:380;;;:::o;9318:127::-;9379:10;9374:3;9370:20;9367:1;9360:31;9410:4;9407:1;9400:15;9434:4;9431:1;9424:15
Swarm Source
ipfs://0874d630ed6785c088107636d7426da542346267cbf1f71453b4507fd538a2a3
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.