ERC-20
MEME
Overview
Max Total Supply
68,476,574,538.393218224497021691 ASPC
Holders
561 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000101 ASPCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
AstroPupCoin
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-10 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @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); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address to, uint256 amount ) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } contract AstroPupCoin is ERC20, ERC20Burnable, Pausable, Ownable { uint256 public burnPercentage = 1; // 1% burn rate constructor() ERC20("AstroPup Coin", "ASPC") { uint256 totalSupply = 69_000_000_000 * 10 ** decimals(); _mint(msg.sender, totalSupply); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function setBurnPercentage(uint256 newBurnPercentage) public onlyOwner { require( newBurnPercentage <= 10, "Burn percentage must be between 0 and 10." ); burnPercentage = newBurnPercentage; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override(ERC20) whenNotPaused { super._beforeTokenTransfer(from, to, amount); } function _transfer( address from, address to, uint256 amount ) internal override { uint256 burnAmount = (amount * burnPercentage) / 100; uint256 remainingAmount = amount - burnAmount; super._transfer(from, to, remainingAmount); if (burnAmount > 0) { super._burn(from, burnAmount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBurnPercentage","type":"uint256"}],"name":"setBurnPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260016006553480156200001657600080fd5b506040518060400160405280600d81526020016c20b9ba3937a83ab81021b7b4b760991b815250604051806040016040528060048152602001634153504360e01b81525081600390816200006b919062000307565b5060046200007a828262000307565b50506005805460ff19169055506200009233620000c8565b6000620000a26012600a620004e8565b620000b390641010b8720062000500565b9050620000c1338262000122565b5062000530565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200017e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200018c60008383620001f7565b8060026000828254620001a091906200051a565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6200020162000219565b620002148383836001600160e01b038416565b505050565b60055460ff1615620002615760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000175565b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200028e57607f821691505b602082108103620002af57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021457600081815260208120601f850160051c81016020861015620002de5750805b601f850160051c820191505b81811015620002ff57828155600101620002ea565b505050505050565b81516001600160401b0381111562000323576200032362000263565b6200033b8162000334845462000279565b84620002b5565b602080601f8311600181146200037357600084156200035a5750858301515b600019600386901b1c1916600185901b178555620002ff565b600085815260208120601f198616915b82811015620003a45788860151825594840194600190910190840162000383565b5085821015620003c35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200042a5781600019048211156200040e576200040e620003d3565b808516156200041c57918102915b93841c9390800290620003ee565b509250929050565b6000826200044357506001620004e2565b816200045257506000620004e2565b81600181146200046b5760028114620004765762000496565b6001915050620004e2565b60ff8411156200048a576200048a620003d3565b50506001821b620004e2565b5060208310610133831016604e8410600b8410161715620004bb575081810a620004e2565b620004c78383620003e9565b8060001904821115620004de57620004de620003d3565b0290505b92915050565b6000620004f960ff84168362000432565b9392505050565b8082028115828204841417620004e257620004e2620003d3565b80820180821115620004e257620004e2620003d3565b610ea580620005406000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610269578063a9059cbb1461027c578063c3f0d3271461028f578063dd62ed3e146102a2578063f01f20df146102b5578063f2fde38b146102be57600080fd5b8063715018a61461021557806379cc67901461021d5780638456cb59146102305780638da5cb5b1461023857806395d89b411461026157600080fd5b806339509351116100ff57806339509351146101b15780633f4ba83a146101c457806342966c68146101ce5780635c975abb146101e157806370a08231146101ec57600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d57806323b872dd1461018f578063313ce567146101a2575b600080fd5b6101446102d1565b6040516101519190610c82565b60405180910390f35b61016d610168366004610cec565b610363565b6040519015158152602001610151565b6002545b604051908152602001610151565b61016d61019d366004610d16565b61037d565b60405160128152602001610151565b61016d6101bf366004610cec565b6103a1565b6101cc6103c3565b005b6101cc6101dc366004610d52565b6103d5565b60055460ff1661016d565b6101816101fa366004610d6b565b6001600160a01b031660009081526020819052604090205490565b6101cc6103e2565b6101cc61022b366004610cec565b6103f4565b6101cc61040d565b60055461010090046001600160a01b03166040516001600160a01b039091168152602001610151565b61014461041d565b61016d610277366004610cec565b61042c565b61016d61028a366004610cec565b6104ac565b6101cc61029d366004610d52565b6104ba565b6101816102b0366004610d8d565b61052a565b61018160065481565b6101cc6102cc366004610d6b565b610555565b6060600380546102e090610dc0565b80601f016020809104026020016040519081016040528092919081815260200182805461030c90610dc0565b80156103595780601f1061032e57610100808354040283529160200191610359565b820191906000526020600020905b81548152906001019060200180831161033c57829003601f168201915b5050505050905090565b6000336103718185856105cb565b60019150505b92915050565b60003361038b8582856106f0565b61039685858561076a565b506001949350505050565b6000336103718185856103b4838361052a565b6103be9190610e10565b6105cb565b6103cb6107b8565b6103d3610818565b565b6103df338261086a565b50565b6103ea6107b8565b6103d360006109a0565b6103ff8233836106f0565b610409828261086a565b5050565b6104156107b8565b6103d36109fa565b6060600480546102e090610dc0565b6000338161043a828661052a565b90508381101561049f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61039682868684036105cb565b60003361037181858561076a565b6104c26107b8565b600a8111156105255760405162461bcd60e51b815260206004820152602960248201527f4275726e2070657263656e74616765206d757374206265206265747765656e20604482015268181030b7321018981760b91b6064820152608401610496565b600655565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61055d6107b8565b6001600160a01b0381166105c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610496565b6103df816109a0565b6001600160a01b03831661062d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610496565b6001600160a01b03821661068e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610496565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106fc848461052a565b9050600019811461076457818110156107575760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610496565b61076484848484036105cb565b50505050565b600060646006548361077c9190610e23565b6107869190610e3a565b905060006107948284610e5c565b90506107a1858583610a37565b81156107b1576107b1858361086a565b5050505050565b6005546001600160a01b036101009091041633146103d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610496565b610820610be6565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166108ca5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610496565b6108d682600083610c2f565b6001600160a01b0382166000908152602081905260409020548181101561094a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610496565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016106e3565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a02610c3c565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861084d3390565b6001600160a01b038316610a9b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610496565b6001600160a01b038216610afd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610496565b610b08838383610c2f565b6001600160a01b03831660009081526020819052604090205481811015610b805760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610496565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610764565b60055460ff166103d35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610496565b610c37610c3c565b505050565b60055460ff16156103d35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610496565b600060208083528351808285015260005b81811015610caf57858101830151858201604001528201610c93565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ce757600080fd5b919050565b60008060408385031215610cff57600080fd5b610d0883610cd0565b946020939093013593505050565b600080600060608486031215610d2b57600080fd5b610d3484610cd0565b9250610d4260208501610cd0565b9150604084013590509250925092565b600060208284031215610d6457600080fd5b5035919050565b600060208284031215610d7d57600080fd5b610d8682610cd0565b9392505050565b60008060408385031215610da057600080fd5b610da983610cd0565b9150610db760208401610cd0565b90509250929050565b600181811c90821680610dd457607f821691505b602082108103610df457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561037757610377610dfa565b808202811582820484141761037757610377610dfa565b600082610e5757634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561037757610377610dfa56fea2646970667358221220ddb6f8c16cdfe0f4e07bd4d99c966cdee3e4decff4415b6a83eb7010c6fb474c64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610269578063a9059cbb1461027c578063c3f0d3271461028f578063dd62ed3e146102a2578063f01f20df146102b5578063f2fde38b146102be57600080fd5b8063715018a61461021557806379cc67901461021d5780638456cb59146102305780638da5cb5b1461023857806395d89b411461026157600080fd5b806339509351116100ff57806339509351146101b15780633f4ba83a146101c457806342966c68146101ce5780635c975abb146101e157806370a08231146101ec57600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d57806323b872dd1461018f578063313ce567146101a2575b600080fd5b6101446102d1565b6040516101519190610c82565b60405180910390f35b61016d610168366004610cec565b610363565b6040519015158152602001610151565b6002545b604051908152602001610151565b61016d61019d366004610d16565b61037d565b60405160128152602001610151565b61016d6101bf366004610cec565b6103a1565b6101cc6103c3565b005b6101cc6101dc366004610d52565b6103d5565b60055460ff1661016d565b6101816101fa366004610d6b565b6001600160a01b031660009081526020819052604090205490565b6101cc6103e2565b6101cc61022b366004610cec565b6103f4565b6101cc61040d565b60055461010090046001600160a01b03166040516001600160a01b039091168152602001610151565b61014461041d565b61016d610277366004610cec565b61042c565b61016d61028a366004610cec565b6104ac565b6101cc61029d366004610d52565b6104ba565b6101816102b0366004610d8d565b61052a565b61018160065481565b6101cc6102cc366004610d6b565b610555565b6060600380546102e090610dc0565b80601f016020809104026020016040519081016040528092919081815260200182805461030c90610dc0565b80156103595780601f1061032e57610100808354040283529160200191610359565b820191906000526020600020905b81548152906001019060200180831161033c57829003601f168201915b5050505050905090565b6000336103718185856105cb565b60019150505b92915050565b60003361038b8582856106f0565b61039685858561076a565b506001949350505050565b6000336103718185856103b4838361052a565b6103be9190610e10565b6105cb565b6103cb6107b8565b6103d3610818565b565b6103df338261086a565b50565b6103ea6107b8565b6103d360006109a0565b6103ff8233836106f0565b610409828261086a565b5050565b6104156107b8565b6103d36109fa565b6060600480546102e090610dc0565b6000338161043a828661052a565b90508381101561049f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61039682868684036105cb565b60003361037181858561076a565b6104c26107b8565b600a8111156105255760405162461bcd60e51b815260206004820152602960248201527f4275726e2070657263656e74616765206d757374206265206265747765656e20604482015268181030b7321018981760b91b6064820152608401610496565b600655565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61055d6107b8565b6001600160a01b0381166105c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610496565b6103df816109a0565b6001600160a01b03831661062d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610496565b6001600160a01b03821661068e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610496565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006106fc848461052a565b9050600019811461076457818110156107575760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610496565b61076484848484036105cb565b50505050565b600060646006548361077c9190610e23565b6107869190610e3a565b905060006107948284610e5c565b90506107a1858583610a37565b81156107b1576107b1858361086a565b5050505050565b6005546001600160a01b036101009091041633146103d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610496565b610820610be6565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166108ca5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610496565b6108d682600083610c2f565b6001600160a01b0382166000908152602081905260409020548181101561094a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610496565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016106e3565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a02610c3c565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861084d3390565b6001600160a01b038316610a9b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610496565b6001600160a01b038216610afd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610496565b610b08838383610c2f565b6001600160a01b03831660009081526020819052604090205481811015610b805760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610496565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610764565b60055460ff166103d35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610496565b610c37610c3c565b505050565b60055460ff16156103d35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610496565b600060208083528351808285015260005b81811015610caf57858101830151858201604001528201610c93565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ce757600080fd5b919050565b60008060408385031215610cff57600080fd5b610d0883610cd0565b946020939093013593505050565b600080600060608486031215610d2b57600080fd5b610d3484610cd0565b9250610d4260208501610cd0565b9150604084013590509250925092565b600060208284031215610d6457600080fd5b5035919050565b600060208284031215610d7d57600080fd5b610d8682610cd0565b9392505050565b60008060408385031215610da057600080fd5b610da983610cd0565b9150610db760208401610cd0565b90509250929050565b600181811c90821680610dd457607f821691505b602082108103610df457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561037757610377610dfa565b808202811582820484141761037757610377610dfa565b600082610e5757634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561037757610377610dfa56fea2646970667358221220ddb6f8c16cdfe0f4e07bd4d99c966cdee3e4decff4415b6a83eb7010c6fb474c64736f6c63430008130033
Deployed Bytecode Sourcemap
23617:1295:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11205:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13622:226;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13622:226:0;1004:187:1;12325:108:0;12413:12;;12325:108;;;1342:25:1;;;1330:2;1315:18;12325:108:0;1196:177:1;14428:295:0;;;;;;:::i;:::-;;:::i;12167:93::-;;;12250:2;1853:36:1;;1841:2;1826:18;12167:93:0;1711:184:1;15132:263:0;;;;;;:::i;:::-;;:::i;23984:65::-;;;:::i;:::-;;23036:91;;;;;;:::i;:::-;;:::i;4927:86::-;4998:7;;;;4927:86;;12496:143;;;;;;:::i;:::-;-1:-1:-1;;;;;12613:18:0;12586:7;12613:18;;;;;;;;;;;;12496:143;2564:103;;;:::i;23446:164::-;;;;;;:::i;:::-;;:::i;23915:61::-;;;:::i;1916:87::-;1989:6;;;;;-1:-1:-1;;;;;1989:6:0;1916:87;;-1:-1:-1;;;;;2440:32:1;;;2422:51;;2410:2;2395:18;1916:87:0;2276:203:1;11424:104:0;;;:::i;15898:498::-;;;;;;:::i;:::-;;:::i;12845:218::-;;;;;;:::i;:::-;;:::i;24057:249::-;;;;;;:::i;:::-;;:::i;13126:176::-;;;;;;:::i;:::-;;:::i;23689:33::-;;;;;;2822:238;;;;;;:::i;:::-;;:::i;11205:100::-;11259:13;11292:5;11285:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11205:100;:::o;13622:226::-;13730:4;680:10;13786:32;680:10;13802:7;13811:6;13786:8;:32::i;:::-;13836:4;13829:11;;;13622:226;;;;;:::o;14428:295::-;14559:4;680:10;14617:38;14633:4;680:10;14648:6;14617:15;:38::i;:::-;14666:27;14676:4;14682:2;14686:6;14666:9;:27::i;:::-;-1:-1:-1;14711:4:0;;14428:295;-1:-1:-1;;;;14428:295:0:o;15132:263::-;15245:4;680:10;15301:64;680:10;15317:7;15354:10;15326:25;680:10;15317:7;15326:9;:25::i;:::-;:38;;;;:::i;:::-;15301:8;:64::i;23984:65::-;1802:13;:11;:13::i;:::-;24031:10:::1;:8;:10::i;:::-;23984:65::o:0;23036:91::-;23092:27;680:10;23112:6;23092:5;:27::i;:::-;23036:91;:::o;2564:103::-;1802:13;:11;:13::i;:::-;2629:30:::1;2656:1;2629:18;:30::i;23446:164::-:0;23523:46;23539:7;680:10;23562:6;23523:15;:46::i;:::-;23580:22;23586:7;23595:6;23580:5;:22::i;:::-;23446:164;;:::o;23915:61::-;1802:13;:11;:13::i;:::-;23960:8:::1;:6;:8::i;11424:104::-:0;11480:13;11513:7;11506:14;;;;;:::i;15898:498::-;16016:4;680:10;16016:4;16099:25;680:10;16116:7;16099:9;:25::i;:::-;16072:52;;16177:15;16157:16;:35;;16135:122;;;;-1:-1:-1;;;16135:122:0;;3598:2:1;16135:122:0;;;3580:21:1;3637:2;3617:18;;;3610:30;3676:34;3656:18;;;3649:62;-1:-1:-1;;;3727:18:1;;;3720:35;3772:19;;16135:122:0;;;;;;;;;16293:60;16302:5;16309:7;16337:15;16318:16;:34;16293:8;:60::i;12845:218::-;12949:4;680:10;13005:28;680:10;13022:2;13026:6;13005:9;:28::i;24057:249::-;1802:13;:11;:13::i;:::-;24182:2:::1;24161:17;:23;;24139:114;;;::::0;-1:-1:-1;;;24139:114:0;;4004:2:1;24139:114:0::1;::::0;::::1;3986:21:1::0;4043:2;4023:18;;;4016:30;4082:34;4062:18;;;4055:62;-1:-1:-1;;;4133:18:1;;;4126:39;4182:19;;24139:114:0::1;3802:405:1::0;24139:114:0::1;24264:14;:34:::0;24057:249::o;13126:176::-;-1:-1:-1;;;;;13267:18:0;;;13240:7;13267:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13126:176::o;2822:238::-;1802:13;:11;:13::i;:::-;-1:-1:-1;;;;;2925:22:0;::::1;2903:110;;;::::0;-1:-1:-1;;;2903:110:0;;4414:2:1;2903:110:0::1;::::0;::::1;4396:21:1::0;4453:2;4433:18;;;4426:30;4492:34;4472:18;;;4465:62;-1:-1:-1;;;4543:18:1;;;4536:36;4589:19;;2903:110:0::1;4212:402:1::0;2903:110:0::1;3024:28;3043:8;3024:18;:28::i;20024:380::-:0;-1:-1:-1;;;;;20160:19:0;;20152:68;;;;-1:-1:-1;;;20152:68:0;;4821:2:1;20152:68:0;;;4803:21:1;4860:2;4840:18;;;4833:30;4899:34;4879:18;;;4872:62;-1:-1:-1;;;4950:18:1;;;4943:34;4994:19;;20152:68:0;4619:400:1;20152:68:0;-1:-1:-1;;;;;20239:21:0;;20231:68;;;;-1:-1:-1;;;20231:68:0;;5226:2:1;20231:68:0;;;5208:21:1;5265:2;5245:18;;;5238:30;5304:34;5284:18;;;5277:62;-1:-1:-1;;;5355:18:1;;;5348:32;5397:19;;20231:68:0;5024:398:1;20231:68:0;-1:-1:-1;;;;;20312:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20364:32;;1342:25:1;;;20364:32:0;;1315:18:1;20364:32:0;;;;;;;;20024:380;;;:::o;20695:502::-;20830:24;20857:25;20867:5;20874:7;20857:9;:25::i;:::-;20830:52;;-1:-1:-1;;20897:16:0;:37;20893:297;;20997:6;20977:16;:26;;20951:117;;;;-1:-1:-1;;;20951:117:0;;5629:2:1;20951:117:0;;;5611:21:1;5668:2;5648:18;;;5641:30;5707:31;5687:18;;;5680:59;5756:18;;20951:117:0;5427:353:1;20951:117:0;21112:51;21121:5;21128:7;21156:6;21137:16;:25;21112:8;:51::i;:::-;20819:378;20695:502;;;:::o;24530:379::-;24654:18;24703:3;24685:14;;24676:6;:23;;;;:::i;:::-;24675:31;;;;:::i;:::-;24654:52;-1:-1:-1;24717:23:0;24743:19;24654:52;24743:6;:19;:::i;:::-;24717:45;;24773:42;24789:4;24795:2;24799:15;24773;:42::i;:::-;24830:14;;24826:76;;24861:29;24873:4;24879:10;24861:11;:29::i;:::-;24643:266;;24530:379;;;:::o;2081:132::-;1989:6;;-1:-1:-1;;;;;1989:6:0;;;;;680:10;2145:23;2137:68;;;;-1:-1:-1;;;2137:68:0;;6515:2:1;2137:68:0;;;6497:21:1;;;6534:18;;;6527:30;6593:34;6573:18;;;6566:62;6645:18;;2137:68:0;6313:356:1;5782:120:0;4791:16;:14;:16::i;:::-;5841:7:::1;:15:::0;;-1:-1:-1;;5841:15:0::1;::::0;;5872:22:::1;680:10:::0;5881:12:::1;5872:22;::::0;-1:-1:-1;;;;;2440:32:1;;;2422:51;;2410:2;2395:18;5872:22:0::1;;;;;;;5782:120::o:0;18911:675::-;-1:-1:-1;;;;;18995:21:0;;18987:67;;;;-1:-1:-1;;;18987:67:0;;6876:2:1;18987:67:0;;;6858:21:1;6915:2;6895:18;;;6888:30;6954:34;6934:18;;;6927:62;-1:-1:-1;;;7005:18:1;;;6998:31;7046:19;;18987:67:0;6674:397:1;18987:67:0;19067:49;19088:7;19105:1;19109:6;19067:20;:49::i;:::-;-1:-1:-1;;;;;19154:18:0;;19129:22;19154:18;;;;;;;;;;;19191:24;;;;19183:71;;;;-1:-1:-1;;;19183:71:0;;7278:2:1;19183:71:0;;;7260:21:1;7317:2;7297:18;;;7290:30;7356:34;7336:18;;;7329:62;-1:-1:-1;;;7407:18:1;;;7400:32;7449:19;;19183:71:0;7076:398:1;19183:71:0;-1:-1:-1;;;;;19290:18:0;;:9;:18;;;;;;;;;;;19311:23;;;19290:44;;19429:12;:22;;;;;;;19480:37;1342:25:1;;;19290:9:0;;:18;19480:37;;1315:18:1;19480:37:0;1196:177:1;3220:191:0;3313:6;;;-1:-1:-1;;;;;3330:17:0;;;3313:6;3330:17;;;-1:-1:-1;;;;;;3330:17:0;;;;;;3363:40;;3313:6;;;;;;;;3363:40;;3294:16;;3363:40;3283:128;3220:191;:::o;5523:118::-;4532:19;:17;:19::i;:::-;5583:7:::1;:14:::0;;-1:-1:-1;;5583:14:0::1;5593:4;5583:14;::::0;;5613:20:::1;5620:12;680:10:::0;;600:98;16866:877;-1:-1:-1;;;;;16997:18:0;;16989:68;;;;-1:-1:-1;;;16989:68:0;;7681:2:1;16989:68:0;;;7663:21:1;7720:2;7700:18;;;7693:30;7759:34;7739:18;;;7732:62;-1:-1:-1;;;7810:18:1;;;7803:35;7855:19;;16989:68:0;7479:401:1;16989:68:0;-1:-1:-1;;;;;17076:16:0;;17068:64;;;;-1:-1:-1;;;17068:64:0;;8087:2:1;17068:64:0;;;8069:21:1;8126:2;8106:18;;;8099:30;8165:34;8145:18;;;8138:62;-1:-1:-1;;;8216:18:1;;;8209:33;8259:19;;17068:64:0;7885:399:1;17068:64:0;17145:38;17166:4;17172:2;17176:6;17145:20;:38::i;:::-;-1:-1:-1;;;;;17218:15:0;;17196:19;17218:15;;;;;;;;;;;17266:21;;;;17244:109;;;;-1:-1:-1;;;17244:109:0;;8491:2:1;17244:109:0;;;8473:21:1;8530:2;8510:18;;;8503:30;8569:34;8549:18;;;8542:62;-1:-1:-1;;;8620:18:1;;;8613:36;8666:19;;17244:109:0;8289:402:1;17244:109:0;-1:-1:-1;;;;;17389:15:0;;;:9;:15;;;;;;;;;;;17407:20;;;17389:38;;17607:13;;;;;;;;;;:23;;;;;;17659:26;;1342:25:1;;;17607:13:0;;17659:26;;1315:18:1;17659:26:0;;;;;;;17698:37;18911:675;5271:108;4998:7;;;;5330:41;;;;-1:-1:-1;;;5330:41:0;;8898:2:1;5330:41:0;;;8880:21:1;8937:2;8917:18;;;8910:30;-1:-1:-1;;;8956:18:1;;;8949:50;9016:18;;5330:41:0;8696:344:1;24314:208:0;4532:19;:17;:19::i;:::-;18976:610;18911:675;;:::o;5086:108::-;4998:7;;;;5156:9;5148:38;;;;-1:-1:-1;;;5148:38:0;;9247:2:1;5148:38:0;;;9229:21:1;9286:2;9266:18;;;9259:30;-1:-1:-1;;;9305:18:1;;;9298:46;9361:18;;5148:38:0;9045:340:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;3134:127::-;3195:10;3190:3;3186:20;3183:1;3176:31;3226:4;3223:1;3216:15;3250:4;3247:1;3240:15;3266:125;3331:9;;;3352:10;;;3349:36;;;3365:18;;:::i;5785:168::-;5858:9;;;5889;;5906:15;;;5900:22;;5886:37;5876:71;;5927:18;;:::i;5958:217::-;5998:1;6024;6014:132;;6068:10;6063:3;6059:20;6056:1;6049:31;6103:4;6100:1;6093:15;6131:4;6128:1;6121:15;6014:132;-1:-1:-1;6160:9:1;;5958:217::o;6180:128::-;6247:9;;;6268:11;;;6265:37;;;6282:18;;:::i
Swarm Source
ipfs://ddb6f8c16cdfe0f4e07bd4d99c966cdee3e4decff4415b6a83eb7010c6fb474c
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.