ERC-20
Overview
Max Total Supply
2,000,000,000 WOAF
Holders
398
Market
Price
$0.00 @ 0.000000 AVAX
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
14,945,688.188739370988082743 WOAFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
WOAF
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2024-04-06 */ // SPDX-License-Identifier: MIT //🐶 https://t.me/woafwise //🔺 https://twitter.com/woafwise 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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } /** * @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}. * * 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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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 ERC-20 * 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 ERC may not emit * these events, as it isn't required by the specification. */ /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ 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); } abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the ERC. 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } contract WOAF is ERC20, Ownable(msg.sender) { // Added state variable for lubrication - gently does it! bool public lubricating = true; address public liquidityPool; constructor() ERC20("Woafwise", "WOAF") { _mint(msg.sender, 2000000000 * 10 ** 18); } // Function to set lubricating state function setLubricating(bool _state) external onlyOwner { lubricating = _state; } // Define the LP address to enable trading! function setLiquidityPool(address _liquidityPool) external onlyOwner { liquidityPool = _liquidityPool; } // Override _update function to include lubricating logic (previously _beforeTokenTransfer) function _update( address from, address to, uint256 amount ) internal virtual override { super._update(from, to, amount); // If liquidityPool is address(0) we've not yet enabled trading. Liquidity Loading.... if(liquidityPool == address(0)) { require(from == owner() || to == owner(), "Patience - Trading Not Started Yet!"); return; } // Allow deployer (owner) to send/receive any amount and the liquidityPool to receive any amount. // This allows for loading of the LP, and for people to sell tokens into the LP whilst lubrication in progress. if (lubricating && from != owner() && to != liquidityPool) { // Require that a receiving wallet will not hold more than 1% of supply after a transfer whilst lubrication is in effect require( balanceOf(to) <= totalSupply() / 1000, "Just getting warmed up, limit of 0.1% of WOAF until Lubrication is complete!" ); } } // Renounce the contract and pass ownership to address(0) to lock the contract forever more. function renounceTokenOwnership() public onlyOwner { renounceOwnership(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lubricating","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"renounceTokenOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityPool","type":"address"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setLubricating","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":"value","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":"value","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
60806040526001600560146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50336040518060400160405280600881526020017f576f6166776973650000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f574f4146000000000000000000000000000000000000000000000000000000008152508160039081620000ab919062000a4e565b508060049081620000bd919062000a4e565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001355760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200012c919062000b7a565b60405180910390fd5b62000146816200016b60201b60201c565b5062000165336b06765c793fa10079d00000006200023160201b60201c565b62000e3a565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002a65760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200029d919062000b7a565b60405180910390fd5b620002ba60008383620002be60201b60201c565b5050565b620002d18383836200052860201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620003f457620003386200075860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620003ac57506200037d6200075860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b620003ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e59062000c1e565b60405180910390fd5b62000523565b600560149054906101000a900460ff1680156200044c57506200041c6200075860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620004a75750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000522576103e8620004c06200078260201b60201c565b620004cc919062000c9e565b620004dd836200078c60201b60201c565b111562000521576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005189062000d72565b60405180910390fd5b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200057e57806002600082825462000571919062000d94565b9250508190555062000654565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200060d578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620006049392919062000de0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200069f5780600260008282540392505081905550620006ec565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200074b919062000e1d565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200085657607f821691505b6020821081036200086c576200086b6200080e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000897565b620008e2868362000897565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200092f620009296200092384620008fa565b62000904565b620008fa565b9050919050565b6000819050919050565b6200094b836200090e565b620009636200095a8262000936565b848454620008a4565b825550505050565b600090565b6200097a6200096b565b6200098781848462000940565b505050565b5b81811015620009af57620009a360008262000970565b6001810190506200098d565b5050565b601f821115620009fe57620009c88162000872565b620009d38462000887565b81016020851015620009e3578190505b620009fb620009f28562000887565b8301826200098c565b50505b505050565b600082821c905092915050565b600062000a236000198460080262000a03565b1980831691505092915050565b600062000a3e838362000a10565b9150826002028217905092915050565b62000a5982620007d4565b67ffffffffffffffff81111562000a755762000a74620007df565b5b62000a8182546200083d565b62000a8e828285620009b3565b600060209050601f83116001811462000ac6576000841562000ab1578287015190505b62000abd858262000a30565b86555062000b2d565b601f19841662000ad68662000872565b60005b8281101562000b005784890151825560018201915060208501945060208101905062000ad9565b8683101562000b20578489015162000b1c601f89168262000a10565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b628262000b35565b9050919050565b62000b748162000b55565b82525050565b600060208201905062000b91600083018462000b69565b92915050565b600082825260208201905092915050565b7f50617469656e6365202d2054726164696e67204e6f742053746172746564205960008201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b600062000c0660238362000b97565b915062000c138262000ba8565b604082019050919050565b6000602082019050818103600083015262000c398162000bf7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cab82620008fa565b915062000cb883620008fa565b92508262000ccb5762000cca62000c40565b5b828204905092915050565b7f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660008201527f20302e3125206f6620574f414620756e74696c204c75627269636174696f6e2060208201527f697320636f6d706c657465210000000000000000000000000000000000000000604082015250565b600062000d5a604c8362000b97565b915062000d678262000cd6565b606082019050919050565b6000602082019050818103600083015262000d8d8162000d4b565b9050919050565b600062000da182620008fa565b915062000dae83620008fa565b925082820190508082111562000dc95762000dc862000c6f565b5b92915050565b62000dda81620008fa565b82525050565b600060608201905062000df7600083018662000b69565b62000e06602083018562000dcf565b62000e15604083018462000dcf565b949350505050565b600060208201905062000e34600083018462000dcf565b92915050565b61168b8062000e4a6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610296578063a9059cbb146102b4578063dd62ed3e146102e4578063e14f08d514610314578063f2fde38b1461031e5761010b565b806370a0823114610220578063715018a6146102505780638da5cb5b1461025a57806395afda0c146102785761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c85780634bc3e7db146101e6578063665a11ca146102025761010b565b8063018770201461011057806306fdde031461012c578063095ea7b31461014a57806318160ddd1461017a575b600080fd5b61012a600480360381019061012591906110af565b61033a565b005b610134610386565b604051610141919061116c565b60405180910390f35b610164600480360381019061015f91906111c4565b610418565b604051610171919061121f565b60405180910390f35b61018261043b565b60405161018f9190611249565b60405180910390f35b6101b260048036038101906101ad9190611264565b610445565b6040516101bf919061121f565b60405180910390f35b6101d0610474565b6040516101dd91906112d3565b60405180910390f35b61020060048036038101906101fb919061131a565b61047d565b005b61020a6104a2565b6040516102179190611356565b60405180910390f35b61023a600480360381019061023591906110af565b6104c8565b6040516102479190611249565b60405180910390f35b610258610510565b005b610262610524565b60405161026f9190611356565b60405180910390f35b61028061054e565b60405161028d919061121f565b60405180910390f35b61029e610561565b6040516102ab919061116c565b60405180910390f35b6102ce60048036038101906102c991906111c4565b6105f3565b6040516102db919061121f565b60405180910390f35b6102fe60048036038101906102f99190611371565b610616565b60405161030b9190611249565b60405180910390f35b61031c61069d565b005b610338600480360381019061033391906110af565b6106af565b005b610342610735565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054610395906113e0565b80601f01602080910402602001604051908101604052809291908181526020018280546103c1906113e0565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107bc565b90506104308185856107c4565b600191505092915050565b6000600254905090565b6000806104506107bc565b905061045d8582856107d6565b61046885858561086a565b60019150509392505050565b60006012905090565b610485610735565b80600560146101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610518610735565b610522600061095e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560149054906101000a900460ff1681565b606060048054610570906113e0565b80601f016020809104026020016040519081016040528092919081815260200182805461059c906113e0565b80156105e95780601f106105be576101008083540402835291602001916105e9565b820191906000526020600020905b8154815290600101906020018083116105cc57829003601f168201915b5050505050905090565b6000806105fe6107bc565b905061060b81858561086a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106a5610735565b6106ad610510565b565b6106b7610735565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107295760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107209190611356565b60405180910390fd5b6107328161095e565b50565b61073d6107bc565b73ffffffffffffffffffffffffffffffffffffffff1661075b610524565b73ffffffffffffffffffffffffffffffffffffffff16146107ba5761077e6107bc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107b19190611356565b60405180910390fd5b565b600033905090565b6107d18383836001610a24565b505050565b60006107e28484610616565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108645781811015610854578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161084b93929190611411565b60405180910390fd5b61086384848484036000610a24565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dc5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108d39190611356565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094e5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109459190611356565b60405180910390fd5b610959838383610bfb565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a965760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a8d9190611356565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b085760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610aff9190611356565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610bf5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bec9190611249565b60405180910390a35b50505050565b610c06838383610e27565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d1357610c64610524565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ccf5750610ca0610524565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d05906114ba565b60405180910390fd5b610e22565b600560149054906101000a900460ff168015610d625750610d32610524565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610dbc5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610e21576103e8610dcc61043b565b610dd69190611538565b610ddf836104c8565b1115610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790611601565b60405180910390fd5b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e79578060026000828254610e6d9190611621565b92505081905550610f4c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f05578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610efc93929190611411565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f955780600260008282540392505081905550610fe2565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161103f9190611249565b60405180910390a3505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061107c82611051565b9050919050565b61108c81611071565b811461109757600080fd5b50565b6000813590506110a981611083565b92915050565b6000602082840312156110c5576110c461104c565b5b60006110d38482850161109a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111165780820151818401526020810190506110fb565b60008484015250505050565b6000601f19601f8301169050919050565b600061113e826110dc565b61114881856110e7565b93506111588185602086016110f8565b61116181611122565b840191505092915050565b600060208201905081810360008301526111868184611133565b905092915050565b6000819050919050565b6111a18161118e565b81146111ac57600080fd5b50565b6000813590506111be81611198565b92915050565b600080604083850312156111db576111da61104c565b5b60006111e98582860161109a565b92505060206111fa858286016111af565b9150509250929050565b60008115159050919050565b61121981611204565b82525050565b60006020820190506112346000830184611210565b92915050565b6112438161118e565b82525050565b600060208201905061125e600083018461123a565b92915050565b60008060006060848603121561127d5761127c61104c565b5b600061128b8682870161109a565b935050602061129c8682870161109a565b92505060406112ad868287016111af565b9150509250925092565b600060ff82169050919050565b6112cd816112b7565b82525050565b60006020820190506112e860008301846112c4565b92915050565b6112f781611204565b811461130257600080fd5b50565b600081359050611314816112ee565b92915050565b6000602082840312156113305761132f61104c565b5b600061133e84828501611305565b91505092915050565b61135081611071565b82525050565b600060208201905061136b6000830184611347565b92915050565b600080604083850312156113885761138761104c565b5b60006113968582860161109a565b92505060206113a78582860161109a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113f857607f821691505b60208210810361140b5761140a6113b1565b5b50919050565b60006060820190506114266000830186611347565b611433602083018561123a565b611440604083018461123a565b949350505050565b7f50617469656e6365202d2054726164696e67204e6f742053746172746564205960008201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b60006114a46023836110e7565b91506114af82611448565b604082019050919050565b600060208201905081810360008301526114d381611497565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115438261118e565b915061154e8361118e565b92508261155e5761155d6114da565b5b828204905092915050565b7f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660008201527f20302e3125206f6620574f414620756e74696c204c75627269636174696f6e2060208201527f697320636f6d706c657465210000000000000000000000000000000000000000604082015250565b60006115eb604c836110e7565b91506115f682611569565b606082019050919050565b6000602082019050818103600083015261161a816115de565b9050919050565b600061162c8261118e565b91506116378361118e565b925082820190508082111561164f5761164e611509565b5b9291505056fea26469706673582212202e102bce0c6255af5d5c68747da7ff898ccdc1cfc41a3183e5cefa31a69b39bf64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610296578063a9059cbb146102b4578063dd62ed3e146102e4578063e14f08d514610314578063f2fde38b1461031e5761010b565b806370a0823114610220578063715018a6146102505780638da5cb5b1461025a57806395afda0c146102785761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c85780634bc3e7db146101e6578063665a11ca146102025761010b565b8063018770201461011057806306fdde031461012c578063095ea7b31461014a57806318160ddd1461017a575b600080fd5b61012a600480360381019061012591906110af565b61033a565b005b610134610386565b604051610141919061116c565b60405180910390f35b610164600480360381019061015f91906111c4565b610418565b604051610171919061121f565b60405180910390f35b61018261043b565b60405161018f9190611249565b60405180910390f35b6101b260048036038101906101ad9190611264565b610445565b6040516101bf919061121f565b60405180910390f35b6101d0610474565b6040516101dd91906112d3565b60405180910390f35b61020060048036038101906101fb919061131a565b61047d565b005b61020a6104a2565b6040516102179190611356565b60405180910390f35b61023a600480360381019061023591906110af565b6104c8565b6040516102479190611249565b60405180910390f35b610258610510565b005b610262610524565b60405161026f9190611356565b60405180910390f35b61028061054e565b60405161028d919061121f565b60405180910390f35b61029e610561565b6040516102ab919061116c565b60405180910390f35b6102ce60048036038101906102c991906111c4565b6105f3565b6040516102db919061121f565b60405180910390f35b6102fe60048036038101906102f99190611371565b610616565b60405161030b9190611249565b60405180910390f35b61031c61069d565b005b610338600480360381019061033391906110af565b6106af565b005b610342610735565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054610395906113e0565b80601f01602080910402602001604051908101604052809291908181526020018280546103c1906113e0565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107bc565b90506104308185856107c4565b600191505092915050565b6000600254905090565b6000806104506107bc565b905061045d8582856107d6565b61046885858561086a565b60019150509392505050565b60006012905090565b610485610735565b80600560146101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610518610735565b610522600061095e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560149054906101000a900460ff1681565b606060048054610570906113e0565b80601f016020809104026020016040519081016040528092919081815260200182805461059c906113e0565b80156105e95780601f106105be576101008083540402835291602001916105e9565b820191906000526020600020905b8154815290600101906020018083116105cc57829003601f168201915b5050505050905090565b6000806105fe6107bc565b905061060b81858561086a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106a5610735565b6106ad610510565b565b6106b7610735565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107295760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107209190611356565b60405180910390fd5b6107328161095e565b50565b61073d6107bc565b73ffffffffffffffffffffffffffffffffffffffff1661075b610524565b73ffffffffffffffffffffffffffffffffffffffff16146107ba5761077e6107bc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107b19190611356565b60405180910390fd5b565b600033905090565b6107d18383836001610a24565b505050565b60006107e28484610616565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108645781811015610854578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161084b93929190611411565b60405180910390fd5b61086384848484036000610a24565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dc5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108d39190611356565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094e5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109459190611356565b60405180910390fd5b610959838383610bfb565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a965760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a8d9190611356565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b085760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610aff9190611356565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610bf5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bec9190611249565b60405180910390a35b50505050565b610c06838383610e27565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d1357610c64610524565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ccf5750610ca0610524565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d05906114ba565b60405180910390fd5b610e22565b600560149054906101000a900460ff168015610d625750610d32610524565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610dbc5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610e21576103e8610dcc61043b565b610dd69190611538565b610ddf836104c8565b1115610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790611601565b60405180910390fd5b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e79578060026000828254610e6d9190611621565b92505081905550610f4c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f05578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610efc93929190611411565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f955780600260008282540392505081905550610fe2565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161103f9190611249565b60405180910390a3505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061107c82611051565b9050919050565b61108c81611071565b811461109757600080fd5b50565b6000813590506110a981611083565b92915050565b6000602082840312156110c5576110c461104c565b5b60006110d38482850161109a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111165780820151818401526020810190506110fb565b60008484015250505050565b6000601f19601f8301169050919050565b600061113e826110dc565b61114881856110e7565b93506111588185602086016110f8565b61116181611122565b840191505092915050565b600060208201905081810360008301526111868184611133565b905092915050565b6000819050919050565b6111a18161118e565b81146111ac57600080fd5b50565b6000813590506111be81611198565b92915050565b600080604083850312156111db576111da61104c565b5b60006111e98582860161109a565b92505060206111fa858286016111af565b9150509250929050565b60008115159050919050565b61121981611204565b82525050565b60006020820190506112346000830184611210565b92915050565b6112438161118e565b82525050565b600060208201905061125e600083018461123a565b92915050565b60008060006060848603121561127d5761127c61104c565b5b600061128b8682870161109a565b935050602061129c8682870161109a565b92505060406112ad868287016111af565b9150509250925092565b600060ff82169050919050565b6112cd816112b7565b82525050565b60006020820190506112e860008301846112c4565b92915050565b6112f781611204565b811461130257600080fd5b50565b600081359050611314816112ee565b92915050565b6000602082840312156113305761132f61104c565b5b600061133e84828501611305565b91505092915050565b61135081611071565b82525050565b600060208201905061136b6000830184611347565b92915050565b600080604083850312156113885761138761104c565b5b60006113968582860161109a565b92505060206113a78582860161109a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113f857607f821691505b60208210810361140b5761140a6113b1565b5b50919050565b60006060820190506114266000830186611347565b611433602083018561123a565b611440604083018461123a565b949350505050565b7f50617469656e6365202d2054726164696e67204e6f742053746172746564205960008201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b60006114a46023836110e7565b91506114af82611448565b604082019050919050565b600060208201905081810360008301526114d381611497565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115438261118e565b915061154e8361118e565b92508261155e5761155d6114da565b5b828204905092915050565b7f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660008201527f20302e3125206f6620574f414620756e74696c204c75627269636174696f6e2060208201527f697320636f6d706c657465210000000000000000000000000000000000000000604082015250565b60006115eb604c836110e7565b91506115f682611569565b606082019050919050565b6000602082019050818103600083015261161a816115de565b9050919050565b600061162c8261118e565b91506116378361118e565b925082820190508082111561164f5761164e611509565b5b9291505056fea26469706673582212202e102bce0c6255af5d5c68747da7ff898ccdc1cfc41a3183e5cefa31a69b39bf64736f6c63430008130033
Deployed Bytecode Sourcemap
24783:1978:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25274:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15451:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17744:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16553:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18512:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16404:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25122:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24936:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16715:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3183:103;;;:::i;:::-;;2508:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24899:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15661:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17038:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17283:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26669:89;;;:::i;:::-;;3441:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25274:118;2394:13;:11;:13::i;:::-;25370:14:::1;25354:13;;:30;;;;;;;;;;;;;;;;;;25274:118:::0;:::o;15451:91::-;15496:13;15529:5;15522:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15451:91;:::o;17744:190::-;17817:4;17834:13;17850:12;:10;:12::i;:::-;17834:28;;17873:31;17882:5;17889:7;17898:5;17873:8;:31::i;:::-;17922:4;17915:11;;;17744:190;;;;:::o;16553:99::-;16605:7;16632:12;;16625:19;;16553:99;:::o;18512:249::-;18599:4;18616:15;18634:12;:10;:12::i;:::-;18616:30;;18657:37;18673:4;18679:7;18688:5;18657:15;:37::i;:::-;18705:26;18715:4;18721:2;18725:5;18705:9;:26::i;:::-;18749:4;18742:11;;;18512:249;;;;;:::o;16404:84::-;16453:5;16478:2;16471:9;;16404:84;:::o;25122:95::-;2394:13;:11;:13::i;:::-;25203:6:::1;25189:11;;:20;;;;;;;;;;;;;;;;;;25122:95:::0;:::o;24936:28::-;;;;;;;;;;;;;:::o;16715:118::-;16780:7;16807:9;:18;16817:7;16807:18;;;;;;;;;;;;;;;;16800:25;;16715:118;;;:::o;3183:103::-;2394:13;:11;:13::i;:::-;3248:30:::1;3275:1;3248:18;:30::i;:::-;3183:103::o:0;2508:87::-;2554:7;2581:6;;;;;;;;;;;2574:13;;2508:87;:::o;24899:30::-;;;;;;;;;;;;;:::o;15661:95::-;15708:13;15741:7;15734:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15661:95;:::o;17038:182::-;17107:4;17124:13;17140:12;:10;:12::i;:::-;17124:28;;17163:27;17173:5;17180:2;17184:5;17163:9;:27::i;:::-;17208:4;17201:11;;;17038:182;;;;:::o;17283:142::-;17363:7;17390:11;:18;17402:5;17390:18;;;;;;;;;;;;;;;:27;17409:7;17390:27;;;;;;;;;;;;;;;;17383:34;;17283:142;;;;:::o;26669:89::-;2394:13;:11;:13::i;:::-;26731:19:::1;:17;:19::i;:::-;26669:89::o:0;3441:220::-;2394:13;:11;:13::i;:::-;3546:1:::1;3526:22;;:8;:22;;::::0;3522:93:::1;;3600:1;3572:31;;;;;;;;;;;:::i;:::-;;;;;;;;3522:93;3625:28;3644:8;3625:18;:28::i;:::-;3441:220:::0;:::o;2673:166::-;2744:12;:10;:12::i;:::-;2733:23;;:7;:5;:7::i;:::-;:23;;;2729:103;;2807:12;:10;:12::i;:::-;2780:40;;;;;;;;;;;:::i;:::-;;;;;;;;2729:103;2673:166::o;676:98::-;729:7;756:10;749:17;;676:98;:::o;22571:130::-;22656:37;22665:5;22672:7;22681:5;22688:4;22656:8;:37::i;:::-;22571:130;;;:::o;24287:487::-;24387:24;24414:25;24424:5;24431:7;24414:9;:25::i;:::-;24387:52;;24474:17;24454:16;:37;24450:317;;24531:5;24512:16;:24;24508:132;;;24591:7;24600:16;24618:5;24564:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;24508:132;24683:57;24692:5;24699:7;24727:5;24708:16;:24;24734:5;24683:8;:57::i;:::-;24450:317;24376:398;24287:487;;;:::o;19146:308::-;19246:1;19230:18;;:4;:18;;;19226:88;;19299:1;19272:30;;;;;;;;;;;:::i;:::-;;;;;;;;19226:88;19342:1;19328:16;;:2;:16;;;19324:88;;19397:1;19368:32;;;;;;;;;;;:::i;:::-;;;;;;;;19324:88;19422:24;19430:4;19436:2;19440:5;19422:7;:24::i;:::-;19146:308;;;:::o;3821:191::-;3895:16;3914:6;;;;;;;;;;;3895:25;;3940:8;3931:6;;:17;;;;;;;;;;;;;;;;;;3995:8;3964:40;;3985:8;3964:40;;;;;;;;;;;;3884:128;3821:191;:::o;23552:443::-;23682:1;23665:19;;:5;:19;;;23661:91;;23737:1;23708:32;;;;;;;;;;;:::i;:::-;;;;;;;;23661:91;23785:1;23766:21;;:7;:21;;;23762:92;;23839:1;23811:31;;;;;;;;;;;:::i;:::-;;;;;;;;23762:92;23894:5;23864:11;:18;23876:5;23864:18;;;;;;;;;;;;;;;:27;23883:7;23864:27;;;;;;;;;;;;;;;:35;;;;23914:9;23910:78;;;23961:7;23945:31;;23954:5;23945:31;;;23970:5;23945:31;;;;;;:::i;:::-;;;;;;;;23910:78;23552:443;;;;:::o;25497:1068::-;25627:31;25641:4;25647:2;25651:6;25627:13;:31::i;:::-;25793:1;25768:27;;:13;;;;;;;;;;;:27;;;25765:160;;25828:7;:5;:7::i;:::-;25820:15;;:4;:15;;;:32;;;;25845:7;:5;:7::i;:::-;25839:13;;:2;:13;;;25820:32;25812:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;25907:7;;25765:160;26167:11;;;;;;;;;;;:30;;;;;26190:7;:5;:7::i;:::-;26182:15;;:4;:15;;;;26167:30;:53;;;;;26207:13;;;;;;;;;;;26201:19;;:2;:19;;;;26167:53;26163:395;;;26430:4;26414:13;:11;:13::i;:::-;:20;;;;:::i;:::-;26397:13;26407:2;26397:9;:13::i;:::-;:37;;26371:175;;;;;;;;;;;;:::i;:::-;;;;;;;;;26163:395;25497:1068;;;;:::o;19778:1135::-;19884:1;19868:18;;:4;:18;;;19864:552;;20022:5;20006:12;;:21;;;;;;;:::i;:::-;;;;;;;;19864:552;;;20060:19;20082:9;:15;20092:4;20082:15;;;;;;;;;;;;;;;;20060:37;;20130:5;20116:11;:19;20112:117;;;20188:4;20194:11;20207:5;20163:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;20112:117;20384:5;20370:11;:19;20352:9;:15;20362:4;20352:15;;;;;;;;;;;;;;;:37;;;;20045:371;19864:552;20446:1;20432:16;;:2;:16;;;20428:435;;20614:5;20598:12;;:21;;;;;;;;;;;20428:435;;;20831:5;20814:9;:13;20824:2;20814:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;20428:435;20895:2;20880:25;;20889:4;20880:25;;;20899:5;20880:25;;;;;;:::i;:::-;;;;;;;;19778:1135;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:99::-;1228:6;1262:5;1256:12;1246:22;;1176:99;;;:::o;1281:169::-;1365:11;1399:6;1394:3;1387:19;1439:4;1434:3;1430:14;1415:29;;1281:169;;;;:::o;1456:246::-;1537:1;1547:113;1561:6;1558:1;1555:13;1547:113;;;1646:1;1641:3;1637:11;1631:18;1627:1;1622:3;1618:11;1611:39;1583:2;1580:1;1576:10;1571:15;;1547:113;;;1694:1;1685:6;1680:3;1676:16;1669:27;1518:184;1456:246;;;:::o;1708:102::-;1749:6;1800:2;1796:7;1791:2;1784:5;1780:14;1776:28;1766:38;;1708:102;;;:::o;1816:377::-;1904:3;1932:39;1965:5;1932:39;:::i;:::-;1987:71;2051:6;2046:3;1987:71;:::i;:::-;1980:78;;2067:65;2125:6;2120:3;2113:4;2106:5;2102:16;2067:65;:::i;:::-;2157:29;2179:6;2157:29;:::i;:::-;2152:3;2148:39;2141:46;;1908:285;1816:377;;;;:::o;2199:313::-;2312:4;2350:2;2339:9;2335:18;2327:26;;2399:9;2393:4;2389:20;2385:1;2374:9;2370:17;2363:47;2427:78;2500:4;2491:6;2427:78;:::i;:::-;2419:86;;2199:313;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:323::-;5505:6;5554:2;5542:9;5533:7;5529:23;5525:32;5522:119;;;5560:79;;:::i;:::-;5522:119;5680:1;5705:50;5747:7;5738:6;5727:9;5723:22;5705:50;:::i;:::-;5695:60;;5651:114;5449:323;;;;:::o;5778:118::-;5865:24;5883:5;5865:24;:::i;:::-;5860:3;5853:37;5778:118;;:::o;5902:222::-;5995:4;6033:2;6022:9;6018:18;6010:26;;6046:71;6114:1;6103:9;6099:17;6090:6;6046:71;:::i;:::-;5902:222;;;;:::o;6130:474::-;6198:6;6206;6255:2;6243:9;6234:7;6230:23;6226:32;6223:119;;;6261:79;;:::i;:::-;6223:119;6381:1;6406:53;6451:7;6442:6;6431:9;6427:22;6406:53;:::i;:::-;6396:63;;6352:117;6508:2;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6479:118;6130:474;;;;;:::o;6610:180::-;6658:77;6655:1;6648:88;6755:4;6752:1;6745:15;6779:4;6776:1;6769:15;6796:320;6840:6;6877:1;6871:4;6867:12;6857:22;;6924:1;6918:4;6914:12;6945:18;6935:81;;7001:4;6993:6;6989:17;6979:27;;6935:81;7063:2;7055:6;7052:14;7032:18;7029:38;7026:84;;7082:18;;:::i;:::-;7026:84;6847:269;6796:320;;;:::o;7122:442::-;7271:4;7309:2;7298:9;7294:18;7286:26;;7322:71;7390:1;7379:9;7375:17;7366:6;7322:71;:::i;:::-;7403:72;7471:2;7460:9;7456:18;7447:6;7403:72;:::i;:::-;7485;7553:2;7542:9;7538:18;7529:6;7485:72;:::i;:::-;7122:442;;;;;;:::o;7570:222::-;7710:34;7706:1;7698:6;7694:14;7687:58;7779:5;7774:2;7766:6;7762:15;7755:30;7570:222;:::o;7798:366::-;7940:3;7961:67;8025:2;8020:3;7961:67;:::i;:::-;7954:74;;8037:93;8126:3;8037:93;:::i;:::-;8155:2;8150:3;8146:12;8139:19;;7798:366;;;:::o;8170:419::-;8336:4;8374:2;8363:9;8359:18;8351:26;;8423:9;8417:4;8413:20;8409:1;8398:9;8394:17;8387:47;8451:131;8577:4;8451:131;:::i;:::-;8443:139;;8170:419;;;:::o;8595:180::-;8643:77;8640:1;8633:88;8740:4;8737:1;8730:15;8764:4;8761:1;8754:15;8781:180;8829:77;8826:1;8819:88;8926:4;8923:1;8916:15;8950:4;8947:1;8940:15;8967:185;9007:1;9024:20;9042:1;9024:20;:::i;:::-;9019:25;;9058:20;9076:1;9058:20;:::i;:::-;9053:25;;9097:1;9087:35;;9102:18;;:::i;:::-;9087:35;9144:1;9141;9137:9;9132:14;;8967:185;;;;:::o;9158:300::-;9298:34;9294:1;9286:6;9282:14;9275:58;9367:34;9362:2;9354:6;9350:15;9343:59;9436:14;9431:2;9423:6;9419:15;9412:39;9158:300;:::o;9464:366::-;9606:3;9627:67;9691:2;9686:3;9627:67;:::i;:::-;9620:74;;9703:93;9792:3;9703:93;:::i;:::-;9821:2;9816:3;9812:12;9805:19;;9464:366;;;:::o;9836:419::-;10002:4;10040:2;10029:9;10025:18;10017:26;;10089:9;10083:4;10079:20;10075:1;10064:9;10060:17;10053:47;10117:131;10243:4;10117:131;:::i;:::-;10109:139;;9836:419;;;:::o;10261:191::-;10301:3;10320:20;10338:1;10320:20;:::i;:::-;10315:25;;10354:20;10372:1;10354:20;:::i;:::-;10349:25;;10397:1;10394;10390:9;10383:16;;10418:3;10415:1;10412:10;10409:36;;;10425:18;;:::i;:::-;10409:36;10261:191;;;;:::o
Swarm Source
ipfs://2e102bce0c6255af5d5c68747da7ff898ccdc1cfc41a3183e5cefa31a69b39bf
[ 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.