ERC-20
Overview
Max Total Supply
130,000,000 ACRIA
Holders
4,953 (0.00%)
Market
Price
$0.01 @ 0.000003 ETH (+11.90%)
Onchain Market Cap
$1,047,103.20
Circulating Supply Market Cap
$911,412.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.002862762255121786 ACRIAValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AcriaToken
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: MIT pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract AcriaToken is ERC20 { address admin; constructor(uint256 initialSupply) ERC20("Acria Token", "ACRIA") { admin = msg.sender; _mint(admin, initialSupply); } function transferBatch(address[] calldata wallets, uint256[] calldata amounts) external { require(wallets.length <= 100); for (uint i = 0; i < wallets.length; i++) { transfer(wallets[i], amounts[i]); } } function mint(uint256 amount) external { require(msg.sender == admin); require(amount > 0); _mint(admin, amount); } function burn(uint256 amount) external { require(amount > 0); _burn(msg.sender, amount); } }
// 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); }
// 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 {} }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","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":"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":"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":"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":"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":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"transferBatch","outputs":[],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002240380380620022408339818101604052810190620000379190620002fc565b6040518060400160405280600b81526020017f416372696120546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f41435249410000000000000000000000000000000000000000000000000000008152508160039081620000b491906200059e565b508060049081620000c691906200059e565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200013e600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200014560201b60201c565b50620007a0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ae90620006e6565b60405180910390fd5b620001cb60008383620002b260201b60201c565b8060026000828254620001df919062000737565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000292919062000783565b60405180910390a3620002ae60008383620002b760201b60201c565b5050565b505050565b505050565b600080fd5b6000819050919050565b620002d681620002c1565b8114620002e257600080fd5b50565b600081519050620002f681620002cb565b92915050565b600060208284031215620003155762000314620002bc565b5b60006200032584828501620002e5565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b057607f821691505b602082108103620003c657620003c562000368565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003f1565b6200043c8683620003f1565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200047f620004796200047384620002c1565b62000454565b620002c1565b9050919050565b6000819050919050565b6200049b836200045e565b620004b3620004aa8262000486565b848454620003fe565b825550505050565b600090565b620004ca620004bb565b620004d781848462000490565b505050565b5b81811015620004ff57620004f3600082620004c0565b600181019050620004dd565b5050565b601f8211156200054e576200051881620003cc565b6200052384620003e1565b8101602085101562000533578190505b6200054b6200054285620003e1565b830182620004dc565b50505b505050565b600082821c905092915050565b6000620005736000198460080262000553565b1980831691505092915050565b60006200058e838362000560565b9150826002028217905092915050565b620005a9826200032e565b67ffffffffffffffff811115620005c557620005c462000339565b5b620005d1825462000397565b620005de82828562000503565b600060209050601f83116001811462000616576000841562000601578287015190505b6200060d858262000580565b8655506200067d565b601f1984166200062686620003cc565b60005b82811015620006505784890151825560018201915060208501945060208101905062000629565b868310156200067057848901516200066c601f89168262000560565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006ce601f8362000685565b9150620006db8262000696565b602082019050919050565b600060208201905081810360008301526200070181620006bf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200074482620002c1565b91506200075183620002c1565b92508282019050808211156200076c576200076b62000708565b5b92915050565b6200077d81620002c1565b82525050565b60006020820190506200079a600083018462000772565b92915050565b611a9080620007b06000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c578063a0712d6811610066578063a0712d681461025f578063a457c2d71461027b578063a9059cbb146102ab578063dd62ed3e146102db576100ea565b806342966c68146101f557806370a082311461021157806395d89b4114610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a95780633b3e672f146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030b565b6040516101049190610ff8565b60405180910390f35b610127600480360381019061012291906110b8565b61039d565b6040516101349190611113565b60405180910390f35b6101456103c0565b604051610152919061113d565b60405180910390f35b61017560048036038101906101709190611158565b6103ca565b6040516101829190611113565b60405180910390f35b6101936103f9565b6040516101a091906111c7565b60405180910390f35b6101c360048036038101906101be91906110b8565b610402565b6040516101d09190611113565b60405180910390f35b6101f360048036038101906101ee919061129d565b610439565b005b61020f600480360381019061020a919061131e565b6104bd565b005b61022b6004803603810190610226919061134b565b6104d7565b604051610238919061113d565b60405180910390f35b61024961051f565b6040516102569190610ff8565b60405180910390f35b6102796004803603810190610274919061131e565b6105b1565b005b610295600480360381019061029091906110b8565b610647565b6040516102a29190611113565b60405180910390f35b6102c560048036038101906102c091906110b8565b6106be565b6040516102d29190611113565b60405180910390f35b6102f560048036038101906102f09190611378565b6106e1565b604051610302919061113d565b60405180910390f35b60606003805461031a906113e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610346906113e7565b80156103935780601f1061036857610100808354040283529160200191610393565b820191906000526020600020905b81548152906001019060200180831161037657829003601f168201915b5050505050905090565b6000806103a8610768565b90506103b5818585610770565b600191505092915050565b6000600254905090565b6000806103d5610768565b90506103e2858285610939565b6103ed8585856109c5565b60019150509392505050565b60006012905090565b60008061040d610768565b905061042e81858561041f85896106e1565b6104299190611447565b610770565b600191505092915050565b606484849050111561044a57600080fd5b60005b848490508110156104b6576104a285858381811061046e5761046d61147b565b5b9050602002016020810190610483919061134b565b8484848181106104965761049561147b565b5b905060200201356106be565b5080806104ae906114aa565b91505061044d565b5050505050565b600081116104ca57600080fd5b6104d43382610c3b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461052e906113e7565b80601f016020809104026020016040519081016040528092919081815260200182805461055a906113e7565b80156105a75780601f1061057c576101008083540402835291602001916105a7565b820191906000526020600020905b81548152906001019060200180831161058a57829003601f168201915b5050505050905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461060b57600080fd5b6000811161061857600080fd5b610644600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610e08565b50565b600080610652610768565b9050600061066082866106e1565b9050838110156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611564565b60405180910390fd5b6106b28286868403610770565b60019250505092915050565b6000806106c9610768565b90506106d68185856109c5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d6906115f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084590611688565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092c919061113d565b60405180910390a3505050565b600061094584846106e1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109bf57818110156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a8906116f4565b60405180910390fd5b6109be8484848403610770565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611786565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90611818565b60405180910390fd5b610aae838383610f5e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b906118aa565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c22919061113d565b60405180910390a3610c35848484610f63565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca19061193c565b60405180910390fd5b610cb682600083610f5e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d33906119ce565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610def919061113d565b60405180910390a3610e0383600084610f63565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90611a3a565b60405180910390fd5b610e8360008383610f5e565b8060026000828254610e959190611447565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f46919061113d565b60405180910390a3610f5a60008383610f63565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fa2578082015181840152602081019050610f87565b60008484015250505050565b6000601f19601f8301169050919050565b6000610fca82610f68565b610fd48185610f73565b9350610fe4818560208601610f84565b610fed81610fae565b840191505092915050565b600060208201905081810360008301526110128184610fbf565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061104f82611024565b9050919050565b61105f81611044565b811461106a57600080fd5b50565b60008135905061107c81611056565b92915050565b6000819050919050565b61109581611082565b81146110a057600080fd5b50565b6000813590506110b28161108c565b92915050565b600080604083850312156110cf576110ce61101a565b5b60006110dd8582860161106d565b92505060206110ee858286016110a3565b9150509250929050565b60008115159050919050565b61110d816110f8565b82525050565b60006020820190506111286000830184611104565b92915050565b61113781611082565b82525050565b6000602082019050611152600083018461112e565b92915050565b6000806000606084860312156111715761117061101a565b5b600061117f8682870161106d565b93505060206111908682870161106d565b92505060406111a1868287016110a3565b9150509250925092565b600060ff82169050919050565b6111c1816111ab565b82525050565b60006020820190506111dc60008301846111b8565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611207576112066111e2565b5b8235905067ffffffffffffffff811115611224576112236111e7565b5b6020830191508360208202830111156112405761123f6111ec565b5b9250929050565b60008083601f84011261125d5761125c6111e2565b5b8235905067ffffffffffffffff81111561127a576112796111e7565b5b602083019150836020820283011115611296576112956111ec565b5b9250929050565b600080600080604085870312156112b7576112b661101a565b5b600085013567ffffffffffffffff8111156112d5576112d461101f565b5b6112e1878288016111f1565b9450945050602085013567ffffffffffffffff8111156113045761130361101f565b5b61131087828801611247565b925092505092959194509250565b6000602082840312156113345761133361101a565b5b6000611342848285016110a3565b91505092915050565b6000602082840312156113615761136061101a565b5b600061136f8482850161106d565b91505092915050565b6000806040838503121561138f5761138e61101a565b5b600061139d8582860161106d565b92505060206113ae8582860161106d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113ff57607f821691505b602082108103611412576114116113b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061145282611082565b915061145d83611082565b925082820190508082111561147557611474611418565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006114b582611082565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036114e7576114e6611418565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061154e602583610f73565b9150611559826114f2565b604082019050919050565b6000602082019050818103600083015261157d81611541565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115e0602483610f73565b91506115eb82611584565b604082019050919050565b6000602082019050818103600083015261160f816115d3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611672602283610f73565b915061167d82611616565b604082019050919050565b600060208201905081810360008301526116a181611665565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006116de601d83610f73565b91506116e9826116a8565b602082019050919050565b6000602082019050818103600083015261170d816116d1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611770602583610f73565b915061177b82611714565b604082019050919050565b6000602082019050818103600083015261179f81611763565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611802602383610f73565b915061180d826117a6565b604082019050919050565b60006020820190508181036000830152611831816117f5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611894602683610f73565b915061189f82611838565b604082019050919050565b600060208201905081810360008301526118c381611887565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611926602183610f73565b9150611931826118ca565b604082019050919050565b6000602082019050818103600083015261195581611919565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006119b8602283610f73565b91506119c38261195c565b604082019050919050565b600060208201905081810360008301526119e7816119ab565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a24601f83610f73565b9150611a2f826119ee565b602082019050919050565b60006020820190508181036000830152611a5381611a17565b905091905056fea26469706673582212200ed30020f8ae4f218e3730fafcc06cedc0c76b3ac4c20685de2d0809ce4d78c164736f6c6343000811003300000000000000000000000000000000000000000073ce27351811f40c000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c578063a0712d6811610066578063a0712d681461025f578063a457c2d71461027b578063a9059cbb146102ab578063dd62ed3e146102db576100ea565b806342966c68146101f557806370a082311461021157806395d89b4114610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a95780633b3e672f146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030b565b6040516101049190610ff8565b60405180910390f35b610127600480360381019061012291906110b8565b61039d565b6040516101349190611113565b60405180910390f35b6101456103c0565b604051610152919061113d565b60405180910390f35b61017560048036038101906101709190611158565b6103ca565b6040516101829190611113565b60405180910390f35b6101936103f9565b6040516101a091906111c7565b60405180910390f35b6101c360048036038101906101be91906110b8565b610402565b6040516101d09190611113565b60405180910390f35b6101f360048036038101906101ee919061129d565b610439565b005b61020f600480360381019061020a919061131e565b6104bd565b005b61022b6004803603810190610226919061134b565b6104d7565b604051610238919061113d565b60405180910390f35b61024961051f565b6040516102569190610ff8565b60405180910390f35b6102796004803603810190610274919061131e565b6105b1565b005b610295600480360381019061029091906110b8565b610647565b6040516102a29190611113565b60405180910390f35b6102c560048036038101906102c091906110b8565b6106be565b6040516102d29190611113565b60405180910390f35b6102f560048036038101906102f09190611378565b6106e1565b604051610302919061113d565b60405180910390f35b60606003805461031a906113e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610346906113e7565b80156103935780601f1061036857610100808354040283529160200191610393565b820191906000526020600020905b81548152906001019060200180831161037657829003601f168201915b5050505050905090565b6000806103a8610768565b90506103b5818585610770565b600191505092915050565b6000600254905090565b6000806103d5610768565b90506103e2858285610939565b6103ed8585856109c5565b60019150509392505050565b60006012905090565b60008061040d610768565b905061042e81858561041f85896106e1565b6104299190611447565b610770565b600191505092915050565b606484849050111561044a57600080fd5b60005b848490508110156104b6576104a285858381811061046e5761046d61147b565b5b9050602002016020810190610483919061134b565b8484848181106104965761049561147b565b5b905060200201356106be565b5080806104ae906114aa565b91505061044d565b5050505050565b600081116104ca57600080fd5b6104d43382610c3b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461052e906113e7565b80601f016020809104026020016040519081016040528092919081815260200182805461055a906113e7565b80156105a75780601f1061057c576101008083540402835291602001916105a7565b820191906000526020600020905b81548152906001019060200180831161058a57829003601f168201915b5050505050905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461060b57600080fd5b6000811161061857600080fd5b610644600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610e08565b50565b600080610652610768565b9050600061066082866106e1565b9050838110156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611564565b60405180910390fd5b6106b28286868403610770565b60019250505092915050565b6000806106c9610768565b90506106d68185856109c5565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d6906115f6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084590611688565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092c919061113d565b60405180910390a3505050565b600061094584846106e1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109bf57818110156109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a8906116f4565b60405180910390fd5b6109be8484848403610770565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611786565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90611818565b60405180910390fd5b610aae838383610f5e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b906118aa565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c22919061113d565b60405180910390a3610c35848484610f63565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca19061193c565b60405180910390fd5b610cb682600083610f5e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d33906119ce565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610def919061113d565b60405180910390a3610e0383600084610f63565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90611a3a565b60405180910390fd5b610e8360008383610f5e565b8060026000828254610e959190611447565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f46919061113d565b60405180910390a3610f5a60008383610f63565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fa2578082015181840152602081019050610f87565b60008484015250505050565b6000601f19601f8301169050919050565b6000610fca82610f68565b610fd48185610f73565b9350610fe4818560208601610f84565b610fed81610fae565b840191505092915050565b600060208201905081810360008301526110128184610fbf565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061104f82611024565b9050919050565b61105f81611044565b811461106a57600080fd5b50565b60008135905061107c81611056565b92915050565b6000819050919050565b61109581611082565b81146110a057600080fd5b50565b6000813590506110b28161108c565b92915050565b600080604083850312156110cf576110ce61101a565b5b60006110dd8582860161106d565b92505060206110ee858286016110a3565b9150509250929050565b60008115159050919050565b61110d816110f8565b82525050565b60006020820190506111286000830184611104565b92915050565b61113781611082565b82525050565b6000602082019050611152600083018461112e565b92915050565b6000806000606084860312156111715761117061101a565b5b600061117f8682870161106d565b93505060206111908682870161106d565b92505060406111a1868287016110a3565b9150509250925092565b600060ff82169050919050565b6111c1816111ab565b82525050565b60006020820190506111dc60008301846111b8565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611207576112066111e2565b5b8235905067ffffffffffffffff811115611224576112236111e7565b5b6020830191508360208202830111156112405761123f6111ec565b5b9250929050565b60008083601f84011261125d5761125c6111e2565b5b8235905067ffffffffffffffff81111561127a576112796111e7565b5b602083019150836020820283011115611296576112956111ec565b5b9250929050565b600080600080604085870312156112b7576112b661101a565b5b600085013567ffffffffffffffff8111156112d5576112d461101f565b5b6112e1878288016111f1565b9450945050602085013567ffffffffffffffff8111156113045761130361101f565b5b61131087828801611247565b925092505092959194509250565b6000602082840312156113345761133361101a565b5b6000611342848285016110a3565b91505092915050565b6000602082840312156113615761136061101a565b5b600061136f8482850161106d565b91505092915050565b6000806040838503121561138f5761138e61101a565b5b600061139d8582860161106d565b92505060206113ae8582860161106d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113ff57607f821691505b602082108103611412576114116113b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061145282611082565b915061145d83611082565b925082820190508082111561147557611474611418565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006114b582611082565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036114e7576114e6611418565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061154e602583610f73565b9150611559826114f2565b604082019050919050565b6000602082019050818103600083015261157d81611541565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115e0602483610f73565b91506115eb82611584565b604082019050919050565b6000602082019050818103600083015261160f816115d3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611672602283610f73565b915061167d82611616565b604082019050919050565b600060208201905081810360008301526116a181611665565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006116de601d83610f73565b91506116e9826116a8565b602082019050919050565b6000602082019050818103600083015261170d816116d1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611770602583610f73565b915061177b82611714565b604082019050919050565b6000602082019050818103600083015261179f81611763565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611802602383610f73565b915061180d826117a6565b604082019050919050565b60006020820190508181036000830152611831816117f5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611894602683610f73565b915061189f82611838565b604082019050919050565b600060208201905081810360008301526118c381611887565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611926602183610f73565b9150611931826118ca565b604082019050919050565b6000602082019050818103600083015261195581611919565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006119b8602283610f73565b91506119c38261195c565b604082019050919050565b600060208201905081810360008301526119e7816119ab565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a24601f83610f73565b9150611a2f826119ee565b602082019050919050565b60006020820190508181036000830152611a5381611a17565b905091905056fea26469706673582212200ed30020f8ae4f218e3730fafcc06cedc0c76b3ac4c20685de2d0809ce4d78c164736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000073ce27351811f40c000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 140000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000073ce27351811f40c000000
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.