Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,752,260.146412037037036731 WSW
Holders
54
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 WSWValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ERC20Delegated
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BSD-3-Clause pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./Delegated.sol"; interface IERC20Withdraw{ function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 amount) external returns (bool); } interface IERC721Withdraw{ function transferFrom(address from, address to, uint256 tokenId) external; } contract ERC20Delegated is Delegated, Pausable, ERC20 { using Address for address; constructor() Delegated() ERC20( "ERC20Delegated", "ERC20D" ) {} receive() external payable {} function name() public view virtual override returns (string memory) { return "Wall Street Wolves Coin"; } function symbol() public view virtual override returns (string memory) { return "WSW"; } //withdraw function withdraw() external onlyOwner { uint256 totalBalance = address(this).balance; require(totalBalance > 0, "no funds available"); Address.sendValue(payable(owner()), totalBalance); } function withdraw(address token) external onlyDelegates whenNotPaused returns (bool){ IERC20Withdraw erc20 = IERC20Withdraw(token); return erc20.transfer(owner(), erc20.balanceOf(address(this)) ); } function withdraw(address token, uint256[] calldata tokenIds) external onlyDelegates whenNotPaused{ for( uint256 i = 0; i < tokenIds.length; ++i ){ IERC721Withdraw(token).transferFrom(address(this), owner(), tokenIds[i] ); } } //delegated function burnFrom( uint quantity, address account ) external onlyDelegates{ _burn( account, quantity ); } function mintTo(address _to, uint _amount) external onlyDelegates { _mint(_to, _amount); } //overrides function transfer(address to, uint256 amount) public override whenNotPaused returns (bool){ super.transfer(to, amount); return true; } function transferFrom(address from, address to, uint256 amount) public override whenNotPaused returns (bool){ super.transferFrom(from, to, amount); return true; } function pause() external onlyDelegates{ _pause(); } function unpause() external onlyDelegates{ _unpause(); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; contract Delegated is Ownable{ mapping(address => bool) internal _delegates; modifier onlyDelegates { require(_delegates[msg.sender], "Invalid delegate" ); _; } constructor() Ownable(){ setDelegate( owner(), true ); } //onlyOwner function isDelegate( address addr ) external view onlyOwner returns( bool ){ return _delegates[addr]; } function setDelegate( address addr, bool isDelegate_ ) public onlyOwner{ _delegates[addr] = isDelegate_; } function transferOwnership(address newOwner) public virtual override onlyOwner { _delegates[newOwner] = true; super.transferOwnership( newOwner ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ 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; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":"quantity","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isDelegate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isDelegate_","type":"bool"}],"name":"setDelegate","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600e81526020017f455243323044656c6567617465640000000000000000000000000000000000008152506040518060400160405280600681526020017f45524332304400000000000000000000000000000000000000000000000000008152506200009e620000926200011560201b60201c565b6200011d60201b60201c565b620000c0620000b2620001e160201b60201c565b60016200020a60201b60201c565b6000600260006101000a81548160ff0219169083151502179055508160069080519060200190620000f392919062000306565b5080600790805190602001906200010c92919062000306565b5050506200049e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200021a6200027560201b60201c565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620002856200011560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ab620001e160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000304576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fb9062000417565b60405180910390fd5b565b828054620003149062000468565b90600052602060002090601f01602090048101928262000338576000855562000384565b82601f106200035357805160ff191683800117855562000384565b8280016001018555821562000384579182015b828111156200038357825182559160200191906001019062000366565b5b50905062000393919062000397565b5090565b5b80821115620003b257600081600090555060010162000398565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620003ff602083620003b6565b91506200040c82620003c7565b602082019050919050565b600060208201905081810360008301526200043281620003f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048157607f821691505b6020821081141562000498576200049762000439565b5b50919050565b612c2080620004ae6000396000f3fe60806040526004361061014f5760003560e01c80635c975abb116100b65780638da5cb5b1161006f5780638da5cb5b1461047557806395d89b41146104a0578063a457c2d7146104cb578063a9059cbb14610508578063dd62ed3e14610545578063f2fde38b1461058257610156565b80635c975abb1461038d57806370a08231146103b8578063715018a6146103f55780638293744b1461040c5780638456cb59146104355780638a56f3ee1461044c57610156565b8063395093511161010857806339509351146102935780633ccfd60b146102d05780633f4ba83a146102e7578063449a52f8146102fe5780634a994eef1461032757806351cff8d91461035057610156565b806306fdde031461015b5780630777962714610186578063095ea7b3146101c357806318160ddd1461020057806323b872dd1461022b578063313ce5671461026857610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105ab565b60405161017d9190611c89565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611d13565b6105e8565b6040516101ba9190611d5b565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190611dac565b610646565b6040516101f79190611d5b565b60405180910390f35b34801561020c57600080fd5b50610215610669565b6040516102229190611dfb565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190611e16565b610673565b60405161025f9190611d5b565b60405180910390f35b34801561027457600080fd5b5061027d610694565b60405161028a9190611e85565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190611dac565b61069d565b6040516102c79190611d5b565b60405180910390f35b3480156102dc57600080fd5b506102e56106d4565b005b3480156102f357600080fd5b506102fc610738565b005b34801561030a57600080fd5b5061032560048036038101906103209190611dac565b6107ce565b005b34801561033357600080fd5b5061034e60048036038101906103499190611ecc565b610868565b005b34801561035c57600080fd5b5061037760048036038101906103729190611d13565b6108cb565b6040516103849190611d5b565b60405180910390f35b34801561039957600080fd5b506103a2610a8a565b6040516103af9190611d5b565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190611d13565b610aa1565b6040516103ec9190611dfb565b60405180910390f35b34801561040157600080fd5b5061040a610aea565b005b34801561041857600080fd5b50610433600480360381019061042e9190611f71565b610afe565b005b34801561044157600080fd5b5061044a610c46565b005b34801561045857600080fd5b50610473600480360381019061046e9190611fd1565b610cdc565b005b34801561048157600080fd5b5061048a610d76565b6040516104979190612020565b60405180910390f35b3480156104ac57600080fd5b506104b5610d9f565b6040516104c29190611c89565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190611dac565b610ddc565b6040516104ff9190611d5b565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190611dac565b610e53565b60405161053c9190611d5b565b60405180910390f35b34801561055157600080fd5b5061056c6004803603810190610567919061203b565b610e72565b6040516105799190611dfb565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190611d13565b610ef9565b005b60606040518060400160405280601781526020017f57616c6c2053747265657420576f6c76657320436f696e000000000000000000815250905090565b60006105f2610f64565b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610651610fe2565b905061065e818585610fea565b600191505092915050565b6000600554905090565b600061067d6111b5565b6106888484846111ff565b50600190509392505050565b60006012905090565b6000806106a8610fe2565b90506106c98185856106ba8589610e72565b6106c491906120aa565b610fea565b600191505092915050565b6106dc610f64565b600047905060008111610724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071b9061214c565b60405180910390fd5b61073561072f610d76565b8261122e565b50565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bb906121b8565b60405180910390fd5b6107cc611322565b565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661085a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610851906121b8565b60405180910390fd5b6108648282611385565b5050565b610870610f64565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610950906121b8565b60405180910390fd5b6109616111b5565b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61098a610d76565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109c39190612020565b60206040518083038186803b1580156109db57600080fd5b505afa1580156109ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1391906121ed565b6040518363ffffffff1660e01b8152600401610a3092919061221a565b602060405180830381600087803b158015610a4a57600080fd5b505af1158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a829190612258565b915050919050565b6000600260009054906101000a900460ff16905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610af2610f64565b610afc60006114e6565b565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b81906121b8565b60405180910390fd5b610b926111b5565b60005b82829050811015610c40578373ffffffffffffffffffffffffffffffffffffffff166323b872dd30610bc5610d76565b868686818110610bd857610bd7612285565b5b905060200201356040518463ffffffff1660e01b8152600401610bfd939291906122b4565b600060405180830381600087803b158015610c1757600080fd5b505af1158015610c2b573d6000803e3d6000fd5b5050505080610c39906122eb565b9050610b95565b50505050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906121b8565b60405180910390fd5b610cda6115aa565b565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f906121b8565b60405180910390fd5b610d72818361160d565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f5753570000000000000000000000000000000000000000000000000000000000815250905090565b600080610de7610fe2565b90506000610df58286610e72565b905083811015610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e31906123a6565b60405180910390fd5b610e478286868403610fea565b60019250505092915050565b6000610e5d6111b5565b610e6783836117e6565b506001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f01610f64565b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f6181611809565b50565b610f6c610fe2565b73ffffffffffffffffffffffffffffffffffffffff16610f8a610d76565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790612412565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611051906124a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190612536565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111a89190611dfb565b60405180910390a3505050565b6111bd610a8a565b156111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f4906125a2565b60405180910390fd5b565b60008061120a610fe2565b905061121785828561188d565b611222858585611919565b60019150509392505050565b80471015611271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112689061260e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516112979061265f565b60006040518083038185875af1925050503d80600081146112d4576040519150601f19603f3d011682016040523d82523d6000602084013e6112d9565b606091505b505090508061131d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611314906126e6565b60405180910390fd5b505050565b61132a611b9d565b6000600260006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61136e610fe2565b60405161137b9190612020565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90612752565b60405180910390fd5b61140160008383611be6565b806005600082825461141391906120aa565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461146991906120aa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114ce9190611dfb565b60405180910390a36114e260008383611beb565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115b26111b5565b6001600260006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115f6610fe2565b6040516116039190612020565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611674906127e4565b60405180910390fd5b61168982600083611be6565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170790612876565b60405180910390fd5b818103600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008282546117689190612896565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117cd9190611dfb565b60405180910390a36117e183600084611beb565b505050565b6000806117f1610fe2565b90506117fe818585611919565b600191505092915050565b611811610f64565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118789061293c565b60405180910390fd5b61188a816114e6565b50565b60006118998484610e72565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119135781811015611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc906129a8565b60405180910390fd5b6119128484848403610fea565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090612a3a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090612acc565b60405180910390fd5b611a04838383611be6565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290612b5e565b60405180910390fd5b818103600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2091906120aa565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b849190611dfb565b60405180910390a3611b97848484611beb565b50505050565b611ba5610a8a565b611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb90612bca565b60405180910390fd5b565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c2a578082015181840152602081019050611c0f565b83811115611c39576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c5b82611bf0565b611c658185611bfb565b9350611c75818560208601611c0c565b611c7e81611c3f565b840191505092915050565b60006020820190508181036000830152611ca38184611c50565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ce082611cb5565b9050919050565b611cf081611cd5565b8114611cfb57600080fd5b50565b600081359050611d0d81611ce7565b92915050565b600060208284031215611d2957611d28611cab565b5b6000611d3784828501611cfe565b91505092915050565b60008115159050919050565b611d5581611d40565b82525050565b6000602082019050611d706000830184611d4c565b92915050565b6000819050919050565b611d8981611d76565b8114611d9457600080fd5b50565b600081359050611da681611d80565b92915050565b60008060408385031215611dc357611dc2611cab565b5b6000611dd185828601611cfe565b9250506020611de285828601611d97565b9150509250929050565b611df581611d76565b82525050565b6000602082019050611e106000830184611dec565b92915050565b600080600060608486031215611e2f57611e2e611cab565b5b6000611e3d86828701611cfe565b9350506020611e4e86828701611cfe565b9250506040611e5f86828701611d97565b9150509250925092565b600060ff82169050919050565b611e7f81611e69565b82525050565b6000602082019050611e9a6000830184611e76565b92915050565b611ea981611d40565b8114611eb457600080fd5b50565b600081359050611ec681611ea0565b92915050565b60008060408385031215611ee357611ee2611cab565b5b6000611ef185828601611cfe565b9250506020611f0285828601611eb7565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112611f3157611f30611f0c565b5b8235905067ffffffffffffffff811115611f4e57611f4d611f11565b5b602083019150836020820283011115611f6a57611f69611f16565b5b9250929050565b600080600060408486031215611f8a57611f89611cab565b5b6000611f9886828701611cfe565b935050602084013567ffffffffffffffff811115611fb957611fb8611cb0565b5b611fc586828701611f1b565b92509250509250925092565b60008060408385031215611fe857611fe7611cab565b5b6000611ff685828601611d97565b925050602061200785828601611cfe565b9150509250929050565b61201a81611cd5565b82525050565b60006020820190506120356000830184612011565b92915050565b6000806040838503121561205257612051611cab565b5b600061206085828601611cfe565b925050602061207185828601611cfe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120b582611d76565b91506120c083611d76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120f5576120f461207b565b5b828201905092915050565b7f6e6f2066756e647320617661696c61626c650000000000000000000000000000600082015250565b6000612136601283611bfb565b915061214182612100565b602082019050919050565b6000602082019050818103600083015261216581612129565b9050919050565b7f496e76616c69642064656c656761746500000000000000000000000000000000600082015250565b60006121a2601083611bfb565b91506121ad8261216c565b602082019050919050565b600060208201905081810360008301526121d181612195565b9050919050565b6000815190506121e781611d80565b92915050565b60006020828403121561220357612202611cab565b5b6000612211848285016121d8565b91505092915050565b600060408201905061222f6000830185612011565b61223c6020830184611dec565b9392505050565b60008151905061225281611ea0565b92915050565b60006020828403121561226e5761226d611cab565b5b600061227c84828501612243565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006060820190506122c96000830186612011565b6122d66020830185612011565b6122e36040830184611dec565b949350505050565b60006122f682611d76565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156123295761232861207b565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612390602583611bfb565b915061239b82612334565b604082019050919050565b600060208201905081810360008301526123bf81612383565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006123fc602083611bfb565b9150612407826123c6565b602082019050919050565b6000602082019050818103600083015261242b816123ef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061248e602483611bfb565b915061249982612432565b604082019050919050565b600060208201905081810360008301526124bd81612481565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612520602283611bfb565b915061252b826124c4565b604082019050919050565b6000602082019050818103600083015261254f81612513565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061258c601083611bfb565b915061259782612556565b602082019050919050565b600060208201905081810360008301526125bb8161257f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006125f8601d83611bfb565b9150612603826125c2565b602082019050919050565b60006020820190508181036000830152612627816125eb565b9050919050565b600081905092915050565b50565b600061264960008361262e565b915061265482612639565b600082019050919050565b600061266a8261263c565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006126d0603a83611bfb565b91506126db82612674565b604082019050919050565b600060208201905081810360008301526126ff816126c3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061273c601f83611bfb565b915061274782612706565b602082019050919050565b6000602082019050818103600083015261276b8161272f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006127ce602183611bfb565b91506127d982612772565b604082019050919050565b600060208201905081810360008301526127fd816127c1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612860602283611bfb565b915061286b82612804565b604082019050919050565b6000602082019050818103600083015261288f81612853565b9050919050565b60006128a182611d76565b91506128ac83611d76565b9250828210156128bf576128be61207b565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612926602683611bfb565b9150612931826128ca565b604082019050919050565b6000602082019050818103600083015261295581612919565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612992601d83611bfb565b915061299d8261295c565b602082019050919050565b600060208201905081810360008301526129c181612985565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a24602583611bfb565b9150612a2f826129c8565b604082019050919050565b60006020820190508181036000830152612a5381612a17565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ab6602383611bfb565b9150612ac182612a5a565b604082019050919050565b60006020820190508181036000830152612ae581612aa9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b48602683611bfb565b9150612b5382612aec565b604082019050919050565b60006020820190508181036000830152612b7781612b3b565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612bb4601483611bfb565b9150612bbf82612b7e565b602082019050919050565b60006020820190508181036000830152612be381612ba7565b905091905056fea2646970667358221220a708e7894479437b6f422091c57a5f235ebe95768fc5ee606d0cec00df51285f64736f6c63430008090033
Deployed Bytecode
0x60806040526004361061014f5760003560e01c80635c975abb116100b65780638da5cb5b1161006f5780638da5cb5b1461047557806395d89b41146104a0578063a457c2d7146104cb578063a9059cbb14610508578063dd62ed3e14610545578063f2fde38b1461058257610156565b80635c975abb1461038d57806370a08231146103b8578063715018a6146103f55780638293744b1461040c5780638456cb59146104355780638a56f3ee1461044c57610156565b8063395093511161010857806339509351146102935780633ccfd60b146102d05780633f4ba83a146102e7578063449a52f8146102fe5780634a994eef1461032757806351cff8d91461035057610156565b806306fdde031461015b5780630777962714610186578063095ea7b3146101c357806318160ddd1461020057806323b872dd1461022b578063313ce5671461026857610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105ab565b60405161017d9190611c89565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611d13565b6105e8565b6040516101ba9190611d5b565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e59190611dac565b610646565b6040516101f79190611d5b565b60405180910390f35b34801561020c57600080fd5b50610215610669565b6040516102229190611dfb565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190611e16565b610673565b60405161025f9190611d5b565b60405180910390f35b34801561027457600080fd5b5061027d610694565b60405161028a9190611e85565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190611dac565b61069d565b6040516102c79190611d5b565b60405180910390f35b3480156102dc57600080fd5b506102e56106d4565b005b3480156102f357600080fd5b506102fc610738565b005b34801561030a57600080fd5b5061032560048036038101906103209190611dac565b6107ce565b005b34801561033357600080fd5b5061034e60048036038101906103499190611ecc565b610868565b005b34801561035c57600080fd5b5061037760048036038101906103729190611d13565b6108cb565b6040516103849190611d5b565b60405180910390f35b34801561039957600080fd5b506103a2610a8a565b6040516103af9190611d5b565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190611d13565b610aa1565b6040516103ec9190611dfb565b60405180910390f35b34801561040157600080fd5b5061040a610aea565b005b34801561041857600080fd5b50610433600480360381019061042e9190611f71565b610afe565b005b34801561044157600080fd5b5061044a610c46565b005b34801561045857600080fd5b50610473600480360381019061046e9190611fd1565b610cdc565b005b34801561048157600080fd5b5061048a610d76565b6040516104979190612020565b60405180910390f35b3480156104ac57600080fd5b506104b5610d9f565b6040516104c29190611c89565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190611dac565b610ddc565b6040516104ff9190611d5b565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190611dac565b610e53565b60405161053c9190611d5b565b60405180910390f35b34801561055157600080fd5b5061056c6004803603810190610567919061203b565b610e72565b6040516105799190611dfb565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190611d13565b610ef9565b005b60606040518060400160405280601781526020017f57616c6c2053747265657420576f6c76657320436f696e000000000000000000815250905090565b60006105f2610f64565b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610651610fe2565b905061065e818585610fea565b600191505092915050565b6000600554905090565b600061067d6111b5565b6106888484846111ff565b50600190509392505050565b60006012905090565b6000806106a8610fe2565b90506106c98185856106ba8589610e72565b6106c491906120aa565b610fea565b600191505092915050565b6106dc610f64565b600047905060008111610724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071b9061214c565b60405180910390fd5b61073561072f610d76565b8261122e565b50565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bb906121b8565b60405180910390fd5b6107cc611322565b565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661085a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610851906121b8565b60405180910390fd5b6108648282611385565b5050565b610870610f64565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610950906121b8565b60405180910390fd5b6109616111b5565b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61098a610d76565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109c39190612020565b60206040518083038186803b1580156109db57600080fd5b505afa1580156109ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1391906121ed565b6040518363ffffffff1660e01b8152600401610a3092919061221a565b602060405180830381600087803b158015610a4a57600080fd5b505af1158015610a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a829190612258565b915050919050565b6000600260009054906101000a900460ff16905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610af2610f64565b610afc60006114e6565b565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b81906121b8565b60405180910390fd5b610b926111b5565b60005b82829050811015610c40578373ffffffffffffffffffffffffffffffffffffffff166323b872dd30610bc5610d76565b868686818110610bd857610bd7612285565b5b905060200201356040518463ffffffff1660e01b8152600401610bfd939291906122b4565b600060405180830381600087803b158015610c1757600080fd5b505af1158015610c2b573d6000803e3d6000fd5b5050505080610c39906122eb565b9050610b95565b50505050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906121b8565b60405180910390fd5b610cda6115aa565b565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f906121b8565b60405180910390fd5b610d72818361160d565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f5753570000000000000000000000000000000000000000000000000000000000815250905090565b600080610de7610fe2565b90506000610df58286610e72565b905083811015610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e31906123a6565b60405180910390fd5b610e478286868403610fea565b60019250505092915050565b6000610e5d6111b5565b610e6783836117e6565b506001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f01610f64565b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f6181611809565b50565b610f6c610fe2565b73ffffffffffffffffffffffffffffffffffffffff16610f8a610d76565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790612412565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611051906124a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190612536565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111a89190611dfb565b60405180910390a3505050565b6111bd610a8a565b156111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f4906125a2565b60405180910390fd5b565b60008061120a610fe2565b905061121785828561188d565b611222858585611919565b60019150509392505050565b80471015611271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112689061260e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516112979061265f565b60006040518083038185875af1925050503d80600081146112d4576040519150601f19603f3d011682016040523d82523d6000602084013e6112d9565b606091505b505090508061131d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611314906126e6565b60405180910390fd5b505050565b61132a611b9d565b6000600260006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61136e610fe2565b60405161137b9190612020565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90612752565b60405180910390fd5b61140160008383611be6565b806005600082825461141391906120aa565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461146991906120aa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114ce9190611dfb565b60405180910390a36114e260008383611beb565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115b26111b5565b6001600260006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115f6610fe2565b6040516116039190612020565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611674906127e4565b60405180910390fd5b61168982600083611be6565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170790612876565b60405180910390fd5b818103600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600560008282546117689190612896565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117cd9190611dfb565b60405180910390a36117e183600084611beb565b505050565b6000806117f1610fe2565b90506117fe818585611919565b600191505092915050565b611811610f64565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118789061293c565b60405180910390fd5b61188a816114e6565b50565b60006118998484610e72565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119135781811015611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fc906129a8565b60405180910390fd5b6119128484848403610fea565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090612a3a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090612acc565b60405180910390fd5b611a04838383611be6565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290612b5e565b60405180910390fd5b818103600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2091906120aa565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b849190611dfb565b60405180910390a3611b97848484611beb565b50505050565b611ba5610a8a565b611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb90612bca565b60405180910390fd5b565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c2a578082015181840152602081019050611c0f565b83811115611c39576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c5b82611bf0565b611c658185611bfb565b9350611c75818560208601611c0c565b611c7e81611c3f565b840191505092915050565b60006020820190508181036000830152611ca38184611c50565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ce082611cb5565b9050919050565b611cf081611cd5565b8114611cfb57600080fd5b50565b600081359050611d0d81611ce7565b92915050565b600060208284031215611d2957611d28611cab565b5b6000611d3784828501611cfe565b91505092915050565b60008115159050919050565b611d5581611d40565b82525050565b6000602082019050611d706000830184611d4c565b92915050565b6000819050919050565b611d8981611d76565b8114611d9457600080fd5b50565b600081359050611da681611d80565b92915050565b60008060408385031215611dc357611dc2611cab565b5b6000611dd185828601611cfe565b9250506020611de285828601611d97565b9150509250929050565b611df581611d76565b82525050565b6000602082019050611e106000830184611dec565b92915050565b600080600060608486031215611e2f57611e2e611cab565b5b6000611e3d86828701611cfe565b9350506020611e4e86828701611cfe565b9250506040611e5f86828701611d97565b9150509250925092565b600060ff82169050919050565b611e7f81611e69565b82525050565b6000602082019050611e9a6000830184611e76565b92915050565b611ea981611d40565b8114611eb457600080fd5b50565b600081359050611ec681611ea0565b92915050565b60008060408385031215611ee357611ee2611cab565b5b6000611ef185828601611cfe565b9250506020611f0285828601611eb7565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112611f3157611f30611f0c565b5b8235905067ffffffffffffffff811115611f4e57611f4d611f11565b5b602083019150836020820283011115611f6a57611f69611f16565b5b9250929050565b600080600060408486031215611f8a57611f89611cab565b5b6000611f9886828701611cfe565b935050602084013567ffffffffffffffff811115611fb957611fb8611cb0565b5b611fc586828701611f1b565b92509250509250925092565b60008060408385031215611fe857611fe7611cab565b5b6000611ff685828601611d97565b925050602061200785828601611cfe565b9150509250929050565b61201a81611cd5565b82525050565b60006020820190506120356000830184612011565b92915050565b6000806040838503121561205257612051611cab565b5b600061206085828601611cfe565b925050602061207185828601611cfe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120b582611d76565b91506120c083611d76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120f5576120f461207b565b5b828201905092915050565b7f6e6f2066756e647320617661696c61626c650000000000000000000000000000600082015250565b6000612136601283611bfb565b915061214182612100565b602082019050919050565b6000602082019050818103600083015261216581612129565b9050919050565b7f496e76616c69642064656c656761746500000000000000000000000000000000600082015250565b60006121a2601083611bfb565b91506121ad8261216c565b602082019050919050565b600060208201905081810360008301526121d181612195565b9050919050565b6000815190506121e781611d80565b92915050565b60006020828403121561220357612202611cab565b5b6000612211848285016121d8565b91505092915050565b600060408201905061222f6000830185612011565b61223c6020830184611dec565b9392505050565b60008151905061225281611ea0565b92915050565b60006020828403121561226e5761226d611cab565b5b600061227c84828501612243565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006060820190506122c96000830186612011565b6122d66020830185612011565b6122e36040830184611dec565b949350505050565b60006122f682611d76565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156123295761232861207b565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612390602583611bfb565b915061239b82612334565b604082019050919050565b600060208201905081810360008301526123bf81612383565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006123fc602083611bfb565b9150612407826123c6565b602082019050919050565b6000602082019050818103600083015261242b816123ef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061248e602483611bfb565b915061249982612432565b604082019050919050565b600060208201905081810360008301526124bd81612481565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612520602283611bfb565b915061252b826124c4565b604082019050919050565b6000602082019050818103600083015261254f81612513565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061258c601083611bfb565b915061259782612556565b602082019050919050565b600060208201905081810360008301526125bb8161257f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006125f8601d83611bfb565b9150612603826125c2565b602082019050919050565b60006020820190508181036000830152612627816125eb565b9050919050565b600081905092915050565b50565b600061264960008361262e565b915061265482612639565b600082019050919050565b600061266a8261263c565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006126d0603a83611bfb565b91506126db82612674565b604082019050919050565b600060208201905081810360008301526126ff816126c3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061273c601f83611bfb565b915061274782612706565b602082019050919050565b6000602082019050818103600083015261276b8161272f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006127ce602183611bfb565b91506127d982612772565b604082019050919050565b600060208201905081810360008301526127fd816127c1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612860602283611bfb565b915061286b82612804565b604082019050919050565b6000602082019050818103600083015261288f81612853565b9050919050565b60006128a182611d76565b91506128ac83611d76565b9250828210156128bf576128be61207b565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612926602683611bfb565b9150612931826128ca565b604082019050919050565b6000602082019050818103600083015261295581612919565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612992601d83611bfb565b915061299d8261295c565b602082019050919050565b600060208201905081810360008301526129c181612985565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a24602583611bfb565b9150612a2f826129c8565b604082019050919050565b60006020820190508181036000830152612a5381612a17565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ab6602383611bfb565b9150612ac182612a5a565b604082019050919050565b60006020820190508181036000830152612ae581612aa9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b48602683611bfb565b9150612b5382612aec565b604082019050919050565b60006020820190508181036000830152612b7781612b3b565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612bb4601483611bfb565b9150612bbf82612b7e565b602082019050919050565b60006020820190508181036000830152612be381612ba7565b905091905056fea2646970667358221220a708e7894479437b6f422091c57a5f235ebe95768fc5ee606d0cec00df51285f64736f6c63430008090033
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.