Overview
Max Total Supply
1,000,000,000 EMRLD
Holders
3,873 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH (+1.66%)
Onchain Market Cap
$2,558,960.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
297.037974392251869758 EMRLDValue
$0.76 ( ~0.000302188681482323 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EMERALD
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-03-27 */ /** * This is smart contract for the token $EMRLD * emeraldco.io * Fractional RWA ownership combined with advanced AI and blockchain protocols, creating the first secure RWA luxury marketplace */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.24; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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}. */ /** * @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 `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); /** * @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); } 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); } 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, _allowances[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 = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, 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: * * - `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; } _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; _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 Spend `amount` form the allowance of `owner` toward `spender`. * * 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 {} } 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); } } pragma solidity ^0.8.24; contract EMERALD is ERC20, Ownable { using SafeMath for uint256; uint256 private _totalSupply = 1000000000 * 1e18; uint256 private _currentSupply = 0; function totalSupply() public view override returns (uint256) { return _totalSupply; } mapping(address => bool) public blacklisted; constructor() ERC20("EMERALD", "EMRLD") { // Mint the initial supply to the contract deployer _mint(msg.sender, 1000000000 * 10**18); // 1 billion tokens with 18 decimal places } function transfer(address to, uint256 amount) public override returns (bool) { address owner = _msgSender(); require(!blacklisted[owner],'Blacklisted'); _transfer(owner, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); require(!blacklisted[spender],'Blacklisted'); _transfer(from, to, amount); return true; } function setAsBlackListed(address _user, bool _enabled) external onlyOwner{ blacklisted[_user] = _enabled; } }
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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_user","type":"address"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setAsBlackListed","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
60806040526b033b2e3c9fd0803ce80000006006555f60075534801562000024575f80fd5b50604051806040016040528060078152602001661153515490531160ca1b81525060405180604001604052806005815260200164115354931160da1b81525081600390816200007491906200029a565b5060046200008382826200029a565b505050620000a06200009a620000be60201b60201c565b620000c2565b620000b8336b033b2e3c9fd0803ce800000062000113565b6200038c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166200016e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825462000181919062000366565b90915550506001600160a01b0382165f9081526020819052604081208054839290620001af90849062000366565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200022657607f821691505b6020821081036200024557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001f857805f5260205f20601f840160051c81016020851015620002725750805b601f840160051c820191505b8181101562000293575f81556001016200027e565b5050505050565b81516001600160401b03811115620002b657620002b6620001fd565b620002ce81620002c7845462000211565b846200024b565b602080601f83116001811462000304575f8415620002ec5750858301515b5f19600386901b1c1916600185901b1785556200035e565b5f85815260208120601f198616915b82811015620003345788860151825594840194600190910190840162000313565b50858210156200035257878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808201808211156200038657634e487b7160e01b5f52601160045260245ffd5b92915050565b610bea806200039a5f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb14610202578063dbac26e914610215578063dd62ed3e14610237578063f2fde38b1461026f575f80fd5b8063715018a6146101c45780638da5cb5b146101cc57806395d89b41146101e7578063a457c2d7146101ef575f80fd5b8063313ce567116100ce578063313ce5671461016557806339509351146101745780635c1026691461018757806370a082311461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b610107610282565b60405161011491906109d6565b60405180910390f35b61013061012b366004610a3d565b610312565b6040519015158152602001610114565b6006545b604051908152602001610114565b610130610160366004610a65565b61032b565b60405160128152602001610114565b610130610182366004610a3d565b6103a9565b61019a610195366004610a9e565b6103e7565b005b6101446101aa366004610ad7565b6001600160a01b03165f9081526020819052604090205490565b61019a61043b565b6005546040516001600160a01b039091168152602001610114565b610107610470565b6101306101fd366004610a3d565b61047f565b610130610210366004610a3d565b610510565b610130610223366004610ad7565b60086020525f908152604090205460ff1681565b610144610245366004610af7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61019a61027d366004610ad7565b61056b565b60606003805461029190610b28565b80601f01602080910402602001604051908101604052809291908181526020018280546102bd90610b28565b80156103085780601f106102df57610100808354040283529160200191610308565b820191905f5260205f20905b8154815290600101906020018083116102eb57829003601f168201915b5050505050905090565b5f3361031f818585610606565b60019150505b92915050565b5f33610338858285610729565b6001600160a01b0381165f9081526008602052604090205460ff16156103935760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064015b60405180910390fd5b61039e8585856107b9565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061031f90829086906103e2908790610b60565b610606565b6005546001600160a01b031633146104115760405162461bcd60e51b815260040161038a90610b7f565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146104655760405162461bcd60e51b815260040161038a90610b7f565b61046e5f610985565b565b60606004805461029190610b28565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105035760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161038a565b61039e8286868403610606565b335f8181526008602052604081205490919060ff16156105605760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161038a565b61031f8185856107b9565b6005546001600160a01b031633146105955760405162461bcd60e51b815260040161038a90610b7f565b6001600160a01b0381166105fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038a565b61060381610985565b50565b6001600160a01b0383166106685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038a565b6001600160a01b0382166106c95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146107b357818110156107a65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038a565b6107b38484848403610606565b50505050565b6001600160a01b03831661081d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038a565b6001600160a01b03821661087f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038a565b6001600160a01b0383165f90815260208190526040902054818110156108f65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038a565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061092c908490610b60565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161097891815260200190565b60405180910390a36107b3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f602080835283518060208501525f5b81811015610a02578581018301518582016040015282016109e6565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a38575f80fd5b919050565b5f8060408385031215610a4e575f80fd5b610a5783610a22565b946020939093013593505050565b5f805f60608486031215610a77575f80fd5b610a8084610a22565b9250610a8e60208501610a22565b9150604084013590509250925092565b5f8060408385031215610aaf575f80fd5b610ab883610a22565b915060208301358015158114610acc575f80fd5b809150509250929050565b5f60208284031215610ae7575f80fd5b610af082610a22565b9392505050565b5f8060408385031215610b08575f80fd5b610b1183610a22565b9150610b1f60208401610a22565b90509250929050565b600181811c90821680610b3c57607f821691505b602082108103610b5a57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032557634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212202015565f8c980ea80cd5ee163cbcc6e3ffe6b72e52ca4fccb6428a7c97af308064736f6c63430008180033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb14610202578063dbac26e914610215578063dd62ed3e14610237578063f2fde38b1461026f575f80fd5b8063715018a6146101c45780638da5cb5b146101cc57806395d89b41146101e7578063a457c2d7146101ef575f80fd5b8063313ce567116100ce578063313ce5671461016557806339509351146101745780635c1026691461018757806370a082311461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b610107610282565b60405161011491906109d6565b60405180910390f35b61013061012b366004610a3d565b610312565b6040519015158152602001610114565b6006545b604051908152602001610114565b610130610160366004610a65565b61032b565b60405160128152602001610114565b610130610182366004610a3d565b6103a9565b61019a610195366004610a9e565b6103e7565b005b6101446101aa366004610ad7565b6001600160a01b03165f9081526020819052604090205490565b61019a61043b565b6005546040516001600160a01b039091168152602001610114565b610107610470565b6101306101fd366004610a3d565b61047f565b610130610210366004610a3d565b610510565b610130610223366004610ad7565b60086020525f908152604090205460ff1681565b610144610245366004610af7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61019a61027d366004610ad7565b61056b565b60606003805461029190610b28565b80601f01602080910402602001604051908101604052809291908181526020018280546102bd90610b28565b80156103085780601f106102df57610100808354040283529160200191610308565b820191905f5260205f20905b8154815290600101906020018083116102eb57829003601f168201915b5050505050905090565b5f3361031f818585610606565b60019150505b92915050565b5f33610338858285610729565b6001600160a01b0381165f9081526008602052604090205460ff16156103935760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064015b60405180910390fd5b61039e8585856107b9565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061031f90829086906103e2908790610b60565b610606565b6005546001600160a01b031633146104115760405162461bcd60e51b815260040161038a90610b7f565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146104655760405162461bcd60e51b815260040161038a90610b7f565b61046e5f610985565b565b60606004805461029190610b28565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105035760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161038a565b61039e8286868403610606565b335f8181526008602052604081205490919060ff16156105605760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161038a565b61031f8185856107b9565b6005546001600160a01b031633146105955760405162461bcd60e51b815260040161038a90610b7f565b6001600160a01b0381166105fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038a565b61060381610985565b50565b6001600160a01b0383166106685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038a565b6001600160a01b0382166106c95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146107b357818110156107a65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038a565b6107b38484848403610606565b50505050565b6001600160a01b03831661081d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038a565b6001600160a01b03821661087f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038a565b6001600160a01b0383165f90815260208190526040902054818110156108f65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038a565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061092c908490610b60565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161097891815260200190565b60405180910390a36107b3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f602080835283518060208501525f5b81811015610a02578581018301518582016040015282016109e6565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a38575f80fd5b919050565b5f8060408385031215610a4e575f80fd5b610a5783610a22565b946020939093013593505050565b5f805f60608486031215610a77575f80fd5b610a8084610a22565b9250610a8e60208501610a22565b9150604084013590509250925092565b5f8060408385031215610aaf575f80fd5b610ab883610a22565b915060208301358015158114610acc575f80fd5b809150509250929050565b5f60208284031215610ae7575f80fd5b610af082610a22565b9392505050565b5f8060408385031215610b08575f80fd5b610b1183610a22565b9150610b1f60208401610a22565b90509250929050565b600181811c90821680610b3c57607f821691505b602082108103610b5a57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032557634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212202015565f8c980ea80cd5ee163cbcc6e3ffe6b72e52ca4fccb6428a7c97af308064736f6c63430008180033
Deployed Bytecode Sourcemap
25280:1280:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12579:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14930:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;14930:201:0;1004:187:1;25459:100:0;25539:12;;25459:100;;;1342:25:1;;;1330:2;1315:18;25459:100:0;1196:177:1;26082:342:0;;;;;;:::i;:::-;;:::i;13541:93::-;;;13624:2;1853:36:1;;1841:2;1826:18;13541:93:0;1711:184:1;16415:240:0;;;;;;:::i;:::-;;:::i;26432:122::-;;;;;;:::i;:::-;;:::i;:::-;;13870:127;;;;;;:::i;:::-;-1:-1:-1;;;;;13971:18:0;13944:7;13971:18;;;;;;;;;;;;13870:127;24437:103;;;:::i;23786:87::-;23859:6;;23786:87;;-1:-1:-1;;;;;23859:6:0;;;2589:51:1;;2577:2;2562:18;23786:87:0;2443:203:1;12798:104:0;;;:::i;17158:438::-;;;;;;:::i;:::-;;:::i;25836:238::-;;;;;;:::i;:::-;;:::i;25567:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;14459:151;;;;;;:::i;:::-;-1:-1:-1;;;;;14575:18:0;;;14548:7;14575:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14459:151;24695:201;;;;;;:::i;:::-;;:::i;12579:100::-;12633:13;12666:5;12659:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12579:100;:::o;14930:201::-;15013:4;7328:10;15069:32;7328:10;15085:7;15094:6;15069:8;:32::i;:::-;15119:4;15112:11;;;14930:201;;;;;:::o;26082:342::-;26205:4;7328:10;26263:38;26279:4;7328:10;26294:6;26263:15;:38::i;:::-;-1:-1:-1;;;;;26321:20:0;;;;;;:11;:20;;;;;;;;26320:21;26312:44;;;;-1:-1:-1;;;26312:44:0;;3503:2:1;26312:44:0;;;3485:21:1;3542:2;3522:18;;;3515:30;-1:-1:-1;;;3561:18:1;;;3554:41;3612:18;;26312:44:0;;;;;;;;;26367:27;26377:4;26383:2;26387:6;26367:9;:27::i;:::-;-1:-1:-1;26412:4:0;;26082:342;-1:-1:-1;;;;26082:342:0:o;16415:240::-;7328:10;16503:4;16584:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;16584:27:0;;;;;;;;;;16503:4;;7328:10;16559:66;;7328:10;;16584:27;;:40;;16614:10;;16584:40;:::i;:::-;16559:8;:66::i;26432:122::-;23859:6;;-1:-1:-1;;;;;23859:6:0;7328:10;24006:23;23998:68;;;;-1:-1:-1;;;23998:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26517:18:0;;;::::1;;::::0;;;:11:::1;:18;::::0;;;;:29;;-1:-1:-1;;26517:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26432:122::o;24437:103::-;23859:6;;-1:-1:-1;;;;;23859:6:0;7328:10;24006:23;23998:68;;;;-1:-1:-1;;;23998:68:0;;;;;;;:::i;:::-;24502:30:::1;24529:1;24502:18;:30::i;:::-;24437:103::o:0;12798:104::-;12854:13;12887:7;12880:14;;;;;:::i;17158:438::-;7328:10;17251:4;17334:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;17334:27:0;;;;;;;;;;17251:4;;7328:10;17380:35;;;;17372:85;;;;-1:-1:-1;;;17372:85:0;;4431:2:1;17372:85:0;;;4413:21:1;4470:2;4450:18;;;4443:30;4509:34;4489:18;;;4482:62;-1:-1:-1;;;4560:18:1;;;4553:35;4605:19;;17372:85:0;4229:401:1;17372:85:0;17493:60;17502:5;17509:7;17537:15;17518:16;:34;17493:8;:60::i;25836:238::-;7328:10;25907:4;25972:18;;;:11;:18;;;;;;25907:4;;7328:10;25972:18;;25971:19;25963:42;;;;-1:-1:-1;;;25963:42:0;;3503:2:1;25963:42:0;;;3485:21:1;3542:2;3522:18;;;3515:30;-1:-1:-1;;;3561:18:1;;;3554:41;3612:18;;25963:42:0;3301:335:1;25963:42:0;26016:28;26026:5;26033:2;26037:6;26016:9;:28::i;24695:201::-;23859:6;;-1:-1:-1;;;;;23859:6:0;7328:10;24006:23;23998:68;;;;-1:-1:-1;;;23998:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24784:22:0;::::1;24776:73;;;::::0;-1:-1:-1;;;24776:73:0;;4837:2:1;24776:73:0::1;::::0;::::1;4819:21:1::0;4876:2;4856:18;;;4849:30;4915:34;4895:18;;;4888:62;-1:-1:-1;;;4966:18:1;;;4959:36;5012:19;;24776:73:0::1;4635:402:1::0;24776:73:0::1;24860:28;24879:8;24860:18;:28::i;:::-;24695:201:::0;:::o;20794:380::-;-1:-1:-1;;;;;20930:19:0;;20922:68;;;;-1:-1:-1;;;20922:68:0;;5244:2:1;20922:68:0;;;5226:21:1;5283:2;5263:18;;;5256:30;5322:34;5302:18;;;5295:62;-1:-1:-1;;;5373:18:1;;;5366:34;5417:19;;20922:68:0;5042:400:1;20922:68:0;-1:-1:-1;;;;;21009:21:0;;21001:68;;;;-1:-1:-1;;;21001:68:0;;5649:2:1;21001:68:0;;;5631:21:1;5688:2;5668:18;;;5661:30;5727:34;5707:18;;;5700:62;-1:-1:-1;;;5778:18:1;;;5771:32;5820:19;;21001:68:0;5447:398:1;21001:68:0;-1:-1:-1;;;;;21082:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21134:32;;1342:25:1;;;21134:32:0;;1315:18:1;21134:32:0;;;;;;;20794:380;;;:::o;21461:453::-;-1:-1:-1;;;;;14575:18:0;;;21596:24;14575:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;21663:37:0;;21659:248;;21745:6;21725:16;:26;;21717:68;;;;-1:-1:-1;;;21717:68:0;;6052:2:1;21717:68:0;;;6034:21:1;6091:2;6071:18;;;6064:30;6130:31;6110:18;;;6103:59;6179:18;;21717:68:0;5850:353:1;21717:68:0;21829:51;21838:5;21845:7;21873:6;21854:16;:25;21829:8;:51::i;:::-;21585:329;21461:453;;;:::o;18075:671::-;-1:-1:-1;;;;;18206:18:0;;18198:68;;;;-1:-1:-1;;;18198:68:0;;6410:2:1;18198:68:0;;;6392:21:1;6449:2;6429:18;;;6422:30;6488:34;6468:18;;;6461:62;-1:-1:-1;;;6539:18:1;;;6532:35;6584:19;;18198:68:0;6208:401:1;18198:68:0;-1:-1:-1;;;;;18285:16:0;;18277:64;;;;-1:-1:-1;;;18277:64:0;;6816:2:1;18277:64:0;;;6798:21:1;6855:2;6835:18;;;6828:30;6894:34;6874:18;;;6867:62;-1:-1:-1;;;6945:18:1;;;6938:33;6988:19;;18277:64:0;6614:399:1;18277:64:0;-1:-1:-1;;;;;18427:15:0;;18405:19;18427:15;;;;;;;;;;;18461:21;;;;18453:72;;;;-1:-1:-1;;;18453:72:0;;7220:2:1;18453:72:0;;;7202:21:1;7259:2;7239:18;;;7232:30;7298:34;7278:18;;;7271:62;-1:-1:-1;;;7349:18:1;;;7342:36;7395:19;;18453:72:0;7018:402:1;18453:72:0;-1:-1:-1;;;;;18561:15:0;;;:9;:15;;;;;;;;;;;18579:20;;;18561:38;;18621:13;;;;;;;;:23;;18593:6;;18561:9;18621:23;;18593:6;;18621:23;:::i;:::-;;;;;;;;18677:2;-1:-1:-1;;;;;18662:26:0;18671:4;-1:-1:-1;;;;;18662:26:0;;18681:6;18662:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;18662:26:0;;;;;;;;18701:37;22514:125;25056:191;25149:6;;;-1:-1:-1;;;;;25166:17:0;;;-1:-1:-1;;;;;;25166:17:0;;;;;;;25199:40;;25149:6;;;25166:17;25149:6;;25199:40;;25130:16;;25199:40;25119:128;25056:191;:::o;14:548:1:-;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:347::-;1965:6;1973;2026:2;2014:9;2005:7;2001:23;1997:32;1994:52;;;2042:1;2039;2032:12;1994:52;2065:29;2084:9;2065:29;:::i;:::-;2055:39;;2144:2;2133:9;2129:18;2116:32;2191:5;2184:13;2177:21;2170:5;2167:32;2157:60;;2213:1;2210;2203:12;2157:60;2236:5;2226:15;;;1900:347;;;;;:::o;2252:186::-;2311:6;2364:2;2352:9;2343:7;2339:23;2335:32;2332:52;;;2380:1;2377;2370:12;2332:52;2403:29;2422:9;2403:29;:::i;:::-;2393:39;2252:186;-1:-1:-1;;;2252:186:1:o;2651:260::-;2719:6;2727;2780:2;2768:9;2759:7;2755:23;2751:32;2748:52;;;2796:1;2793;2786:12;2748:52;2819:29;2838:9;2819:29;:::i;:::-;2809:39;;2867:38;2901:2;2890:9;2886:18;2867:38;:::i;:::-;2857:48;;2651:260;;;;;:::o;2916:380::-;2995:1;2991:12;;;;3038;;;3059:61;;3113:4;3105:6;3101:17;3091:27;;3059:61;3166:2;3158:6;3155:14;3135:18;3132:38;3129:161;;3212:10;3207:3;3203:20;3200:1;3193:31;3247:4;3244:1;3237:15;3275:4;3272:1;3265:15;3129:161;;2916:380;;;:::o;3641:222::-;3706:9;;;3727:10;;;3724:133;;;3779:10;3774:3;3770:20;3767:1;3760:31;3814:4;3811:1;3804:15;3842:4;3839:1;3832:15;3868:356;4070:2;4052:21;;;4089:18;;;4082:30;4148:34;4143:2;4128:18;;4121:62;4215:2;4200:18;;3868:356::o
Swarm Source
ipfs://2015565f8c980ea80cd5ee163cbcc6e3ffe6b72e52ca4fccb6428a7c97af3080
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.