Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Gaming
Overview
Max Total Supply
1,000,000,000 SHIA
Holders
7,470 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (-7.27%)
Onchain Market Cap
$198,040.00
Circulating Supply Market Cap
$55,536.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 SHIAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SHIA
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-22 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, 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 defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 {} } // File: contracts/SHIA.sol pragma solidity ^0.8.4; contract SHIA is ERC20, Ownable { uint256 public maxHoldingAmount; uint256 public maxTxAmount; mapping(address => bool) public blacklists; constructor() ERC20("SHIA", "SHIA") { _mint(msg.sender, 10000000000 * 10 ** decimals()); maxTxAmount = 1000000 * 10 ** decimals(); maxHoldingAmount = 50000000 * 10 ** decimals(); } function setRule( uint256 _maxHoldingAmount, uint256 _maxTxAmount ) external onlyOwner { maxHoldingAmount = _maxHoldingAmount; maxTxAmount = _maxTxAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (from != owner() && to != owner()) { require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid"); } if (maxTxAmount > 0 && from != owner() && to != owner()) { require(amount <= maxTxAmount, "Exceeds max transaction amount"); } } function burn(uint256 value) external { _burn(msg.sender, value); } }
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":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","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":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040805180820182526004808252635348494160e01b60208084018290528451808601909552918452908301529060036200004e838262000497565b5060046200005d828262000497565b5050506000620000726200013160201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000ea33620000d36012600a62000678565b620000e4906402540be40062000690565b62000135565b620000f86012600a62000678565b6200010790620f424062000690565b600755620001186012600a62000678565b62000128906302faf08062000690565b600655620006c0565b3390565b6001600160a01b038216620001915760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200019f600083836200022c565b8060026000828254620001b39190620006aa565b90915550506001600160a01b03821660009081526020819052604081208054839290620001e2908490620006aa565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821660009081526008602052604090205460ff161580156200026f57506001600160a01b03831660009081526008602052604090205460ff16155b620002ab5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000188565b6005546001600160a01b03848116911614801590620002d857506005546001600160a01b03838116911614155b156200033d5760065481620002f884620003d860201b620004971760201c565b620003049190620006aa565b11156200033d5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000188565b60006007541180156200035e57506005546001600160a01b03848116911614155b80156200037957506005546001600160a01b03838116911614155b15620003d357600754811115620003d35760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178207472616e73616374696f6e20616d6f756e740000604482015260640162000188565b505050565b6001600160a01b031660009081526020819052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200041e57607f821691505b6020821081036200043f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003d357600081815260208120601f850160051c810160208610156200046e5750805b601f850160051c820191505b818110156200048f578281556001016200047a565b505050505050565b81516001600160401b03811115620004b357620004b3620003f3565b620004cb81620004c4845462000409565b8462000445565b602080601f831160018114620005035760008415620004ea5750858301515b600019600386901b1c1916600185901b1785556200048f565b600085815260208120601f198616915b82811015620005345788860151825594840194600190910190840162000513565b5085821015620005535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005ba5781600019048211156200059e576200059e62000563565b80851615620005ac57918102915b93841c93908002906200057e565b509250929050565b600082620005d35750600162000672565b81620005e25750600062000672565b8160018114620005fb5760028114620006065762000626565b600191505062000672565b60ff8411156200061a576200061a62000563565b50506001821b62000672565b5060208310610133831016604e8410600b84101617156200064b575081810a62000672565b62000657838362000579565b80600019048211156200066e576200066e62000563565b0290505b92915050565b60006200068960ff841683620005c2565b9392505050565b808202811582820484141762000672576200067262000563565b8082018082111562000672576200067262000563565b610efd80620006d06000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610241578063a457c2d714610249578063a9059cbb1461025c578063dd62ed3e1461026f578063f2fde38b146102a857600080fd5b806370a08231146101f9578063715018a61461020c57806389f9a1d3146102145780638c0b5e221461021d5780638da5cb5b1461022657600080fd5b806322b28da9116100f457806322b28da91461019c57806323b872dd146101b1578063313ce567146101c457806339509351146101d357806342966c68146101e657600080fd5b806306fdde0314610126578063095ea7b31461014457806316c021291461016757806318160ddd1461018a575b600080fd5b61012e6102bb565b60405161013b9190610cbc565b60405180910390f35b610157610152366004610d26565b61034d565b604051901515815260200161013b565b610157610175366004610d50565b60086020526000908152604090205460ff1681565b6002545b60405190815260200161013b565b6101af6101aa366004610d72565b610364565b005b6101576101bf366004610d94565b6103a2565b6040516012815260200161013b565b6101576101e1366004610d26565b610453565b6101af6101f4366004610dd0565b61048a565b61018e610207366004610d50565b610497565b6101af6104b2565b61018e60065481565b61018e60075481565b6005546040516001600160a01b03909116815260200161013b565b61012e610526565b610157610257366004610d26565b610535565b61015761026a366004610d26565b6105d0565b61018e61027d366004610de9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101af6102b6366004610d50565b6105dd565b6060600380546102ca90610e1c565b80601f01602080910402602001604051908101604052809291908181526020018280546102f690610e1c565b80156103435780601f1061031857610100808354040283529160200191610343565b820191906000526020600020905b81548152906001019060200180831161032657829003601f168201915b5050505050905090565b600061035a3384846106c8565b5060015b92915050565b6005546001600160a01b031633146103975760405162461bcd60e51b815260040161038e90610e56565b60405180910390fd5b600691909155600755565b60006103af8484846107ed565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104345760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161038e565b61044885336104438685610ea1565b6106c8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161035a918590610443908690610eb4565b61049433826109d0565b50565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146104dc5760405162461bcd60e51b815260040161038e90610e56565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6060600480546102ca90610e1c565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161038e565b6105c633856104438685610ea1565b5060019392505050565b600061035a3384846107ed565b6005546001600160a01b031633146106075760405162461bcd60e51b815260040161038e90610e56565b6001600160a01b03811661066c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038e565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661072a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038e565b6001600160a01b03821661078b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108515760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038e565b6001600160a01b0382166108b35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038e565b6108be838383610b2b565b6001600160a01b038316600090815260208190526040902054818110156109365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038e565b6109408282610ea1565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610976908490610eb4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109c291815260200190565b60405180910390a350505050565b6001600160a01b038216610a305760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161038e565b610a3c82600083610b2b565b6001600160a01b03821660009081526020819052604090205481811015610ab05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161038e565b610aba8282610ea1565b6001600160a01b03841660009081526020819052604081209190915560028054849290610ae8908490610ea1565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107e0565b6001600160a01b03821660009081526008602052604090205460ff16158015610b6d57506001600160a01b03831660009081526008602052604090205460ff16155b610ba75760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161038e565b6005546001600160a01b03848116911614801590610bd357506005546001600160a01b03838116911614155b15610c265760065481610be584610497565b610bef9190610eb4565b1115610c265760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161038e565b6000600754118015610c4657506005546001600160a01b03848116911614155b8015610c6057506005546001600160a01b03838116911614155b15610cb757600754811115610cb75760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178207472616e73616374696f6e20616d6f756e740000604482015260640161038e565b505050565b600060208083528351808285015260005b81811015610ce957858101830151858201604001528201610ccd565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d2157600080fd5b919050565b60008060408385031215610d3957600080fd5b610d4283610d0a565b946020939093013593505050565b600060208284031215610d6257600080fd5b610d6b82610d0a565b9392505050565b60008060408385031215610d8557600080fd5b50508035926020909101359150565b600080600060608486031215610da957600080fd5b610db284610d0a565b9250610dc060208501610d0a565b9150604084013590509250925092565b600060208284031215610de257600080fd5b5035919050565b60008060408385031215610dfc57600080fd5b610e0583610d0a565b9150610e1360208401610d0a565b90509250929050565b600181811c90821680610e3057607f821691505b602082108103610e5057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561035e5761035e610e8b565b8082018082111561035e5761035e610e8b56fea2646970667358221220d12e00409af2bc2b25e72d34fca716b383cef02a464fe5a5a8bfeee04af1083564736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610241578063a457c2d714610249578063a9059cbb1461025c578063dd62ed3e1461026f578063f2fde38b146102a857600080fd5b806370a08231146101f9578063715018a61461020c57806389f9a1d3146102145780638c0b5e221461021d5780638da5cb5b1461022657600080fd5b806322b28da9116100f457806322b28da91461019c57806323b872dd146101b1578063313ce567146101c457806339509351146101d357806342966c68146101e657600080fd5b806306fdde0314610126578063095ea7b31461014457806316c021291461016757806318160ddd1461018a575b600080fd5b61012e6102bb565b60405161013b9190610cbc565b60405180910390f35b610157610152366004610d26565b61034d565b604051901515815260200161013b565b610157610175366004610d50565b60086020526000908152604090205460ff1681565b6002545b60405190815260200161013b565b6101af6101aa366004610d72565b610364565b005b6101576101bf366004610d94565b6103a2565b6040516012815260200161013b565b6101576101e1366004610d26565b610453565b6101af6101f4366004610dd0565b61048a565b61018e610207366004610d50565b610497565b6101af6104b2565b61018e60065481565b61018e60075481565b6005546040516001600160a01b03909116815260200161013b565b61012e610526565b610157610257366004610d26565b610535565b61015761026a366004610d26565b6105d0565b61018e61027d366004610de9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101af6102b6366004610d50565b6105dd565b6060600380546102ca90610e1c565b80601f01602080910402602001604051908101604052809291908181526020018280546102f690610e1c565b80156103435780601f1061031857610100808354040283529160200191610343565b820191906000526020600020905b81548152906001019060200180831161032657829003601f168201915b5050505050905090565b600061035a3384846106c8565b5060015b92915050565b6005546001600160a01b031633146103975760405162461bcd60e51b815260040161038e90610e56565b60405180910390fd5b600691909155600755565b60006103af8484846107ed565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104345760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161038e565b61044885336104438685610ea1565b6106c8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161035a918590610443908690610eb4565b61049433826109d0565b50565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146104dc5760405162461bcd60e51b815260040161038e90610e56565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6060600480546102ca90610e1c565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161038e565b6105c633856104438685610ea1565b5060019392505050565b600061035a3384846107ed565b6005546001600160a01b031633146106075760405162461bcd60e51b815260040161038e90610e56565b6001600160a01b03811661066c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038e565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661072a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038e565b6001600160a01b03821661078b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108515760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038e565b6001600160a01b0382166108b35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038e565b6108be838383610b2b565b6001600160a01b038316600090815260208190526040902054818110156109365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038e565b6109408282610ea1565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610976908490610eb4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109c291815260200190565b60405180910390a350505050565b6001600160a01b038216610a305760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161038e565b610a3c82600083610b2b565b6001600160a01b03821660009081526020819052604090205481811015610ab05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161038e565b610aba8282610ea1565b6001600160a01b03841660009081526020819052604081209190915560028054849290610ae8908490610ea1565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016107e0565b6001600160a01b03821660009081526008602052604090205460ff16158015610b6d57506001600160a01b03831660009081526008602052604090205460ff16155b610ba75760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161038e565b6005546001600160a01b03848116911614801590610bd357506005546001600160a01b03838116911614155b15610c265760065481610be584610497565b610bef9190610eb4565b1115610c265760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161038e565b6000600754118015610c4657506005546001600160a01b03848116911614155b8015610c6057506005546001600160a01b03838116911614155b15610cb757600754811115610cb75760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178207472616e73616374696f6e20616d6f756e740000604482015260640161038e565b505050565b600060208083528351808285015260005b81811015610ce957858101830151858201604001528201610ccd565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d2157600080fd5b919050565b60008060408385031215610d3957600080fd5b610d4283610d0a565b946020939093013593505050565b600060208284031215610d6257600080fd5b610d6b82610d0a565b9392505050565b60008060408385031215610d8557600080fd5b50508035926020909101359150565b600080600060608486031215610da957600080fd5b610db284610d0a565b9250610dc060208501610d0a565b9150604084013590509250925092565b600060208284031215610de257600080fd5b5035919050565b60008060408385031215610dfc57600080fd5b610e0583610d0a565b9150610e1360208401610d0a565b90509250929050565b600181811c90821680610e3057607f821691505b602082108103610e5057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561035e5761035e610e8b565b8082018082111561035e5761035e610e8b56fea2646970667358221220d12e00409af2bc2b25e72d34fca716b383cef02a464fe5a5a8bfeee04af1083564736f6c63430008120033
Deployed Bytecode Sourcemap
18242:1198:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8976:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11209:194;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11209:194:0;1004:187:1;18352:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10096:108;10184:12;;10096:108;;;1533:25:1;;;1521:2;1506:18;10096:108:0;1387:177:1;18623:202:0;;;;;;:::i;:::-;;:::i;:::-;;11885:493;;;;;;:::i;:::-;;:::i;9938:93::-;;;10021:2;2297:36:1;;2285:2;2270:18;9938:93:0;2155:184:1;12787:290:0;;;;;;:::i;:::-;;:::i;19356:81::-;;;;;;:::i;:::-;;:::i;10267:143::-;;;;;;:::i;:::-;;:::i;2766:148::-;;;:::i;18281:31::-;;;;;;18319:26;;;;;;2115:87;2188:6;;2115:87;;-1:-1:-1;;;;;2188:6:0;;;2675:51:1;;2663:2;2648:18;2115:87:0;2529:203:1;9195:104:0;;;:::i;13580:439::-;;;;;;:::i;:::-;;:::i;10623:200::-;;;;;;:::i;:::-;;:::i;10886:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11027:18:0;;;11000:7;11027:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10886:176;3069:281;;;;;;:::i;:::-;;:::i;8976:100::-;9030:13;9063:5;9056:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8976:100;:::o;11209:194::-;11317:4;11334:39;733:10;11357:7;11366:6;11334:8;:39::i;:::-;-1:-1:-1;11391:4:0;11209:194;;;;;:::o;18623:202::-;2188:6;;-1:-1:-1;;;;;2188:6:0;733:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;;;;;;;;;18744:16:::1;:36:::0;;;;18791:11:::1;:26:::0;18623:202::o;11885:493::-;12025:4;12042:36;12052:6;12060:9;12071:6;12042:9;:36::i;:::-;-1:-1:-1;;;;;12118:19:0;;12091:24;12118:19;;;:11;:19;;;;;;;;733:10;12118:33;;;;;;;;12184:26;;;;12162:116;;;;-1:-1:-1;;;12162:116:0;;3950:2:1;12162:116:0;;;3932:21:1;3989:2;3969:18;;;3962:30;4028:34;4008:18;;;4001:62;-1:-1:-1;;;4079:18:1;;;4072:38;4127:19;;12162:116:0;3748:404:1;12162:116:0;12289:57;12298:6;733:10;12320:25;12339:6;12320:16;:25;:::i;:::-;12289:8;:57::i;:::-;-1:-1:-1;12366:4:0;;11885:493;-1:-1:-1;;;;11885:493:0:o;12787:290::-;733:10;12900:4;12989:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12989:34:0;;;;;;;;;;12900:4;;12917:130;;12967:7;;12989:47;;13026:10;;12989:47;:::i;19356:81::-;19405:24;19411:10;19423:5;19405;:24::i;:::-;19356:81;:::o;10267:143::-;-1:-1:-1;;;;;10384:18:0;10357:7;10384:18;;;;;;;;;;;;10267:143::o;2766:148::-;2188:6;;-1:-1:-1;;;;;2188:6:0;733:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;2857:6:::1;::::0;2836:40:::1;::::0;2873:1:::1;::::0;-1:-1:-1;;;;;2857:6:0::1;::::0;2836:40:::1;::::0;2873:1;;2836:40:::1;2887:6;:19:::0;;-1:-1:-1;;;;;;2887:19:0::1;::::0;;2766:148::o;9195:104::-;9251:13;9284:7;9277:14;;;;;:::i;13580:439::-;733:10;13698:4;13742:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13742:34:0;;;;;;;;;;13809:35;;;;13787:122;;;;-1:-1:-1;;;13787:122:0;;4754:2:1;13787:122:0;;;4736:21:1;4793:2;4773:18;;;4766:30;4832:34;4812:18;;;4805:62;-1:-1:-1;;;4883:18:1;;;4876:35;4928:19;;13787:122:0;4552:401:1;13787:122:0;13920:67;733:10;13943:7;13952:34;13971:15;13952:16;:34;:::i;13920:67::-;-1:-1:-1;14007:4:0;;13580:439;-1:-1:-1;;;13580:439:0:o;10623:200::-;10734:4;10751:42;733:10;10775:9;10786:6;10751:9;:42::i;3069:281::-;2188:6;;-1:-1:-1;;;;;2188:6:0;733:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3172:22:0;::::1;3150:110;;;::::0;-1:-1:-1;;;3150:110:0;;5160:2:1;3150:110:0::1;::::0;::::1;5142:21:1::0;5199:2;5179:18;;;5172:30;5238:34;5218:18;;;5211:62;-1:-1:-1;;;5289:18:1;;;5282:36;5335:19;;3150:110:0::1;4958:402:1::0;3150:110:0::1;3297:6;::::0;3276:38:::1;::::0;-1:-1:-1;;;;;3276:38:0;;::::1;::::0;3297:6:::1;::::0;3276:38:::1;::::0;3297:6:::1;::::0;3276:38:::1;3325:6;:17:::0;;-1:-1:-1;;;;;;3325:17:0::1;-1:-1:-1::0;;;;;3325:17:0;;;::::1;::::0;;;::::1;::::0;;3069:281::o;17069:380::-;-1:-1:-1;;;;;17205:19:0;;17197:68;;;;-1:-1:-1;;;17197:68:0;;5567:2:1;17197:68:0;;;5549:21:1;5606:2;5586:18;;;5579:30;5645:34;5625:18;;;5618:62;-1:-1:-1;;;5696:18:1;;;5689:34;5740:19;;17197:68:0;5365:400:1;17197:68:0;-1:-1:-1;;;;;17284:21:0;;17276:68;;;;-1:-1:-1;;;17276:68:0;;5972:2:1;17276:68:0;;;5954:21:1;6011:2;5991:18;;;5984:30;6050:34;6030:18;;;6023:62;-1:-1:-1;;;6101:18:1;;;6094:32;6143:19;;17276:68:0;5770:398:1;17276:68:0;-1:-1:-1;;;;;17357:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17409:32;;1533:25:1;;;17409:32:0;;1506:18:1;17409:32:0;;;;;;;;17069:380;;;:::o;14509:675::-;-1:-1:-1;;;;;14649:20:0;;14641:70;;;;-1:-1:-1;;;14641:70:0;;6375:2:1;14641:70:0;;;6357:21:1;6414:2;6394:18;;;6387:30;6453:34;6433:18;;;6426:62;-1:-1:-1;;;6504:18:1;;;6497:35;6549:19;;14641:70:0;6173:401:1;14641:70:0;-1:-1:-1;;;;;14730:23:0;;14722:71;;;;-1:-1:-1;;;14722:71:0;;6781:2:1;14722:71:0;;;6763:21:1;6820:2;6800:18;;;6793:30;6859:34;6839:18;;;6832:62;-1:-1:-1;;;6910:18:1;;;6903:33;6953:19;;14722:71:0;6579:399:1;14722:71:0;14806:47;14827:6;14835:9;14846:6;14806:20;:47::i;:::-;-1:-1:-1;;;;;14890:17:0;;14866:21;14890:17;;;;;;;;;;;14940:23;;;;14918:111;;;;-1:-1:-1;;;14918:111:0;;7185:2:1;14918:111:0;;;7167:21:1;7224:2;7204:18;;;7197:30;7263:34;7243:18;;;7236:62;-1:-1:-1;;;7314:18:1;;;7307:36;7360:19;;14918:111:0;6983:402:1;14918:111:0;15060:22;15076:6;15060:13;:22;:::i;:::-;-1:-1:-1;;;;;15040:17:0;;;:9;:17;;;;;;;;;;;:42;;;;15093:20;;;;;;;;:30;;15117:6;;15040:9;15093:30;;15117:6;;15093:30;:::i;:::-;;;;;;;;15158:9;-1:-1:-1;;;;;15141:35:0;15150:6;-1:-1:-1;;;;;15141:35:0;;15169:6;15141:35;;;;1533:25:1;;1521:2;1506:18;;1387:177;15141:35:0;;;;;;;;14630:554;14509:675;;;:::o;16137:494::-;-1:-1:-1;;;;;16221:21:0;;16213:67;;;;-1:-1:-1;;;16213:67:0;;7592:2:1;16213:67:0;;;7574:21:1;7631:2;7611:18;;;7604:30;7670:34;7650:18;;;7643:62;-1:-1:-1;;;7721:18:1;;;7714:31;7762:19;;16213:67:0;7390:397:1;16213:67:0;16293:49;16314:7;16331:1;16335:6;16293:20;:49::i;:::-;-1:-1:-1;;;;;16380:18:0;;16355:22;16380:18;;;;;;;;;;;16417:24;;;;16409:71;;;;-1:-1:-1;;;16409:71:0;;7994:2:1;16409:71:0;;;7976:21:1;8033:2;8013:18;;;8006:30;8072:34;8052:18;;;8045:62;-1:-1:-1;;;8123:18:1;;;8116:32;8165:19;;16409:71:0;7792:398:1;16409:71:0;16512:23;16529:6;16512:14;:23;:::i;:::-;-1:-1:-1;;;;;16491:18:0;;:9;:18;;;;;;;;;;:44;;;;16546:12;:22;;16562:6;;16491:9;16546:22;;16562:6;;16546:22;:::i;:::-;;;;-1:-1:-1;;16586:37:0;;1533:25:1;;;16612:1:0;;-1:-1:-1;;;;;16586:37:0;;;;;1521:2:1;1506:18;16586:37:0;1387:177:1;18833:515:0;-1:-1:-1;;;;;18985:14:0;;;;;;:10;:14;;;;;;;;18984:15;:36;;;;-1:-1:-1;;;;;;19004:16:0;;;;;;:10;:16;;;;;;;;19003:17;18984:36;18976:60;;;;-1:-1:-1;;;18976:60:0;;8397:2:1;18976:60:0;;;8379:21:1;8436:2;8416:18;;;8409:30;-1:-1:-1;;;8455:18:1;;;8448:41;8506:18;;18976:60:0;8195:335:1;18976:60:0;2188:6;;-1:-1:-1;;;;;19053:15:0;;;2188:6;;19053:15;;;;:32;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;19072:13:0;;;2188:6;;19072:13;;19053:32;19049:132;;;19142:16;;19132:6;19110:19;19126:2;19110:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;19102:67;;;;-1:-1:-1;;;19102:67:0;;8737:2:1;19102:67:0;;;8719:21:1;8776:1;8756:18;;;8749:29;-1:-1:-1;;;8794:18:1;;;8787:36;8840:18;;19102:67:0;8535:329:1;19102:67:0;19211:1;19197:11;;:15;:34;;;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;19216:15:0;;;2188:6;;19216:15;;19197:34;:51;;;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;19235:13:0;;;2188:6;;19235:13;;19197:51;19193:148;;;19283:11;;19273:6;:21;;19265:64;;;;-1:-1:-1;;;19265:64:0;;9071:2:1;19265:64:0;;;9053:21:1;9110:2;9090:18;;;9083:30;9149:32;9129:18;;;9122:60;9199:18;;19265:64:0;8869:354:1;19265:64:0;18833:515;;;:::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;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:248::-;1637:6;1645;1698:2;1686:9;1677:7;1673:23;1669:32;1666:52;;;1714:1;1711;1704:12;1666:52;-1:-1:-1;;1737:23:1;;;1807:2;1792:18;;;1779:32;;-1:-1:-1;1569:248:1:o;1822:328::-;1899:6;1907;1915;1968:2;1956:9;1947:7;1943:23;1939:32;1936:52;;;1984:1;1981;1974:12;1936:52;2007:29;2026:9;2007:29;:::i;:::-;1997:39;;2055:38;2089:2;2078:9;2074:18;2055:38;:::i;:::-;2045:48;;2140:2;2129:9;2125:18;2112:32;2102:42;;1822:328;;;;;:::o;2344:180::-;2403:6;2456:2;2444:9;2435:7;2431:23;2427:32;2424:52;;;2472:1;2469;2462:12;2424:52;-1:-1:-1;2495:23:1;;2344:180;-1:-1:-1;2344:180:1:o;2737:260::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2905:29;2924:9;2905:29;:::i;:::-;2895:39;;2953:38;2987:2;2976:9;2972:18;2953:38;:::i;:::-;2943:48;;2737:260;;;;;:::o;3002:380::-;3081:1;3077:12;;;;3124;;;3145:61;;3199:4;3191:6;3187:17;3177:27;;3145:61;3252:2;3244:6;3241:14;3221:18;3218:38;3215:161;;3298:10;3293:3;3289:20;3286:1;3279:31;3333:4;3330:1;3323:15;3361:4;3358:1;3351:15;3215:161;;3002:380;;;:::o;3387:356::-;3589:2;3571:21;;;3608:18;;;3601:30;3667:34;3662:2;3647:18;;3640:62;3734:2;3719:18;;3387:356::o;4157:127::-;4218:10;4213:3;4209:20;4206:1;4199:31;4249:4;4246:1;4239:15;4273:4;4270:1;4263:15;4289:128;4356:9;;;4377:11;;;4374:37;;;4391:18;;:::i;4422:125::-;4487:9;;;4508:10;;;4505:36;;;4521:18;;:::i
Swarm Source
ipfs://d12e00409af2bc2b25e72d34fca716b383cef02a464fe5a5a8bfeee04af10835
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.