Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 262492 | 693 days ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
UltimateTokenOwnable
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// Factory: CreateMyToken
pragma solidity 0.8.24;
import "./core/ERC20.sol";
import "./core/Initializable.sol";
import "./core/Ownable.sol";
import "./core/Pausable.sol";
contract UltimateTokenOwnable is Initializable, ERC20, Pausable, Ownable {
constructor() {
_disableInitializers();
}
function initialize(
address _owner,
address _mintTarget,
string memory _name,
string memory _symbol,
uint8 _decimals,
uint256 _initialSupply,
uint256 _maxSupply
) external initializer {
_transferOwnership(_owner);
ERC20.init(_name, _symbol, _decimals, _maxSupply);
_mint(_mintTarget, _initialSupply);
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal override whenNotPaused {
super._beforeTokenTransfer(from, to, amount);
}
}
// Create your own token at https://www.createmytoken.com/// SPDX-License-Identifier: MIT
// Factory: CreateMyToken
// Library: OpenZeppelin Contracts
pragma solidity ^0.8.24;
import "./interfaces/IERC20Metadata.sol";
import "./Initializable.sol";
contract ERC20 is Initializable, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
uint256 private _maxSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
function init(
string memory name_,
string memory symbol_,
uint8 decimals_,
uint256 maxSupply_
) internal onlyInitializing {
_name = name_;
_symbol = symbol_;
_decimals = decimals_;
_maxSupply = maxSupply_;
}
function name() public view virtual override returns (string memory) {
return _name;
}
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
function decimals() public view virtual override returns (uint8) {
return _decimals;
}
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
function maxSupply() public view virtual returns (uint256) {
return _maxSupply;
}
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
function transfer(address to, uint256 amount) public virtual override returns (bool) {
_transfer(msg.sender, to, amount);
return true;
}
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(msg.sender, spender, amount);
return true;
}
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
_spendAllowance(from, msg.sender, amount);
_transfer(from, to, amount);
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = msg.sender;
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = msg.sender;
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
function burn(uint256 amount) public virtual {
_burn(msg.sender, amount);
}
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, msg.sender, amount);
_burn(account, amount);
}
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
function _mint(address account, uint256 amount) internal virtual {
require(_totalSupply + amount <= _maxSupply, "ERC20: cap exceeded");
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
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);
}
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);
}
}
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// Factory: CreateMyToken
// Library: OpenZeppelin Contracts
pragma solidity ^0.8.24;
import "./libraries/Address.sol";
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(_initialized);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}// SPDX-License-Identifier: MIT
// Factory: CreateMyToken
// Library: OpenZeppelin Contracts
pragma solidity ^0.8.24;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// Factory: CreateMyToken
// Library: OpenZeppelin Contracts
pragma solidity ^0.8.24;
import "./IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// Factory: CreateMyToken
// Library: OpenZeppelin Contracts
pragma solidity ^0.8.24;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// Factory: CreateMyToken
// Library: OpenZeppelin Contracts
pragma solidity ^0.8.24;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(msg.sender);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == msg.sender, "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// Factory: CreateMyToken
// Library: OpenZeppelin Contracts
pragma solidity ^0.8.24;
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(msg.sender);
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(msg.sender);
}
}{
"evmVersion": "paris",
"optimizer": {
"enabled": true,
"runs": 1
},
"viaIR": true,
"metadata": {
"bytecodeHash": "none"
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_mintTarget","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608080604052346101185760078054610100600160b01b0319811633601081811b62010000600160b01b0316929092179093551c6001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36000549060ff8260081c166100c6575060ff8082160361008b575b604051611327908161011e8239f35b60ff90811916176000557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160ff8152a13861007c565b62461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b6064820152608490fd5b600080fdfe6040608081526004908136101561001557600080fd5b600091823560e01c8063031389c11461077957806306fdde03146106ec578063095ea7b3146106c257806318160ddd146106a357806323b872dd14610666578063313ce5671461064457806339509351146105f45780633f4ba83a1461055b57806340c10f191461052e57806342966c68146105105780635c975abb146104e957806370a08231146104b1578063715018a61461046157806379cc6790146104315780638456cb59146103d45780638da5cb5b146103a757806395d89b41146102e9578063a457c2d714610242578063a9059cbb14610211578063d5abeb01146101f4578063dd62ed3e146101a75763f2fde38b1461011357600080fd5b346101a35760203660031901126101a35761012c610b9c565b91610135611137565b6001600160a01b03831615610151578361014e84610d02565b80f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b5050346101f057806003193601126101f057806020926101c5610b9c565b6101cd610bb7565b6001600160a01b0391821683526002865283832091168252845220549051908152f35b5080fd5b50346101a357826003193601126101a35760209250549051908152f35b5050346101f057806003193601126101f05760209061023b610231610b9c565b6024359033610fd1565b5160018152f35b5082346102e657826003193601126102e65761025c610b9c565b918360243592338152600260205281812060018060a01b03861682526020522054908282106102955760208561023b8585038733610e37565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b80fd5b5050346101f057816003193601126101f0578051908260065461030b81610ca5565b90818552602092600191600181169081600014610385575060011461034a575b610346868661033c828b0383610bcd565b5191829182610c5c565b0390f35b929550600683528583205b82841061037257505050826103469461033c92820101943861032b565b8054868501880152928601928101610355565b60ff191687860152505050151560051b830101925061033c826103463861032b565b5050346101f057816003193601126101f057600754905160109190911c6001600160a01b03168152602090f35b5050346101f057816003193601126101f05760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25891610412611137565b61041a611293565b61010061ff0019600754161760075551338152a180f35b5050346101f0573660031901126102e65761014e61044d610b9c565b6024359061045c823383610f39565b611192565b83346102e657806003193601126102e65761047a611137565b6007805462010000600160b01b03198116909155819060101c6001600160a01b03166000805160206112db8339815191528280a380f35b5050346101f05760203660031901126101f05760209181906001600160a01b036104d9610b9c565b1681526001845220549051908152f35b5050346101f057816003193601126101f05760209060ff60075460081c1690519015158152f35b8382346101f05760203660031901126101f05761014e903533611192565b5050346101f0573660031901126102e65761014e61054a610b9c565b610552611137565b60243590610d4e565b50346101a357826003193601126101a357610574611137565b6007549060ff8260081c16156105ba575061ff001916600755513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b606490602084519162461bcd60e51b8352820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152fd5b5050346101f057806003193601126101f05761023b60209261063d610617610b9c565b338352600286528483206001600160a01b03821684528652918490205460243590610cdf565b9033610e37565b5050346101f057816003193601126101f05760209060ff600754169051908152f35b5050346101f05760603660031901126101f05760209061023b610687610b9c565b61068f610bb7565b6044359161069e833383610f39565b610fd1565b5050346101f057816003193601126101f0576020906003549051908152f35b5050346101f057806003193601126101f05760209061023b6106e2610b9c565b6024359033610e37565b5050346101f057816003193601126101f0578051908260055461070e81610ca5565b90818552602092600191600181169081600014610385575060011461073e57610346868661033c828b0383610bcd565b929550600583528583205b82841061076657505050826103469461033c92820101943861032b565b8054868501880152928601928101610749565b509190346101f05760e03660031901126101f057610795610b9c565b61079d610bb7565b6001600160401b0394604435868111610b98576107bd9036908301610c06565b606435878111610b94576107d49036908401610c06565b6084359160ff8316809303610b905787549160ff8360081c161596878098610b83575b8015610b6c575b15610b125761081f90600194898660ff198316178d55610b01575b50610d02565b60ff895460081c1615610aaa5781518a81116109dc57600590806108438354610ca5565b94601f95868111610a59575b506020908d8784116001146109fa57926109ef575b5050600019600383901b1c191690851b1781555b81519a8b116109dc578a9061088e600654610ca5565b90848211610997575b5050506020918a116001146109325798809281928a9b6108e5999a9b94610927575b50501b916000199060031b1c1916176006555b60ff19600754161760075560c435905560a43590610d4e565b6108ed575080f35b60207f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989160ff84549161ff0019831686555191168152a180f35b0151925038806108b9565b60068952818920909991601f1983168a5b81811061098157509a836108e5999a9b9c10610968575b505050811b016006556108cc565b015160001960f88460031b161c1916905538808061095a565b8c83015184559285019260209283019201610943565b60068c528460208d20926020828601841c850195106109d3575b01901c019084905b8281106109c8578c9250610897565b8b81550184906109b9565b935082936109b1565b634e487b7160e01b8a526041865260248afd5b015190503880610864565b9190889450601f198416868452828420935b818110610a4157508411610a28575b505050811b018155610878565b015160001960f88460031b161c19169055388080610a1b565b8284015185558a969094019360209384019301610a0c565b909150838d5260208d2086808501861c82019260208610610aa1575b8594939101861c9091019088908f5b838210610a935750505061084f565b81558594508991018f610a84565b92508192610a75565b875162461bcd60e51b8152602081870152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fd5b61ffff1916610101178b5538610819565b885162461bcd60e51b8152602081880152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b1580156107fe5750600160ff8516146107fe565b50600160ff8516106107f7565b8780fd5b8680fd5b8580fd5b600435906001600160a01b0382168203610bb257565b600080fd5b602435906001600160a01b0382168203610bb257565b601f909101601f19168101906001600160401b03821190821017610bf057604052565b634e487b7160e01b600052604160045260246000fd5b81601f82011215610bb2578035906001600160401b038211610bf05760405192610c3a601f8401601f191660200185610bcd565b82845260208383010111610bb257816000926020809301838601378301015290565b6020808252825181830181905290939260005b828110610c9157505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610c6f565b90600182811c92168015610cd5575b6020831014610cbf57565b634e487b7160e01b600052602260045260246000fd5b91607f1691610cb4565b91908201809211610cec57565b634e487b7160e01b600052601160045260246000fd5b6007805462010000600160b01b03198116601084811b62010000600160b01b0316919091179092556001600160a01b0392831692911c166000805160206112db833981519152600080a3565b60035490610d5c8383610cdf565b60045410610dfc576001600160a01b0316918215610db757602081610d9a6000805160206112fb83398151915293600095610d95611293565b610cdf565b6003558484526001825260408420818154019055604051908152a3565b60405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b60405162461bcd60e51b8152602060048201526013602482015272115490cc8c0e8818d85c08195e18d959591959606a1b6044820152606490fd5b6001600160a01b03908116918215610ee85716918215610e985760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260028252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b9060018060a01b0380831660005260026020526040600020908216600052602052604060002054926000198403610f71575b50505050565b808410610f8c57610f83930391610e37565b38808080610f6b565b60405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b6001600160a01b039081169182156110e4571691821561109357610ff3611293565b6000828152600160205260408120549180831061103f57604082826000805160206112fb83398151915295876020965260018652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b60075460101c6001600160a01b0316330361114e57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6001600160a01b03168015611244576111a9611293565b806000526001602052604060002054918083106111f4576020816000805160206112fb83398151915292600095858752600184520360408620558060035403600355604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b60ff60075460081c166112a257565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fdfe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa164736f6c6343000818000a
Deployed Bytecode
0x6040608081526004908136101561001557600080fd5b600091823560e01c8063031389c11461077957806306fdde03146106ec578063095ea7b3146106c257806318160ddd146106a357806323b872dd14610666578063313ce5671461064457806339509351146105f45780633f4ba83a1461055b57806340c10f191461052e57806342966c68146105105780635c975abb146104e957806370a08231146104b1578063715018a61461046157806379cc6790146104315780638456cb59146103d45780638da5cb5b146103a757806395d89b41146102e9578063a457c2d714610242578063a9059cbb14610211578063d5abeb01146101f4578063dd62ed3e146101a75763f2fde38b1461011357600080fd5b346101a35760203660031901126101a35761012c610b9c565b91610135611137565b6001600160a01b03831615610151578361014e84610d02565b80f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b5050346101f057806003193601126101f057806020926101c5610b9c565b6101cd610bb7565b6001600160a01b0391821683526002865283832091168252845220549051908152f35b5080fd5b50346101a357826003193601126101a35760209250549051908152f35b5050346101f057806003193601126101f05760209061023b610231610b9c565b6024359033610fd1565b5160018152f35b5082346102e657826003193601126102e65761025c610b9c565b918360243592338152600260205281812060018060a01b03861682526020522054908282106102955760208561023b8585038733610e37565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b80fd5b5050346101f057816003193601126101f0578051908260065461030b81610ca5565b90818552602092600191600181169081600014610385575060011461034a575b610346868661033c828b0383610bcd565b5191829182610c5c565b0390f35b929550600683528583205b82841061037257505050826103469461033c92820101943861032b565b8054868501880152928601928101610355565b60ff191687860152505050151560051b830101925061033c826103463861032b565b5050346101f057816003193601126101f057600754905160109190911c6001600160a01b03168152602090f35b5050346101f057816003193601126101f05760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25891610412611137565b61041a611293565b61010061ff0019600754161760075551338152a180f35b5050346101f0573660031901126102e65761014e61044d610b9c565b6024359061045c823383610f39565b611192565b83346102e657806003193601126102e65761047a611137565b6007805462010000600160b01b03198116909155819060101c6001600160a01b03166000805160206112db8339815191528280a380f35b5050346101f05760203660031901126101f05760209181906001600160a01b036104d9610b9c565b1681526001845220549051908152f35b5050346101f057816003193601126101f05760209060ff60075460081c1690519015158152f35b8382346101f05760203660031901126101f05761014e903533611192565b5050346101f0573660031901126102e65761014e61054a610b9c565b610552611137565b60243590610d4e565b50346101a357826003193601126101a357610574611137565b6007549060ff8260081c16156105ba575061ff001916600755513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b606490602084519162461bcd60e51b8352820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152fd5b5050346101f057806003193601126101f05761023b60209261063d610617610b9c565b338352600286528483206001600160a01b03821684528652918490205460243590610cdf565b9033610e37565b5050346101f057816003193601126101f05760209060ff600754169051908152f35b5050346101f05760603660031901126101f05760209061023b610687610b9c565b61068f610bb7565b6044359161069e833383610f39565b610fd1565b5050346101f057816003193601126101f0576020906003549051908152f35b5050346101f057806003193601126101f05760209061023b6106e2610b9c565b6024359033610e37565b5050346101f057816003193601126101f0578051908260055461070e81610ca5565b90818552602092600191600181169081600014610385575060011461073e57610346868661033c828b0383610bcd565b929550600583528583205b82841061076657505050826103469461033c92820101943861032b565b8054868501880152928601928101610749565b509190346101f05760e03660031901126101f057610795610b9c565b61079d610bb7565b6001600160401b0394604435868111610b98576107bd9036908301610c06565b606435878111610b94576107d49036908401610c06565b6084359160ff8316809303610b905787549160ff8360081c161596878098610b83575b8015610b6c575b15610b125761081f90600194898660ff198316178d55610b01575b50610d02565b60ff895460081c1615610aaa5781518a81116109dc57600590806108438354610ca5565b94601f95868111610a59575b506020908d8784116001146109fa57926109ef575b5050600019600383901b1c191690851b1781555b81519a8b116109dc578a9061088e600654610ca5565b90848211610997575b5050506020918a116001146109325798809281928a9b6108e5999a9b94610927575b50501b916000199060031b1c1916176006555b60ff19600754161760075560c435905560a43590610d4e565b6108ed575080f35b60207f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989160ff84549161ff0019831686555191168152a180f35b0151925038806108b9565b60068952818920909991601f1983168a5b81811061098157509a836108e5999a9b9c10610968575b505050811b016006556108cc565b015160001960f88460031b161c1916905538808061095a565b8c83015184559285019260209283019201610943565b60068c528460208d20926020828601841c850195106109d3575b01901c019084905b8281106109c8578c9250610897565b8b81550184906109b9565b935082936109b1565b634e487b7160e01b8a526041865260248afd5b015190503880610864565b9190889450601f198416868452828420935b818110610a4157508411610a28575b505050811b018155610878565b015160001960f88460031b161c19169055388080610a1b565b8284015185558a969094019360209384019301610a0c565b909150838d5260208d2086808501861c82019260208610610aa1575b8594939101861c9091019088908f5b838210610a935750505061084f565b81558594508991018f610a84565b92508192610a75565b875162461bcd60e51b8152602081870152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fd5b61ffff1916610101178b5538610819565b885162461bcd60e51b8152602081880152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b1580156107fe5750600160ff8516146107fe565b50600160ff8516106107f7565b8780fd5b8680fd5b8580fd5b600435906001600160a01b0382168203610bb257565b600080fd5b602435906001600160a01b0382168203610bb257565b601f909101601f19168101906001600160401b03821190821017610bf057604052565b634e487b7160e01b600052604160045260246000fd5b81601f82011215610bb2578035906001600160401b038211610bf05760405192610c3a601f8401601f191660200185610bcd565b82845260208383010111610bb257816000926020809301838601378301015290565b6020808252825181830181905290939260005b828110610c9157505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610c6f565b90600182811c92168015610cd5575b6020831014610cbf57565b634e487b7160e01b600052602260045260246000fd5b91607f1691610cb4565b91908201809211610cec57565b634e487b7160e01b600052601160045260246000fd5b6007805462010000600160b01b03198116601084811b62010000600160b01b0316919091179092556001600160a01b0392831692911c166000805160206112db833981519152600080a3565b60035490610d5c8383610cdf565b60045410610dfc576001600160a01b0316918215610db757602081610d9a6000805160206112fb83398151915293600095610d95611293565b610cdf565b6003558484526001825260408420818154019055604051908152a3565b60405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b60405162461bcd60e51b8152602060048201526013602482015272115490cc8c0e8818d85c08195e18d959591959606a1b6044820152606490fd5b6001600160a01b03908116918215610ee85716918215610e985760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260028252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b9060018060a01b0380831660005260026020526040600020908216600052602052604060002054926000198403610f71575b50505050565b808410610f8c57610f83930391610e37565b38808080610f6b565b60405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b6001600160a01b039081169182156110e4571691821561109357610ff3611293565b6000828152600160205260408120549180831061103f57604082826000805160206112fb83398151915295876020965260018652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b60075460101c6001600160a01b0316330361114e57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6001600160a01b03168015611244576111a9611293565b806000526001602052604060002054918083106111f4576020816000805160206112fb83398151915292600095858752600184520360408620558060035403600355604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608490fd5b60ff60075460081c166112a257565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fdfe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa164736f6c6343000818000a
Deployed Bytecode Sourcemap
205:937:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;205:937:0;;;;;;:::i;:::-;1010:62:3;;;:::i;:::-;-1:-1:-1;;;;;205:937:0;;2107:22:3;205:937:0;;2201:8:3;;;;:::i;:::-;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;-1:-1:-1;;;;;205:937:0;;;;;1745:11:1;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1589:6:1;205:937:0;;:::i;:::-;;;1573:10:1;;1589:6;:::i;:::-;205:937:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;2543:10:1;;205:937:0;;1745:11:1;205:937:0;;;;;;;;;;;;;;;;;;2633:35:1;;;;205:937:0;;;;2769:34:1;205:937:0;;;;2543:10:1;2769:34;:::i;205:937:0:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;1002:7:1;205:937:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1002:7:1;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;205:937:0;;;;;-1:-1:-1;;;205:937:0;;;;;;;;-1:-1:-1;205:937:0;;;;;;;;;;;;;;;;;;;;1220:6:3;205:937:0;;;;;;;;-1:-1:-1;;;;;205:937:0;;;;;;;;;;;;;;;;;;;;;2220:18:4;1010:62:3;;;:::i;:::-;1150:72:4;;:::i;:::-;205:937:0;;;2191:14:4;205:937:0;;;2191:14:4;205:937:0;;2227:10:4;205:937:0;;2220:18:4;205:937:0;;;;;;;;;-1:-1:-1;;205:937:0;;;;3087:6:1;205:937:0;;:::i;:::-;;;3043:10:1;3055:6;3043:10;;3055:6;;:::i;:::-;3087;:::i;205:937:0:-;;;;;;;;;;;;;1010:62:3;;:::i;:::-;2463:6;205:937:0;;-1:-1:-1;;;;;;205:937:0;;;;;;;;;-1:-1:-1;;;;;205:937:0;-1:-1:-1;;;;;;;;;;;205:937:0;;2511:40:3;205:937:0;;;;;;;;;;-1:-1:-1;;205:937:0;;;;;;;;-1:-1:-1;;;;;205:937:0;;:::i;:::-;;;;1437:9:1;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1631:7:4;205:937:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;205:937:0;;;;2922:6:1;205:937:0;;2910:10:1;2922:6;:::i;205:937:0:-;;;;;;;-1:-1:-1;;205:937:0;;;;955:6;205:937;;:::i;:::-;1010:62:3;;:::i;:::-;205:937:0;;955:6;;:::i;205:937::-;;;;;;;;;;;;;1010:62:3;;:::i;:::-;1631:7:4;205:937:0;;;;;;;;;;-1:-1:-1;;;205:937:0;1631:7:4;205:937:0;;2474:10:4;205:937:0;;2465:20:4;;205:937:0;;2465:20:4;205:937:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;;;2345:38:1;205:937:0;;2345:38:1;205:937:0;;:::i;:::-;2300:10:1;205:937:0;;1745:11:1;205:937:0;;;;;-1:-1:-1;;;;;205:937:0;;;;;;;;;;;;;;2345:38:1;:::i;:::-;2300:10;;2345:38;:::i;205:937:0:-;;;;;;;;;;;;;;;;;1104:9:1;205:937:0;;;;;;;;;;;;;;;;-1:-1:-1;;205:937:0;;;;;;2139:6:1;205:937:0;;:::i;:::-;;;:::i;:::-;;;2090:10:1;2102:6;2090:10;;2102:6;;:::i;:::-;2139;:::i;205:937:0:-;;;;;;;;;;;;;;;;1213:12:1;205:937:0;;;;;;;;;;;;;;;;;;;;;;;1914:6:1;205:937:0;;:::i;:::-;;;1893:10:1;;1914:6;:::i;205:937:0:-;;;;;;;;;;;;;;;;;;896:5:1;205:937:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;896:5:1;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;205:937:0;;;;;;:::i;:::-;;;:::i;:::-;-1:-1:-1;;;;;205:937:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;1061:14:2;1107:34;;;;;;205:937:0;1106:97:2;;;;205:937:0;;;;617:6;205:937;;;;;;;;;;;;1311:65:2;;205:937:0;617:6;;:::i;:::-;205:937;;;;;;;;;;;;;;;;692:13:1;205:937:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;715:17:1;205:937:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;714:14;205:937;;;;;;;;;;;;;;;;;;;;715:17:1;205:937:0;;;;742:21:1;205:937:0;;;742:21:1;205:937:0;;;;;;;714:14;;:::i;:::-;1396:110:2;;205:937:0;;;1396:110:2;205:937:0;1470:25:2;205:937:0;;;;;;;;;;;;;;;;1470:25:2;205:937:0;;;;;;-1:-1:-1;205:937:0;;;;;715:17:1;205:937:0;;;;;;;;-1:-1:-1;;205:937:0;;;;;;;;;;;;714:14;205:937;;;;;;;;;;;;;;715:17:1;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;715:17:1;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;-1:-1:-1;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;205:937:0;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;1311:65:2;-1:-1:-1;;205:937:0;;;;;1311:65:2;;;205:937:0;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;1106:97:2;1175:4;;1695:19:7;:23;1147:55:2;;1106:97;1147:55;205:937:0;;;;;1185:17:2;1106:97;;1107:34;205:937:0;;;;;1125:16:2;1107:34;;205:937:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;205:937:0;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;;;;205:937:0;;;;;;:::o;:::-;;;;;-1:-1:-1;;205:937:0;;;;-1:-1:-1;;;;;205:937:0;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;205:937:0;;;;;;;;;;;-1:-1:-1;;205:937:0;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;205:937:0;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;-1:-1:-1;205:937:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;2371:187:3;2463:6;205:937:0;;-1:-1:-1;;;;;;205:937:0;;;;;;-1:-1:-1;;;;;205:937:0;;;;;;;;-1:-1:-1;;;;;205:937:0;;;;;;;-1:-1:-1;;;;;;;;;;;;;2511:40:3;2371:187::o;3901:612:1:-;3984:12;205:937:0;3984:21:1;;;;;:::i;:::-;4009:10;205:937:0;-1:-1:-1;205:937:0;;-1:-1:-1;;;;;205:937:0;;4061:21:1;;205:937:0;;;1150:72:4;4189:22:1;-1:-1:-1;;;;;;;;;;;1150:72:4;-1:-1:-1;1150:72:4;;;:::i;:::-;4189:22:1;:::i;:::-;3984:12;205:937:0;;;;4357:9:1;205:937:0;;;;;;;;;;;;;;;;4410:37:1;3901:612::o;205:937:0:-;;;-1:-1:-1;;;205:937:0;;;4009:10:1;205:937:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;4009:10:1;205:937:0;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;5184:340:1;-1:-1:-1;;;;;205:937:0;;;;5285:19:1;;205:937:0;;;5363:21:1;;;205:937:0;;;5485:32:1;205:937:0;;5302:1:1;205:937:0;5434:11:1;205:937:0;;;5302:1:1;205:937:0;;5302:1:1;205:937:0;;;;;5302:1:1;205:937:0;;;;;;;5485:32:1;5184:340::o;205:937:0:-;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;5530:411:1;;205:937:0;;;;;;;;-1:-1:-1;205:937:0;1745:11:1;205:937:0;;;-1:-1:-1;205:937:0;;;;-1:-1:-1;205:937:0;;;;-1:-1:-1;205:937:0;;;;;5696:37:1;;5692:243;;5530:411;;;;;:::o;5692:243::-;5757:26;;;205:937:0;;5884:25:1;205:937:0;;5884:25:1;;:::i;:::-;5692:243;;;;;;205:937:0;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;;;;3107:788:1;-1:-1:-1;;;;;205:937:0;;;;3203:18:1;;205:937:0;;;3281:16:1;;;205:937:0;;1150:72:4;;:::i;:::-;3219:1:1;205:937:0;;;3419:9:1;205:937:0;;;;;;3452:21:1;;;;205:937:0;;;;;-1:-1:-1;;;;;;;;;;;205:937:0;;;;;3419:9:1;205:937:0;;;;;;;;;;;;;;;;;;;;;;3814:26:1;3107:788::o;205:937:0:-;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;1306:128:3;1220:6;205:937:0;;;-1:-1:-1;;;;;205:937:0;1380:10:3;1369:21;205:937:0;;1306:128:3:o;205:937:0:-;;;;;;;;;;;;;;;;;;;;;;;;;4519:659:1;-1:-1:-1;;;;;205:937:0;4602:21:1;;205:937:0;;1150:72:4;;:::i;:::-;205:937:0;4621:1:1;205:937:0;4757:9:1;205:937:0;;;4621:1:1;205:937:0;;4793:24:1;;;;205:937:0;;;;-1:-1:-1;;;;;;;;;;;205:937:0;4621:1:1;205:937:0;;;;4757:9:1;205:937:0;;;;;;;;5027:22:1;205:937:0;;5027:22:1;205:937:0;;;;;;5075:37:1;4519:659::o;205:937:0:-;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;;1713:106:4;205:937:0;1631:7:4;205:937:0;;;;;;1713:106:4:o;205:937:0:-;;;-1:-1:-1;;;205:937:0;;;;;;;;;;;;-1:-1:-1;;;205:937:0;;;;;;
Swarm Source
none://164736f6c6343000818000a
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.