ERC-20
Overview
Max Total Supply
25,000,000,000 CORGIAI
Holders
2,229 ( 3.096%)
Market
Price
$0.00 @ 0.000000 ETH (+46.85%)
Onchain Market Cap
$34,265,269.25
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
18,010.021953170573479126 CORGIAIValue
$24.68 ( ~0.00850344489400645 Eth) [0.0001%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CorgiAiToken
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-10 */ // Sources flattened with hardhat v2.14.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // 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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.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 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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // 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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // 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/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (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.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 {} } // File contracts/eth/CorgiAiToken.sol pragma solidity =0.8.18; contract CorgiAiToken is Ownable, ERC20 { address public bridge; event SetBridge(address indexed owner, address indexed bridge); modifier onlyBridge() { require(msg.sender == bridge, "Forbidden action"); _; } constructor() ERC20("CorgiAI", "CORGIAI") {} function setBridge(address _bridge) external onlyOwner { require(bridge == address(0), "Bridge has been set"); bridge = _bridge; emit SetBridge(msg.sender, _bridge); } function mint(address _account, uint256 _amount) external onlyBridge { _mint(_account, _amount); } function burn(address _account, uint256 _amount) external onlyBridge { _burn(_account, _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":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"bridge","type":"address"}],"name":"SetBridge","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[],"name":"bridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","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":"_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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bridge","type":"address"}],"name":"setBridge","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180604001604052806007815260200166436f726769414960c81b81525060405180604001604052806007815260200166434f524749414960c81b8152506200006c620000666200009260201b60201c565b62000096565b60046200007a83826200018b565b5060056200008982826200018b565b50505062000257565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011157607f821691505b6020821081036200013257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018657600081815260208120601f850160051c81016020861015620001615750805b601f850160051c820191505b8181101562000182578281556001016200016d565b5050505b505050565b81516001600160401b03811115620001a757620001a7620000e6565b620001bf81620001b88454620000fc565b8462000138565b602080601f831160018114620001f75760008415620001de5750858301515b600019600386901b1c1916600185901b17855562000182565b600085815260208120601f198616915b82811015620002285788860151825594840194600190910190840162000207565b5085821015620002475787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610dce80620002676000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a457c2d711610071578063a457c2d71461023c578063a9059cbb1461024f578063dd62ed3e14610262578063e78cea9214610275578063f2fde38b1461028857600080fd5b80638da5cb5b146101e95780638dd148021461020e57806395d89b41146102215780639dc29fac1461022957600080fd5b8063313ce567116100e9578063313ce56714610181578063395093511461019057806340c10f19146101a357806370a08231146101b8578063715018a6146101e157600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b61012361029b565b6040516101309190610c18565b60405180910390f35b61014c610147366004610c82565b61032d565b6040519015158152602001610130565b6003545b604051908152602001610130565b61014c61017c366004610cac565b610347565b60405160128152602001610130565b61014c61019e366004610c82565b61036b565b6101b66101b1366004610c82565b61038d565b005b6101606101c6366004610ce8565b6001600160a01b031660009081526001602052604090205490565b6101b66103ed565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610130565b6101b661021c366004610ce8565b610401565b6101236104a4565b6101b6610237366004610c82565b6104b3565b61014c61024a366004610c82565b61050a565b61014c61025d366004610c82565b610585565b610160610270366004610d0a565b610593565b6006546101f6906001600160a01b031681565b6101b6610296366004610ce8565b6105be565b6060600480546102aa90610d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546102d690610d3d565b80156103235780601f106102f857610100808354040283529160200191610323565b820191906000526020600020905b81548152906001019060200180831161030657829003601f168201915b5050505050905090565b60003361033b818585610637565b60019150505b92915050565b60003361035585828561075c565b6103608585856107d6565b506001949350505050565b60003361033b81858561037e8383610593565b6103889190610d77565b610637565b6006546001600160a01b031633146103df5760405162461bcd60e51b815260206004820152601060248201526f2337b93134b23232b71030b1ba34b7b760811b60448201526064015b60405180910390fd5b6103e98282610981565b5050565b6103f5610a42565b6103ff6000610a9c565b565b610409610a42565b6006546001600160a01b0316156104585760405162461bcd60e51b8152602060048201526013602482015272109c9a5919d9481a185cc81899595b881cd95d606a1b60448201526064016103d6565b600680546001600160a01b0319166001600160a01b03831690811790915560405133907f8357797ab855a0bad5103ea8bd2f21f986350e94d73f143ae114db8f0db5a93a90600090a350565b6060600580546102aa90610d3d565b6006546001600160a01b031633146105005760405162461bcd60e51b815260206004820152601060248201526f2337b93134b23232b71030b1ba34b7b760811b60448201526064016103d6565b6103e98282610aec565b600033816105188286610593565b9050838110156105785760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103d6565b6103608286868403610637565b60003361033b8185856107d6565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105c6610a42565b6001600160a01b03811661062b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d6565b61063481610a9c565b50565b6001600160a01b0383166106995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d6565b6001600160a01b0382166106fa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107688484610593565b905060001981146107d057818110156107c35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103d6565b6107d08484848403610637565b50505050565b6001600160a01b03831661083a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d6565b6001600160a01b03821661089c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d6565b6001600160a01b038316600090815260016020526040902054818110156109145760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103d6565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109749086815260200190565b60405180910390a36107d0565b6001600160a01b0382166109d75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103d6565b80600360008282546109e99190610d77565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103d6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216610b4c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103d6565b6001600160a01b03821660009081526001602052604090205481811015610bc05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103d6565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161074f565b600060208083528351808285015260005b81811015610c4557858101830151858201604001528201610c29565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c7d57600080fd5b919050565b60008060408385031215610c9557600080fd5b610c9e83610c66565b946020939093013593505050565b600080600060608486031215610cc157600080fd5b610cca84610c66565b9250610cd860208501610c66565b9150604084013590509250925092565b600060208284031215610cfa57600080fd5b610d0382610c66565b9392505050565b60008060408385031215610d1d57600080fd5b610d2683610c66565b9150610d3460208401610c66565b90509250929050565b600181811c90821680610d5157607f821691505b602082108103610d7157634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561034157634e487b7160e01b600052601160045260246000fdfea2646970667358221220e584a9bbe1db7941d340e4132ea2aa6bd41d6446dde542f44c87790f7a040b4864736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a457c2d711610071578063a457c2d71461023c578063a9059cbb1461024f578063dd62ed3e14610262578063e78cea9214610275578063f2fde38b1461028857600080fd5b80638da5cb5b146101e95780638dd148021461020e57806395d89b41146102215780639dc29fac1461022957600080fd5b8063313ce567116100e9578063313ce56714610181578063395093511461019057806340c10f19146101a357806370a08231146101b8578063715018a6146101e157600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b61012361029b565b6040516101309190610c18565b60405180910390f35b61014c610147366004610c82565b61032d565b6040519015158152602001610130565b6003545b604051908152602001610130565b61014c61017c366004610cac565b610347565b60405160128152602001610130565b61014c61019e366004610c82565b61036b565b6101b66101b1366004610c82565b61038d565b005b6101606101c6366004610ce8565b6001600160a01b031660009081526001602052604090205490565b6101b66103ed565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610130565b6101b661021c366004610ce8565b610401565b6101236104a4565b6101b6610237366004610c82565b6104b3565b61014c61024a366004610c82565b61050a565b61014c61025d366004610c82565b610585565b610160610270366004610d0a565b610593565b6006546101f6906001600160a01b031681565b6101b6610296366004610ce8565b6105be565b6060600480546102aa90610d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546102d690610d3d565b80156103235780601f106102f857610100808354040283529160200191610323565b820191906000526020600020905b81548152906001019060200180831161030657829003601f168201915b5050505050905090565b60003361033b818585610637565b60019150505b92915050565b60003361035585828561075c565b6103608585856107d6565b506001949350505050565b60003361033b81858561037e8383610593565b6103889190610d77565b610637565b6006546001600160a01b031633146103df5760405162461bcd60e51b815260206004820152601060248201526f2337b93134b23232b71030b1ba34b7b760811b60448201526064015b60405180910390fd5b6103e98282610981565b5050565b6103f5610a42565b6103ff6000610a9c565b565b610409610a42565b6006546001600160a01b0316156104585760405162461bcd60e51b8152602060048201526013602482015272109c9a5919d9481a185cc81899595b881cd95d606a1b60448201526064016103d6565b600680546001600160a01b0319166001600160a01b03831690811790915560405133907f8357797ab855a0bad5103ea8bd2f21f986350e94d73f143ae114db8f0db5a93a90600090a350565b6060600580546102aa90610d3d565b6006546001600160a01b031633146105005760405162461bcd60e51b815260206004820152601060248201526f2337b93134b23232b71030b1ba34b7b760811b60448201526064016103d6565b6103e98282610aec565b600033816105188286610593565b9050838110156105785760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103d6565b6103608286868403610637565b60003361033b8185856107d6565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105c6610a42565b6001600160a01b03811661062b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d6565b61063481610a9c565b50565b6001600160a01b0383166106995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d6565b6001600160a01b0382166106fa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107688484610593565b905060001981146107d057818110156107c35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103d6565b6107d08484848403610637565b50505050565b6001600160a01b03831661083a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d6565b6001600160a01b03821661089c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d6565b6001600160a01b038316600090815260016020526040902054818110156109145760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103d6565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109749086815260200190565b60405180910390a36107d0565b6001600160a01b0382166109d75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103d6565b80600360008282546109e99190610d77565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103d6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216610b4c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103d6565b6001600160a01b03821660009081526001602052604090205481811015610bc05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103d6565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161074f565b600060208083528351808285015260005b81811015610c4557858101830151858201604001528201610c29565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c7d57600080fd5b919050565b60008060408385031215610c9557600080fd5b610c9e83610c66565b946020939093013593505050565b600080600060608486031215610cc157600080fd5b610cca84610c66565b9250610cd860208501610c66565b9150604084013590509250925092565b600060208284031215610cfa57600080fd5b610d0382610c66565b9392505050565b60008060408385031215610d1d57600080fd5b610d2683610c66565b9150610d3460208401610c66565b90509250929050565b600181811c90821680610d5157607f821691505b602082108103610d7157634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561034157634e487b7160e01b600052601160045260246000fdfea2646970667358221220e584a9bbe1db7941d340e4132ea2aa6bd41d6446dde542f44c87790f7a040b4864736f6c63430008120033
Deployed Bytecode Sourcemap
20733:744:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9471:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11822:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11822:201:0;1004:187:1;10591:108:0;10679:12;;10591:108;;;1342:25:1;;;1330:2;1315:18;10591:108:0;1196:177:1;12603:295:0;;;;;;:::i;:::-;;:::i;10433:93::-;;;10516:2;1853:36:1;;1841:2;1826:18;10433:93:0;1711:184:1;13307:238:0;;;;;;:::i;:::-;;:::i;21242:112::-;;;;;;:::i;:::-;;:::i;:::-;;10762:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10863:18:0;10836:7;10863:18;;;:9;:18;;;;;;;10762:127;2882:103;;;:::i;2234:87::-;2280:7;2307:6;-1:-1:-1;;;;;2307:6:0;2234:87;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;2234:87:0;2091:203:1;21041:193:0;;;;;;:::i;:::-;;:::i;9690:104::-;;;:::i;21362:112::-;;;;;;:::i;:::-;;:::i;14048:436::-;;;;;;:::i;:::-;;:::i;11095:193::-;;;;;;:::i;:::-;;:::i;11351:151::-;;;;;;:::i;:::-;;:::i;20782:21::-;;;;;-1:-1:-1;;;;;20782:21:0;;;3140:201;;;;;;:::i;:::-;;:::i;9471:100::-;9525:13;9558:5;9551:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9471:100;:::o;11822:201::-;11905:4;861:10;11961:32;861:10;11977:7;11986:6;11961:8;:32::i;:::-;12011:4;12004:11;;;11822:201;;;;;:::o;12603:295::-;12734:4;861:10;12792:38;12808:4;861:10;12823:6;12792:15;:38::i;:::-;12841:27;12851:4;12857:2;12861:6;12841:9;:27::i;:::-;-1:-1:-1;12886:4:0;;12603:295;-1:-1:-1;;;;12603:295:0:o;13307:238::-;13395:4;861:10;13451:64;861:10;13467:7;13504:10;13476:25;861:10;13467:7;13476:9;:25::i;:::-;:38;;;;:::i;:::-;13451:8;:64::i;21242:112::-;20936:6;;-1:-1:-1;;;;;20936:6:0;20922:10;:20;20914:49;;;;-1:-1:-1;;;20914:49:0;;3378:2:1;20914:49:0;;;3360:21:1;3417:2;3397:18;;;3390:30;-1:-1:-1;;;3436:18:1;;;3429:46;3492:18;;20914:49:0;;;;;;;;;21322:24:::1;21328:8;21338:7;21322:5;:24::i;:::-;21242:112:::0;;:::o;2882:103::-;2120:13;:11;:13::i;:::-;2947:30:::1;2974:1;2947:18;:30::i;:::-;2882:103::o:0;21041:193::-;2120:13;:11;:13::i;:::-;21113:6:::1;::::0;-1:-1:-1;;;;;21113:6:0::1;:20:::0;21105:52:::1;;;::::0;-1:-1:-1;;;21105:52:0;;3723:2:1;21105:52:0::1;::::0;::::1;3705:21:1::0;3762:2;3742:18;;;3735:30;-1:-1:-1;;;3781:18:1;;;3774:49;3840:18;;21105:52:0::1;3521:343:1::0;21105:52:0::1;21166:6;:16:::0;;-1:-1:-1;;;;;;21166:16:0::1;-1:-1:-1::0;;;;;21166:16:0;::::1;::::0;;::::1;::::0;;;21196:30:::1;::::0;21206:10:::1;::::0;21196:30:::1;::::0;-1:-1:-1;;21196:30:0::1;21041:193:::0;:::o;9690:104::-;9746:13;9779:7;9772:14;;;;;:::i;21362:112::-;20936:6;;-1:-1:-1;;;;;20936:6:0;20922:10;:20;20914:49;;;;-1:-1:-1;;;20914:49:0;;3378:2:1;20914:49:0;;;3360:21:1;3417:2;3397:18;;;3390:30;-1:-1:-1;;;3436:18:1;;;3429:46;3492:18;;20914:49:0;3176:340:1;20914:49:0;21442:24:::1;21448:8;21458:7;21442:5;:24::i;14048:436::-:0;14141:4;861:10;14141:4;14224:25;861:10;14241:7;14224:9;:25::i;:::-;14197:52;;14288:15;14268:16;:35;;14260:85;;;;-1:-1:-1;;;14260:85:0;;4071:2:1;14260:85:0;;;4053:21:1;4110:2;4090:18;;;4083:30;4149:34;4129:18;;;4122:62;-1:-1:-1;;;4200:18:1;;;4193:35;4245:19;;14260:85:0;3869:401:1;14260:85:0;14381:60;14390:5;14397:7;14425:15;14406:16;:34;14381:8;:60::i;11095:193::-;11174:4;861:10;11230:28;861:10;11247:2;11251:6;11230:9;:28::i;11351:151::-;-1:-1:-1;;;;;11467:18:0;;;11440:7;11467:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11351:151::o;3140:201::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;3229:22:0;::::1;3221:73;;;::::0;-1:-1:-1;;;3221:73:0;;4477:2:1;3221:73:0::1;::::0;::::1;4459:21:1::0;4516:2;4496:18;;;4489:30;4555:34;4535:18;;;4528:62;-1:-1:-1;;;4606:18:1;;;4599:36;4652:19;;3221:73:0::1;4275:402:1::0;3221:73:0::1;3305:28;3324:8;3305:18;:28::i;:::-;3140:201:::0;:::o;18075:380::-;-1:-1:-1;;;;;18211:19:0;;18203:68;;;;-1:-1:-1;;;18203:68:0;;4884:2:1;18203:68:0;;;4866:21:1;4923:2;4903:18;;;4896:30;4962:34;4942:18;;;4935:62;-1:-1:-1;;;5013:18:1;;;5006:34;5057:19;;18203:68:0;4682:400:1;18203:68:0;-1:-1:-1;;;;;18290:21:0;;18282:68;;;;-1:-1:-1;;;18282:68:0;;5289:2:1;18282:68:0;;;5271:21:1;5328:2;5308:18;;;5301:30;5367:34;5347:18;;;5340:62;-1:-1:-1;;;5418:18:1;;;5411:32;5460:19;;18282:68:0;5087:398:1;18282:68:0;-1:-1:-1;;;;;18363:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18415:32;;1342:25:1;;;18415:32:0;;1315:18:1;18415:32:0;;;;;;;;18075:380;;;:::o;18746:453::-;18881:24;18908:25;18918:5;18925:7;18908:9;:25::i;:::-;18881:52;;-1:-1:-1;;18948:16:0;:37;18944:248;;19030:6;19010:16;:26;;19002:68;;;;-1:-1:-1;;;19002:68:0;;5692:2:1;19002:68:0;;;5674:21:1;5731:2;5711:18;;;5704:30;5770:31;5750:18;;;5743:59;5819:18;;19002:68:0;5490:353:1;19002:68:0;19114:51;19123:5;19130:7;19158:6;19139:16;:25;19114:8;:51::i;:::-;18870:329;18746:453;;;:::o;14954:840::-;-1:-1:-1;;;;;15085:18:0;;15077:68;;;;-1:-1:-1;;;15077:68:0;;6050:2:1;15077:68:0;;;6032:21:1;6089:2;6069:18;;;6062:30;6128:34;6108:18;;;6101:62;-1:-1:-1;;;6179:18:1;;;6172:35;6224:19;;15077:68:0;5848:401:1;15077:68:0;-1:-1:-1;;;;;15164:16:0;;15156:64;;;;-1:-1:-1;;;15156:64:0;;6456:2:1;15156:64:0;;;6438:21:1;6495:2;6475:18;;;6468:30;6534:34;6514:18;;;6507:62;-1:-1:-1;;;6585:18:1;;;6578:33;6628:19;;15156:64:0;6254:399:1;15156:64:0;-1:-1:-1;;;;;15306:15:0;;15284:19;15306:15;;;:9;:15;;;;;;15340:21;;;;15332:72;;;;-1:-1:-1;;;15332:72:0;;6860:2:1;15332:72:0;;;6842:21:1;6899:2;6879:18;;;6872:30;6938:34;6918:18;;;6911:62;-1:-1:-1;;;6989:18:1;;;6982:36;7035:19;;15332:72:0;6658:402:1;15332:72:0;-1:-1:-1;;;;;15440:15:0;;;;;;;:9;:15;;;;;;15458:20;;;15440:38;;15658:13;;;;;;;;;;:23;;;;;;15710:26;;;;;;15472:6;1342:25:1;;1330:2;1315:18;;1196:177;15710:26:0;;;;;;;;15749:37;16962:675;16081:548;-1:-1:-1;;;;;16165:21:0;;16157:65;;;;-1:-1:-1;;;16157:65:0;;7267:2:1;16157:65:0;;;7249:21:1;7306:2;7286:18;;;7279:30;7345:33;7325:18;;;7318:61;7396:18;;16157:65:0;7065:355:1;16157:65:0;16313:6;16297:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16468:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;16523:37;1342:25:1;;;16523:37:0;;1315:18:1;16523:37:0;;;;;;;21242:112;;:::o;2399:132::-;2280:7;2307:6;-1:-1:-1;;;;;2307:6:0;861:10;2463:23;2455:68;;;;-1:-1:-1;;;2455:68:0;;7627:2:1;2455:68:0;;;7609:21:1;;;7646:18;;;7639:30;7705:34;7685:18;;;7678:62;7757:18;;2455:68:0;7425:356:1;3501:191:0;3575:16;3594:6;;-1:-1:-1;;;;;3611:17:0;;;-1:-1:-1;;;;;;3611:17:0;;;;;;3644:40;;3594:6;;;;;;;3644:40;;3575:16;3644:40;3564:128;3501:191;:::o;16962:675::-;-1:-1:-1;;;;;17046:21:0;;17038:67;;;;-1:-1:-1;;;17038:67:0;;7988:2:1;17038:67:0;;;7970:21:1;8027:2;8007:18;;;8000:30;8066:34;8046:18;;;8039:62;-1:-1:-1;;;8117:18:1;;;8110:31;8158:19;;17038:67:0;7786:397:1;17038:67:0;-1:-1:-1;;;;;17205:18:0;;17180:22;17205:18;;;:9;:18;;;;;;17242:24;;;;17234:71;;;;-1:-1:-1;;;17234:71:0;;8390:2:1;17234:71:0;;;8372:21:1;8429:2;8409:18;;;8402:30;8468:34;8448:18;;;8441:62;-1:-1:-1;;;8519:18:1;;;8512:32;8561:19;;17234:71:0;8188:398:1;17234:71:0;-1:-1:-1;;;;;17341:18:0;;;;;;:9;:18;;;;;;;;17362:23;;;17341:44;;17480:12;:22;;;;;;;17531:37;1342:25:1;;;17341:18:0;;;17531:37;;1315:18:1;17531:37:0;1196:177:1;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:1;;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:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1: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;2777:161;;2564:380;;;:::o;2949:222::-;3014:9;;;3035:10;;;3032:133;;;3087:10;3082:3;3078:20;3075:1;3068:31;3122:4;3119:1;3112:15;3150:4;3147:1;3140:15
Swarm Source
ipfs://e584a9bbe1db7941d340e4132ea2aa6bd41d6446dde542f44c87790f7a040b48
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.