Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Finance
Overview
Max Total Supply
500,000,000 ASI
Holders
2,017 ( -0.050%)
Market
Price
$0.00 @ 0.000001 ETH (-5.63%)
Onchain Market Cap
$970,270.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,016 ASIValue
$5.85 ( ~0.00233997107951011 Eth) [0.0006%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ASIToken
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract ASIToken is ERC20Capped, Ownable { constructor(uint256 _initialSupply, uint256 _cap) ERC20("AltSignals", "ASI") ERC20Capped(_cap * 10**decimals()) Ownable() { _mint(msg.sender, _initialSupply * 10**decimals()); } function burn(uint256 _amount) public { _burn(msg.sender, _amount); } /// @notice Contract is still ERC20Capped function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } }
// 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 (last updated v4.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
// 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); }
// 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"uint256","name":"_cap","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620028e9380380620028e98339818101604052810190620000379190620004da565b62000047620001a760201b60201c565b600a620000559190620006b1565b8162000062919062000702565b6040518060400160405280600a81526020017f416c745369676e616c73000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f41534900000000000000000000000000000000000000000000000000000000008152508160039081620000df9190620009bd565b508060049081620000f19190620009bd565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000b05565b60405180910390fd5b8060808181525050506200016362000157620001b060201b60201c565b620001b860201b60201c565b6200019f3362000178620001a760201b60201c565b600a620001869190620006b1565b8462000193919062000702565b6200027e60201b60201c565b505062000c74565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028e6200030f60201b60201c565b81620002a46200031960201b620004271760201c565b620002b0919062000b27565b1115620002f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002eb9062000bb2565b60405180910390fd5b6200030b82826200032360201b620007a71760201c565b5050565b6000608051905090565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000395576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038c9062000c24565b60405180910390fd5b620003a9600083836200049060201b60201c565b8060026000828254620003bd919062000b27565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000470919062000c57565b60405180910390a36200048c600083836200049560201b60201c565b5050565b505050565b505050565b600080fd5b6000819050919050565b620004b4816200049f565b8114620004c057600080fd5b50565b600081519050620004d481620004a9565b92915050565b60008060408385031215620004f457620004f36200049a565b5b60006200050485828601620004c3565b92505060206200051785828601620004c3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620005af5780860481111562000587576200058662000521565b5b6001851615620005975780820291505b8081029050620005a78562000550565b945062000567565b94509492505050565b600082620005ca57600190506200069d565b81620005da57600090506200069d565b8160018114620005f35760028114620005fe5762000634565b60019150506200069d565b60ff84111562000613576200061262000521565b5b8360020a9150848211156200062d576200062c62000521565b5b506200069d565b5060208310610133831016604e8410600b84101617156200066e5782820a90508381111562000668576200066762000521565b5b6200069d565b6200067d84848460016200055d565b9250905081840481111562000697576200069662000521565b5b81810290505b9392505050565b600060ff82169050919050565b6000620006be826200049f565b9150620006cb83620006a4565b9250620006fa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005b8565b905092915050565b60006200070f826200049f565b91506200071c836200049f565b92508282026200072c816200049f565b9150828204841483151762000746576200074562000521565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007cf57607f821691505b602082108103620007e557620007e462000787565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200084f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000810565b6200085b868362000810565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200089e6200089862000892846200049f565b62000873565b6200049f565b9050919050565b6000819050919050565b620008ba836200087d565b620008d2620008c982620008a5565b8484546200081d565b825550505050565b600090565b620008e9620008da565b620008f6818484620008af565b505050565b5b818110156200091e5762000912600082620008df565b600181019050620008fc565b5050565b601f8211156200096d576200093781620007eb565b620009428462000800565b8101602085101562000952578190505b6200096a620009618562000800565b830182620008fb565b50505b505050565b600082821c905092915050565b6000620009926000198460080262000972565b1980831691505092915050565b6000620009ad83836200097f565b9150826002028217905092915050565b620009c8826200074d565b67ffffffffffffffff811115620009e457620009e362000758565b5b620009f08254620007b6565b620009fd82828562000922565b600060209050601f83116001811462000a35576000841562000a20578287015190505b62000a2c85826200099f565b86555062000a9c565b601f19841662000a4586620007eb565b60005b8281101562000a6f5784890151825560018201915060208501945060208101905062000a48565b8683101562000a8f578489015162000a8b601f8916826200097f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000aed60158362000aa4565b915062000afa8262000ab5565b602082019050919050565b6000602082019050818103600083015262000b208162000ade565b9050919050565b600062000b34826200049f565b915062000b41836200049f565b925082820190508082111562000b5c5762000b5b62000521565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000b9a60198362000aa4565b915062000ba78262000b62565b602082019050919050565b6000602082019050818103600083015262000bcd8162000b8b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c0c601f8362000aa4565b915062000c198262000bd4565b602082019050919050565b6000602082019050818103600083015262000c3f8162000bfd565b9050919050565b62000c51816200049f565b82525050565b600060208201905062000c6e600083018462000c46565b92915050565b608051611c5962000c90600039600061046d0152611c596000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806342966c68116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063f2fde38b146103565761010b565b806342966c681461023457806370a0823114610250578063715018a6146102805780638da5cb5b1461028a5761010b565b8063313ce567116100de578063313ce567146101ac578063355274ea146101ca57806339509351146101e857806340c10f19146102185761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610372565b60405161012591906111e5565b60405180910390f35b610148600480360381019061014391906112a0565b610404565b60405161015591906112fb565b60405180910390f35b610166610427565b6040516101739190611325565b60405180910390f35b61019660048036038101906101919190611340565b610431565b6040516101a391906112fb565b60405180910390f35b6101b4610460565b6040516101c191906113af565b60405180910390f35b6101d2610469565b6040516101df9190611325565b60405180910390f35b61020260048036038101906101fd91906112a0565b610491565b60405161020f91906112fb565b60405180910390f35b610232600480360381019061022d91906112a0565b6104c8565b005b61024e600480360381019061024991906113ca565b6104de565b005b61026a600480360381019061026591906113f7565b6104eb565b6040516102779190611325565b60405180910390f35b610288610533565b005b610292610547565b60405161029f9190611433565b60405180910390f35b6102b0610571565b6040516102bd91906111e5565b60405180910390f35b6102e060048036038101906102db91906112a0565b610603565b6040516102ed91906112fb565b60405180910390f35b610310600480360381019061030b91906112a0565b61067a565b60405161031d91906112fb565b60405180910390f35b610340600480360381019061033b919061144e565b61069d565b60405161034d9190611325565b60405180910390f35b610370600480360381019061036b91906113f7565b610724565b005b606060038054610381906114bd565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad906114bd565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b60008061040f6108fd565b905061041c818585610905565b600191505092915050565b6000600254905090565b60008061043c6108fd565b9050610449858285610ace565b610454858585610b5a565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60008061049c6108fd565b90506104bd8185856104ae858961069d565b6104b8919061151d565b610905565b600191505092915050565b6104d0610dd0565b6104da8282610e4e565b5050565b6104e83382610eb8565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61053b610dd0565b6105456000611085565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610580906114bd565b80601f01602080910402602001604051908101604052809291908181526020018280546105ac906114bd565b80156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b5050505050905090565b60008061060e6108fd565b9050600061061c828661069d565b905083811015610661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610658906115c3565b60405180910390fd5b61066e8286868403610905565b60019250505092915050565b6000806106856108fd565b9050610692818585610b5a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61072c610dd0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079290611655565b60405180910390fd5b6107a481611085565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d906116c1565b60405180910390fd5b6108226000838361114b565b8060026000828254610834919061151d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108e59190611325565b60405180910390a36108f960008383611150565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90611753565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da906117e5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ac19190611325565b60405180910390a3505050565b6000610ada848461069d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b545781811015610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90611851565b60405180910390fd5b610b538484848403610905565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906118e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f90611975565b60405180910390fd5b610c4383838361114b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090611a07565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db79190611325565b60405180910390a3610dca848484611150565b50505050565b610dd86108fd565b73ffffffffffffffffffffffffffffffffffffffff16610df6610547565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390611a73565b60405180910390fd5b565b610e56610469565b81610e5f610427565b610e69919061151d565b1115610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190611adf565b60405180910390fd5b610eb482826107a7565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90611b71565b60405180910390fd5b610f338260008361114b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090611c03565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161106c9190611325565b60405180910390a361108083600084611150565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561118f578082015181840152602081019050611174565b60008484015250505050565b6000601f19601f8301169050919050565b60006111b782611155565b6111c18185611160565b93506111d1818560208601611171565b6111da8161119b565b840191505092915050565b600060208201905081810360008301526111ff81846111ac565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112378261120c565b9050919050565b6112478161122c565b811461125257600080fd5b50565b6000813590506112648161123e565b92915050565b6000819050919050565b61127d8161126a565b811461128857600080fd5b50565b60008135905061129a81611274565b92915050565b600080604083850312156112b7576112b6611207565b5b60006112c585828601611255565b92505060206112d68582860161128b565b9150509250929050565b60008115159050919050565b6112f5816112e0565b82525050565b600060208201905061131060008301846112ec565b92915050565b61131f8161126a565b82525050565b600060208201905061133a6000830184611316565b92915050565b60008060006060848603121561135957611358611207565b5b600061136786828701611255565b935050602061137886828701611255565b92505060406113898682870161128b565b9150509250925092565b600060ff82169050919050565b6113a981611393565b82525050565b60006020820190506113c460008301846113a0565b92915050565b6000602082840312156113e0576113df611207565b5b60006113ee8482850161128b565b91505092915050565b60006020828403121561140d5761140c611207565b5b600061141b84828501611255565b91505092915050565b61142d8161122c565b82525050565b60006020820190506114486000830184611424565b92915050565b6000806040838503121561146557611464611207565b5b600061147385828601611255565b925050602061148485828601611255565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114d557607f821691505b6020821081036114e8576114e761148e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115288261126a565b91506115338361126a565b925082820190508082111561154b5761154a6114ee565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115ad602583611160565b91506115b882611551565b604082019050919050565b600060208201905081810360008301526115dc816115a0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061163f602683611160565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006116ab601f83611160565b91506116b682611675565b602082019050919050565b600060208201905081810360008301526116da8161169e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061173d602483611160565b9150611748826116e1565b604082019050919050565b6000602082019050818103600083015261176c81611730565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117cf602283611160565b91506117da82611773565b604082019050919050565b600060208201905081810360008301526117fe816117c2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061183b601d83611160565b915061184682611805565b602082019050919050565b6000602082019050818103600083015261186a8161182e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118cd602583611160565b91506118d882611871565b604082019050919050565b600060208201905081810360008301526118fc816118c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061195f602383611160565b915061196a82611903565b604082019050919050565b6000602082019050818103600083015261198e81611952565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119f1602683611160565b91506119fc82611995565b604082019050919050565b60006020820190508181036000830152611a20816119e4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a5d602083611160565b9150611a6882611a27565b602082019050919050565b60006020820190508181036000830152611a8c81611a50565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611ac9601983611160565b9150611ad482611a93565b602082019050919050565b60006020820190508181036000830152611af881611abc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b5b602183611160565b9150611b6682611aff565b604082019050919050565b60006020820190508181036000830152611b8a81611b4e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bed602283611160565b9150611bf882611b91565b604082019050919050565b60006020820190508181036000830152611c1c81611be0565b905091905056fea264697066735822122055406bb76ba2e2717f3144c96bbef11076ac57c63d1890e9c23c15597dceb92064736f6c63430008110033000000000000000000000000000000000000000000000000000000001dcd6500000000000000000000000000000000000000000000000000000000001dcd6500
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806342966c68116100a257806395d89b411161007157806395d89b41146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063f2fde38b146103565761010b565b806342966c681461023457806370a0823114610250578063715018a6146102805780638da5cb5b1461028a5761010b565b8063313ce567116100de578063313ce567146101ac578063355274ea146101ca57806339509351146101e857806340c10f19146102185761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610372565b60405161012591906111e5565b60405180910390f35b610148600480360381019061014391906112a0565b610404565b60405161015591906112fb565b60405180910390f35b610166610427565b6040516101739190611325565b60405180910390f35b61019660048036038101906101919190611340565b610431565b6040516101a391906112fb565b60405180910390f35b6101b4610460565b6040516101c191906113af565b60405180910390f35b6101d2610469565b6040516101df9190611325565b60405180910390f35b61020260048036038101906101fd91906112a0565b610491565b60405161020f91906112fb565b60405180910390f35b610232600480360381019061022d91906112a0565b6104c8565b005b61024e600480360381019061024991906113ca565b6104de565b005b61026a600480360381019061026591906113f7565b6104eb565b6040516102779190611325565b60405180910390f35b610288610533565b005b610292610547565b60405161029f9190611433565b60405180910390f35b6102b0610571565b6040516102bd91906111e5565b60405180910390f35b6102e060048036038101906102db91906112a0565b610603565b6040516102ed91906112fb565b60405180910390f35b610310600480360381019061030b91906112a0565b61067a565b60405161031d91906112fb565b60405180910390f35b610340600480360381019061033b919061144e565b61069d565b60405161034d9190611325565b60405180910390f35b610370600480360381019061036b91906113f7565b610724565b005b606060038054610381906114bd565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad906114bd565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b60008061040f6108fd565b905061041c818585610905565b600191505092915050565b6000600254905090565b60008061043c6108fd565b9050610449858285610ace565b610454858585610b5a565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000019d971e4fe8401e74000000905090565b60008061049c6108fd565b90506104bd8185856104ae858961069d565b6104b8919061151d565b610905565b600191505092915050565b6104d0610dd0565b6104da8282610e4e565b5050565b6104e83382610eb8565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61053b610dd0565b6105456000611085565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610580906114bd565b80601f01602080910402602001604051908101604052809291908181526020018280546105ac906114bd565b80156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b5050505050905090565b60008061060e6108fd565b9050600061061c828661069d565b905083811015610661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610658906115c3565b60405180910390fd5b61066e8286868403610905565b60019250505092915050565b6000806106856108fd565b9050610692818585610b5a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61072c610dd0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079290611655565b60405180910390fd5b6107a481611085565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d906116c1565b60405180910390fd5b6108226000838361114b565b8060026000828254610834919061151d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108e59190611325565b60405180910390a36108f960008383611150565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90611753565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da906117e5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ac19190611325565b60405180910390a3505050565b6000610ada848461069d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b545781811015610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90611851565b60405180910390fd5b610b538484848403610905565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906118e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f90611975565b60405180910390fd5b610c4383838361114b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090611a07565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db79190611325565b60405180910390a3610dca848484611150565b50505050565b610dd86108fd565b73ffffffffffffffffffffffffffffffffffffffff16610df6610547565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390611a73565b60405180910390fd5b565b610e56610469565b81610e5f610427565b610e69919061151d565b1115610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190611adf565b60405180910390fd5b610eb482826107a7565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90611b71565b60405180910390fd5b610f338260008361114b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090611c03565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161106c9190611325565b60405180910390a361108083600084611150565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561118f578082015181840152602081019050611174565b60008484015250505050565b6000601f19601f8301169050919050565b60006111b782611155565b6111c18185611160565b93506111d1818560208601611171565b6111da8161119b565b840191505092915050565b600060208201905081810360008301526111ff81846111ac565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112378261120c565b9050919050565b6112478161122c565b811461125257600080fd5b50565b6000813590506112648161123e565b92915050565b6000819050919050565b61127d8161126a565b811461128857600080fd5b50565b60008135905061129a81611274565b92915050565b600080604083850312156112b7576112b6611207565b5b60006112c585828601611255565b92505060206112d68582860161128b565b9150509250929050565b60008115159050919050565b6112f5816112e0565b82525050565b600060208201905061131060008301846112ec565b92915050565b61131f8161126a565b82525050565b600060208201905061133a6000830184611316565b92915050565b60008060006060848603121561135957611358611207565b5b600061136786828701611255565b935050602061137886828701611255565b92505060406113898682870161128b565b9150509250925092565b600060ff82169050919050565b6113a981611393565b82525050565b60006020820190506113c460008301846113a0565b92915050565b6000602082840312156113e0576113df611207565b5b60006113ee8482850161128b565b91505092915050565b60006020828403121561140d5761140c611207565b5b600061141b84828501611255565b91505092915050565b61142d8161122c565b82525050565b60006020820190506114486000830184611424565b92915050565b6000806040838503121561146557611464611207565b5b600061147385828601611255565b925050602061148485828601611255565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114d557607f821691505b6020821081036114e8576114e761148e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115288261126a565b91506115338361126a565b925082820190508082111561154b5761154a6114ee565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115ad602583611160565b91506115b882611551565b604082019050919050565b600060208201905081810360008301526115dc816115a0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061163f602683611160565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006116ab601f83611160565b91506116b682611675565b602082019050919050565b600060208201905081810360008301526116da8161169e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061173d602483611160565b9150611748826116e1565b604082019050919050565b6000602082019050818103600083015261176c81611730565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117cf602283611160565b91506117da82611773565b604082019050919050565b600060208201905081810360008301526117fe816117c2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061183b601d83611160565b915061184682611805565b602082019050919050565b6000602082019050818103600083015261186a8161182e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118cd602583611160565b91506118d882611871565b604082019050919050565b600060208201905081810360008301526118fc816118c0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061195f602383611160565b915061196a82611903565b604082019050919050565b6000602082019050818103600083015261198e81611952565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119f1602683611160565b91506119fc82611995565b604082019050919050565b60006020820190508181036000830152611a20816119e4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a5d602083611160565b9150611a6882611a27565b602082019050919050565b60006020820190508181036000830152611a8c81611a50565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611ac9601983611160565b9150611ad482611a93565b602082019050919050565b60006020820190508181036000830152611af881611abc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b5b602183611160565b9150611b6682611aff565b604082019050919050565b60006020820190508181036000830152611b8a81611b4e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bed602283611160565b9150611bf882611b91565b604082019050919050565b60006020820190508181036000830152611c1c81611be0565b905091905056fea264697066735822122055406bb76ba2e2717f3144c96bbef11076ac57c63d1890e9c23c15597dceb92064736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000001dcd6500000000000000000000000000000000000000000000000000000000001dcd6500
-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 500000000
Arg [1] : _cap (uint256): 500000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000001dcd6500
Arg [1] : 000000000000000000000000000000000000000000000000000000001dcd6500
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.