Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 269 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24105949 | 76 days ago | IN | 0 ETH | 0.0000017 | ||||
| Approve | 22880880 | 247 days ago | IN | 0 ETH | 0.00007954 | ||||
| Approve | 21620590 | 423 days ago | IN | 0 ETH | 0.00010148 | ||||
| Transfer | 21620562 | 423 days ago | IN | 0 ETH | 0.00008585 | ||||
| Approve | 21599246 | 426 days ago | IN | 0 ETH | 0.00015214 | ||||
| Transfer | 21598966 | 426 days ago | IN | 0 ETH | 0.00009744 | ||||
| Approve | 21592052 | 427 days ago | IN | 0 ETH | 0.00025435 | ||||
| Approve | 21591597 | 427 days ago | IN | 0 ETH | 0.00016171 | ||||
| Approve | 21591516 | 427 days ago | IN | 0 ETH | 0.00016088 | ||||
| Approve | 21584571 | 428 days ago | IN | 0 ETH | 0.00020836 | ||||
| Approve | 21577496 | 429 days ago | IN | 0 ETH | 0.0002585 | ||||
| Approve | 21569462 | 430 days ago | IN | 0 ETH | 0.00026715 | ||||
| Approve | 21569353 | 430 days ago | IN | 0 ETH | 0.00034595 | ||||
| Transfer | 21560234 | 432 days ago | IN | 0 ETH | 0.00040849 | ||||
| Approve | 21557298 | 432 days ago | IN | 0 ETH | 0.0002958 | ||||
| Approve | 21557279 | 432 days ago | IN | 0 ETH | 0.00028761 | ||||
| Approve | 21554215 | 433 days ago | IN | 0 ETH | 0.00040657 | ||||
| Transfer | 21554186 | 433 days ago | IN | 0 ETH | 0.00028268 | ||||
| Transfer | 21554185 | 433 days ago | IN | 0 ETH | 0.00028268 | ||||
| Transfer | 21554185 | 433 days ago | IN | 0 ETH | 0.00028268 | ||||
| Transfer | 21554185 | 433 days ago | IN | 0 ETH | 0.00028268 | ||||
| Transfer | 21554185 | 433 days ago | IN | 0 ETH | 0.00028268 | ||||
| Transfer | 21554185 | 433 days ago | IN | 0 ETH | 0.00028268 | ||||
| Transfer | 21554185 | 433 days ago | IN | 0 ETH | 0.00028268 | ||||
| Transfer | 21554185 | 433 days ago | IN | 0 ETH | 0.00028268 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CotinToken
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//contracts/CotinToken.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
contract CotinToken is ERC20, ERC20Capped, ERC20Burnable, ERC20Pausable {
address payable public owner;
uint256 public blockReward;
constructor(uint256 cap, uint256 reward, uint256 initialMintAmount) ERC20("CotinToken", "COTIN") ERC20Capped(cap * (10 ** decimals())){
owner = payable(msg.sender);
_mint(owner, initialMintAmount * (10 ** decimals()));
blockReward = reward * (10 ** decimals ());
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
function _mint(address account, uint256 amount) internal virtual override(ERC20Capped, ERC20) {
require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
super._mint(account, amount);
}
function postLaunchMint(uint256 postLaunchAmount) public onlyOwner {
require(msg.sender == owner, "Caller does not have the minter role");
require(ERC20.totalSupply() + postLaunchAmount <= cap(), "ERC20Capped: cap exceeded");
super._mint(owner, postLaunchAmount * (10 ** decimals ()));
}
function _mintMinerReward() internal{
_mint(block.coinbase, blockReward);
}
function _beforeTokenTransfer(address from, address to, uint256 value) internal whenNotPaused override (ERC20, ERC20Pausable) {
if(from != address(0) && to != block.coinbase && block.coinbase != address(0)){
_mintMinerReward();
}
super._beforeTokenTransfer(from, to, value);
require(!paused(), "ERC20Pausable: token transfer while paused");
}
function setBlockReward (uint256 reward) public{
blockReward = reward * (10 ** decimals());
}
modifier onlyOwner{
require(msg.sender == owner, "Only the owner can call this function");
_;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @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 is Context {
/**
* @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(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
/**
* @dev Extension of {ERC20} that adds a cap to the supply of tokens.
*/
abstract contract ERC20Capped is ERC20 {
uint256 private immutable _cap;
/**
* @dev Sets the value of the `cap`. This value is immutable, it can only be
* set once during construction.
*/
constructor(uint256 cap_) {
require(cap_ > 0, "ERC20Capped: cap is 0");
_cap = cap_;
}
/**
* @dev Returns the cap on the token's total supply.
*/
function cap() public view virtual returns (uint256) {
return _cap;
}
/**
* @dev See {ERC20-_mint}.
*/
function _mint(address account, uint256 amount) internal virtual override {
require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
super._mint(account, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Pausable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../security/Pausable.sol";
/**
* @dev ERC20 token with pausable token transfers, minting and burning.
*
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*/
abstract contract ERC20Pausable is ERC20, Pausable {
/**
* @dev See {ERC20-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
require(!paused(), "ERC20Pausable: token transfer while paused");
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"reward","type":"uint256"},{"internalType":"uint256","name":"initialMintAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"blockReward","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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","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":[{"internalType":"uint256","name":"postLaunchAmount","type":"uint256"}],"name":"postLaunchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"setBlockReward","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a06040523480156200001157600080fd5b506040516200354f3803806200354f83398181016040528101906200003791906200075a565b620000476200023760201b60201c565b600a62000055919062000946565b8362000062919062000997565b6040518060400160405280600a81526020017f436f74696e546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f434f54494e0000000000000000000000000000000000000000000000000000008152508160039081620000df919062000c52565b508060049081620000f1919062000c52565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000d9a565b60405180910390fd5b8060808181525050506000600560006101000a81548160ff02191690831515021790555033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001fd600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001d66200023760201b60201c565b600a620001e4919062000946565b83620001f1919062000997565b6200024060201b60201c565b6200020d6200023760201b60201c565b600a6200021b919062000946565b8262000228919062000997565b60068190555050505062001013565b60006012905090565b62000250620002d160201b60201c565b8162000266620002db60201b620006841760201c565b62000272919062000dbc565b1115620002b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ad9062000e47565b60405180910390fd5b620002cd8282620002e560201b62000aed1760201c565b5050565b6000608051905090565b6000600254905090565b620002f5620002d160201b60201c565b816200030b620002db60201b620006841760201c565b62000317919062000dbc565b11156200035b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003529062000e47565b60405180910390fd5b6200037282826200037660201b62000b571760201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003df9062000eb9565b60405180910390fd5b620003fc60008383620004e360201b60201c565b806002600082825462000410919062000dbc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004c3919062000eec565b60405180910390a3620004df600083836200061e60201b60201c565b5050565b620004f36200062360201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200055d57504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620005975750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15620005ae57620005ad6200067860201b60201c565b5b620005c68383836200068e60201b62000cad1760201c565b620005d6620006fe60201b60201c565b1562000619576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006109062000f7f565b60405180910390fd5b505050565b505050565b62000633620006fe60201b60201c565b1562000676576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066d9062000ff1565b60405180910390fd5b565b6200068c416006546200024060201b60201c565b565b620006a68383836200071560201b62000d051760201c565b620006b6620006fe60201b60201c565b15620006f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f09062000f7f565b60405180910390fd5b505050565b6000600560009054906101000a900460ff16905090565b505050565b600080fd5b6000819050919050565b62000734816200071f565b81146200074057600080fd5b50565b600081519050620007548162000729565b92915050565b6000806000606084860312156200077657620007756200071a565b5b6000620007868682870162000743565b9350506020620007998682870162000743565b9250506040620007ac8682870162000743565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000844578086048111156200081c576200081b620007b6565b5b60018516156200082c5780820291505b80810290506200083c85620007e5565b9450620007fc565b94509492505050565b6000826200085f576001905062000932565b816200086f576000905062000932565b81600181146200088857600281146200089357620008c9565b600191505062000932565b60ff841115620008a857620008a7620007b6565b5b8360020a915084821115620008c257620008c1620007b6565b5b5062000932565b5060208310610133831016604e8410600b8410161715620009035782820a905083811115620008fd57620008fc620007b6565b5b62000932565b620009128484846001620007f2565b925090508184048111156200092c576200092b620007b6565b5b81810290505b9392505050565b600060ff82169050919050565b600062000953826200071f565b9150620009608362000939565b92506200098f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200084d565b905092915050565b6000620009a4826200071f565b9150620009b1836200071f565b9250828202620009c1816200071f565b91508282048414831517620009db57620009da620007b6565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a6457607f821691505b60208210810362000a7a5762000a7962000a1c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ae47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000aa5565b62000af0868362000aa5565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b3362000b2d62000b27846200071f565b62000b08565b6200071f565b9050919050565b6000819050919050565b62000b4f8362000b12565b62000b6762000b5e8262000b3a565b84845462000ab2565b825550505050565b600090565b62000b7e62000b6f565b62000b8b81848462000b44565b505050565b5b8181101562000bb35762000ba760008262000b74565b60018101905062000b91565b5050565b601f82111562000c025762000bcc8162000a80565b62000bd78462000a95565b8101602085101562000be7578190505b62000bff62000bf68562000a95565b83018262000b90565b50505b505050565b600082821c905092915050565b600062000c276000198460080262000c07565b1980831691505092915050565b600062000c42838362000c14565b9150826002028217905092915050565b62000c5d82620009e2565b67ffffffffffffffff81111562000c795762000c78620009ed565b5b62000c85825462000a4b565b62000c9282828562000bb7565b600060209050601f83116001811462000cca576000841562000cb5578287015190505b62000cc1858262000c34565b86555062000d31565b601f19841662000cda8662000a80565b60005b8281101562000d045784890151825560018201915060208501945060208101905062000cdd565b8683101562000d24578489015162000d20601f89168262000c14565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000d8260158362000d39565b915062000d8f8262000d4a565b602082019050919050565b6000602082019050818103600083015262000db58162000d73565b9050919050565b600062000dc9826200071f565b915062000dd6836200071f565b925082820190508082111562000df15762000df0620007b6565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000e2f60198362000d39565b915062000e3c8262000df7565b602082019050919050565b6000602082019050818103600083015262000e628162000e20565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ea1601f8362000d39565b915062000eae8262000e69565b602082019050919050565b6000602082019050818103600083015262000ed48162000e92565b9050919050565b62000ee6816200071f565b82525050565b600060208201905062000f03600083018462000edb565b92915050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b600062000f67602a8362000d39565b915062000f748262000f09565b604082019050919050565b6000602082019050818103600083015262000f9a8162000f58565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000fd960108362000d39565b915062000fe68262000fa1565b602082019050919050565b600060208201905081810360008301526200100c8162000fca565b9050919050565b6080516125206200102f60003960006106f201526125206000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80633f4ba83a116100b85780638456cb591161007c5780638456cb591461032a5780638da5cb5b1461033457806395d89b4114610352578063a457c2d714610370578063a9059cbb146103a0578063dd62ed3e146103d057610137565b80633f4ba83a1461029a57806342966c68146102a45780635c975abb146102c057806370a08231146102de57806379cc67901461030e57610137565b80631a18e707116100ff5780631a18e707146101e257806323b872dd146101fe578063313ce5671461022e578063355274ea1461024c578063395093511461026a57610137565b8063028f3c551461013c57806306fdde0314610158578063095ea7b3146101765780630ac168a1146101a657806318160ddd146101c4575b600080fd5b610156600480360381019061015191906116cb565b610400565b005b6101606105c9565b60405161016d9190611788565b60405180910390f35b610190600480360381019061018b9190611808565b61065b565b60405161019d9190611863565b60405180910390f35b6101ae61067e565b6040516101bb919061188d565b60405180910390f35b6101cc610684565b6040516101d9919061188d565b60405180910390f35b6101fc60048036038101906101f791906116cb565b61068e565b005b610218600480360381019061021391906118a8565b6106b6565b6040516102259190611863565b60405180910390f35b6102366106e5565b6040516102439190611917565b60405180910390f35b6102546106ee565b604051610261919061188d565b60405180910390f35b610284600480360381019061027f9190611808565b610716565b6040516102919190611863565b60405180910390f35b6102a261074d565b005b6102be60048036038101906102b991906116cb565b6107e7565b005b6102c86107fb565b6040516102d59190611863565b60405180910390f35b6102f860048036038101906102f39190611932565b610812565b604051610305919061188d565b60405180910390f35b61032860048036038101906103239190611808565b61085a565b005b61033261087a565b005b61033c610914565b6040516103499190611980565b60405180910390f35b61035a61093a565b6040516103679190611788565b60405180910390f35b61038a60048036038101906103859190611808565b6109cc565b6040516103979190611863565b60405180910390f35b6103ba60048036038101906103b59190611808565b610a43565b6040516103c79190611863565b60405180910390f35b6103ea60048036038101906103e5919061199b565b610a66565b6040516103f7919061188d565b60405180910390f35b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048790611a4d565b60405180910390fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051790611adf565b60405180910390fd5b6105286106ee565b81610531610684565b61053b9190611b2e565b111561057c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057390611bae565b60405180910390fd5b6105c6600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166105aa6106e5565b600a6105b69190611d01565b836105c19190611d4c565b610aed565b50565b6060600380546105d890611dbd565b80601f016020809104026020016040519081016040528092919081815260200182805461060490611dbd565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600080610666610d0a565b9050610673818585610d12565b600191505092915050565b60065481565b6000600254905090565b6106966106e5565b600a6106a29190611d01565b816106ad9190611d4c565b60068190555050565b6000806106c1610d0a565b90506106ce858285610edb565b6106d9858585610f67565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610721610d0a565b90506107428185856107338589610a66565b61073d9190611b2e565b610d12565b600191505092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d490611a4d565b60405180910390fd5b6107e56111dd565b565b6107f86107f2610d0a565b82611240565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61086c82610866610d0a565b83610edb565b6108768282611240565b5050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190611a4d565b60405180910390fd5b61091261140d565b565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461094990611dbd565b80601f016020809104026020016040519081016040528092919081815260200182805461097590611dbd565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b6000806109d7610d0a565b905060006109e58286610a66565b905083811015610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190611e60565b60405180910390fd5b610a378286868403610d12565b60019250505092915050565b600080610a4e610d0a565b9050610a5b818585610f67565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610af56106ee565b81610afe610684565b610b089190611b2e565b1115610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611bae565b60405180910390fd5b610b538282610b57565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd90611ecc565b60405180910390fd5b610bd260008383611470565b8060026000828254610be49190611b2e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c95919061188d565b60405180910390a3610ca960008383611580565b5050565b610cb8838383610d05565b610cc06107fb565b15610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf790611f5e565b60405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890611ff0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790612082565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ece919061188d565b60405180910390a3505050565b6000610ee78484610a66565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f615781811015610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a906120ee565b60405180910390fd5b610f608484848403610d12565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90612180565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90612212565b60405180910390fd5b611050838383611470565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd906122a4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c4919061188d565b60405180910390a36111d7848484611580565b50505050565b6111e5611585565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611229610d0a565b60405161123691906122d3565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612360565b60405180910390fd5b6112bb82600083611470565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906123f2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113f4919061188d565b60405180910390a361140883600084611580565b505050565b6114156115ce565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611459610d0a565b60405161146691906122d3565b60405180910390a1565b6114786115ce565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156114e157504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561151a5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b1561152857611527611618565b5b611533838383610cad565b61153b6107fb565b1561157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290611f5e565b60405180910390fd5b505050565b505050565b61158d6107fb565b6115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c39061245e565b60405180910390fd5b565b6115d66107fb565b15611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d906124ca565b60405180910390fd5b565b61162441600654611626565b565b61162e6106ee565b81611637610684565b6116419190611b2e565b1115611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990611bae565b60405180910390fd5b61168c8282610aed565b5050565b600080fd5b6000819050919050565b6116a881611695565b81146116b357600080fd5b50565b6000813590506116c58161169f565b92915050565b6000602082840312156116e1576116e0611690565b5b60006116ef848285016116b6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611732578082015181840152602081019050611717565b60008484015250505050565b6000601f19601f8301169050919050565b600061175a826116f8565b6117648185611703565b9350611774818560208601611714565b61177d8161173e565b840191505092915050565b600060208201905081810360008301526117a2818461174f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117d5826117aa565b9050919050565b6117e5816117ca565b81146117f057600080fd5b50565b600081359050611802816117dc565b92915050565b6000806040838503121561181f5761181e611690565b5b600061182d858286016117f3565b925050602061183e858286016116b6565b9150509250929050565b60008115159050919050565b61185d81611848565b82525050565b60006020820190506118786000830184611854565b92915050565b61188781611695565b82525050565b60006020820190506118a2600083018461187e565b92915050565b6000806000606084860312156118c1576118c0611690565b5b60006118cf868287016117f3565b93505060206118e0868287016117f3565b92505060406118f1868287016116b6565b9150509250925092565b600060ff82169050919050565b611911816118fb565b82525050565b600060208201905061192c6000830184611908565b92915050565b60006020828403121561194857611947611690565b5b6000611956848285016117f3565b91505092915050565b600061196a826117aa565b9050919050565b61197a8161195f565b82525050565b60006020820190506119956000830184611971565b92915050565b600080604083850312156119b2576119b1611690565b5b60006119c0858286016117f3565b92505060206119d1858286016117f3565b9150509250929050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b6000611a37602583611703565b9150611a42826119db565b604082019050919050565b60006020820190508181036000830152611a6681611a2a565b9050919050565b7f43616c6c657220646f6573206e6f74206861766520746865206d696e7465722060008201527f726f6c6500000000000000000000000000000000000000000000000000000000602082015250565b6000611ac9602483611703565b9150611ad482611a6d565b604082019050919050565b60006020820190508181036000830152611af881611abc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b3982611695565b9150611b4483611695565b9250828201905080821115611b5c57611b5b611aff565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611b98601983611703565b9150611ba382611b62565b602082019050919050565b60006020820190508181036000830152611bc781611b8b565b9050919050565b60008160011c9050919050565b6000808291508390505b6001851115611c2557808604811115611c0157611c00611aff565b5b6001851615611c105780820291505b8081029050611c1e85611bce565b9450611be5565b94509492505050565b600082611c3e5760019050611cfa565b81611c4c5760009050611cfa565b8160018114611c625760028114611c6c57611c9b565b6001915050611cfa565b60ff841115611c7e57611c7d611aff565b5b8360020a915084821115611c9557611c94611aff565b5b50611cfa565b5060208310610133831016604e8410600b8410161715611cd05782820a905083811115611ccb57611cca611aff565b5b611cfa565b611cdd8484846001611bdb565b92509050818404811115611cf457611cf3611aff565b5b81810290505b9392505050565b6000611d0c82611695565b9150611d17836118fb565b9250611d447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611c2e565b905092915050565b6000611d5782611695565b9150611d6283611695565b9250828202611d7081611695565b91508282048414831517611d8757611d86611aff565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dd557607f821691505b602082108103611de857611de7611d8e565b5b50919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e4a602583611703565b9150611e5582611dee565b604082019050919050565b60006020820190508181036000830152611e7981611e3d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611eb6601f83611703565b9150611ec182611e80565b602082019050919050565b60006020820190508181036000830152611ee581611ea9565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000611f48602a83611703565b9150611f5382611eec565b604082019050919050565b60006020820190508181036000830152611f7781611f3b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fda602483611703565b9150611fe582611f7e565b604082019050919050565b6000602082019050818103600083015261200981611fcd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061206c602283611703565b915061207782612010565b604082019050919050565b6000602082019050818103600083015261209b8161205f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120d8601d83611703565b91506120e3826120a2565b602082019050919050565b60006020820190508181036000830152612107816120cb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061216a602583611703565b91506121758261210e565b604082019050919050565b600060208201905081810360008301526121998161215d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121fc602383611703565b9150612207826121a0565b604082019050919050565b6000602082019050818103600083015261222b816121ef565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061228e602683611703565b915061229982612232565b604082019050919050565b600060208201905081810360008301526122bd81612281565b9050919050565b6122cd816117ca565b82525050565b60006020820190506122e860008301846122c4565b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061234a602183611703565b9150612355826122ee565b604082019050919050565b600060208201905081810360008301526123798161233d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006123dc602283611703565b91506123e782612380565b604082019050919050565b6000602082019050818103600083015261240b816123cf565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612448601483611703565b915061245382612412565b602082019050919050565b600060208201905081810360008301526124778161243b565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006124b4601083611703565b91506124bf8261247e565b602082019050919050565b600060208201905081810360008301526124e3816124a7565b905091905056fea264697066735822122077499836a4b8f432b59d7842e7700be79263dd75edd7b3d19114f04f8c8a944b64736f6c63430008110033000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000002245cdc0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80633f4ba83a116100b85780638456cb591161007c5780638456cb591461032a5780638da5cb5b1461033457806395d89b4114610352578063a457c2d714610370578063a9059cbb146103a0578063dd62ed3e146103d057610137565b80633f4ba83a1461029a57806342966c68146102a45780635c975abb146102c057806370a08231146102de57806379cc67901461030e57610137565b80631a18e707116100ff5780631a18e707146101e257806323b872dd146101fe578063313ce5671461022e578063355274ea1461024c578063395093511461026a57610137565b8063028f3c551461013c57806306fdde0314610158578063095ea7b3146101765780630ac168a1146101a657806318160ddd146101c4575b600080fd5b610156600480360381019061015191906116cb565b610400565b005b6101606105c9565b60405161016d9190611788565b60405180910390f35b610190600480360381019061018b9190611808565b61065b565b60405161019d9190611863565b60405180910390f35b6101ae61067e565b6040516101bb919061188d565b60405180910390f35b6101cc610684565b6040516101d9919061188d565b60405180910390f35b6101fc60048036038101906101f791906116cb565b61068e565b005b610218600480360381019061021391906118a8565b6106b6565b6040516102259190611863565b60405180910390f35b6102366106e5565b6040516102439190611917565b60405180910390f35b6102546106ee565b604051610261919061188d565b60405180910390f35b610284600480360381019061027f9190611808565b610716565b6040516102919190611863565b60405180910390f35b6102a261074d565b005b6102be60048036038101906102b991906116cb565b6107e7565b005b6102c86107fb565b6040516102d59190611863565b60405180910390f35b6102f860048036038101906102f39190611932565b610812565b604051610305919061188d565b60405180910390f35b61032860048036038101906103239190611808565b61085a565b005b61033261087a565b005b61033c610914565b6040516103499190611980565b60405180910390f35b61035a61093a565b6040516103679190611788565b60405180910390f35b61038a60048036038101906103859190611808565b6109cc565b6040516103979190611863565b60405180910390f35b6103ba60048036038101906103b59190611808565b610a43565b6040516103c79190611863565b60405180910390f35b6103ea60048036038101906103e5919061199b565b610a66565b6040516103f7919061188d565b60405180910390f35b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048790611a4d565b60405180910390fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051790611adf565b60405180910390fd5b6105286106ee565b81610531610684565b61053b9190611b2e565b111561057c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057390611bae565b60405180910390fd5b6105c6600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166105aa6106e5565b600a6105b69190611d01565b836105c19190611d4c565b610aed565b50565b6060600380546105d890611dbd565b80601f016020809104026020016040519081016040528092919081815260200182805461060490611dbd565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600080610666610d0a565b9050610673818585610d12565b600191505092915050565b60065481565b6000600254905090565b6106966106e5565b600a6106a29190611d01565b816106ad9190611d4c565b60068190555050565b6000806106c1610d0a565b90506106ce858285610edb565b6106d9858585610f67565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000905090565b600080610721610d0a565b90506107428185856107338589610a66565b61073d9190611b2e565b610d12565b600191505092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d490611a4d565b60405180910390fd5b6107e56111dd565b565b6107f86107f2610d0a565b82611240565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61086c82610866610d0a565b83610edb565b6108768282611240565b5050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190611a4d565b60405180910390fd5b61091261140d565b565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461094990611dbd565b80601f016020809104026020016040519081016040528092919081815260200182805461097590611dbd565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b6000806109d7610d0a565b905060006109e58286610a66565b905083811015610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190611e60565b60405180910390fd5b610a378286868403610d12565b60019250505092915050565b600080610a4e610d0a565b9050610a5b818585610f67565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610af56106ee565b81610afe610684565b610b089190611b2e565b1115610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611bae565b60405180910390fd5b610b538282610b57565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd90611ecc565b60405180910390fd5b610bd260008383611470565b8060026000828254610be49190611b2e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c95919061188d565b60405180910390a3610ca960008383611580565b5050565b610cb8838383610d05565b610cc06107fb565b15610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf790611f5e565b60405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890611ff0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790612082565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ece919061188d565b60405180910390a3505050565b6000610ee78484610a66565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f615781811015610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a906120ee565b60405180910390fd5b610f608484848403610d12565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90612180565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90612212565b60405180910390fd5b611050838383611470565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd906122a4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c4919061188d565b60405180910390a36111d7848484611580565b50505050565b6111e5611585565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611229610d0a565b60405161123691906122d3565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612360565b60405180910390fd5b6112bb82600083611470565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906123f2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113f4919061188d565b60405180910390a361140883600084611580565b505050565b6114156115ce565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611459610d0a565b60405161146691906122d3565b60405180910390a1565b6114786115ce565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156114e157504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561151a5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b1561152857611527611618565b5b611533838383610cad565b61153b6107fb565b1561157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290611f5e565b60405180910390fd5b505050565b505050565b61158d6107fb565b6115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c39061245e565b60405180910390fd5b565b6115d66107fb565b15611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d906124ca565b60405180910390fd5b565b61162441600654611626565b565b61162e6106ee565b81611637610684565b6116419190611b2e565b1115611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990611bae565b60405180910390fd5b61168c8282610aed565b5050565b600080fd5b6000819050919050565b6116a881611695565b81146116b357600080fd5b50565b6000813590506116c58161169f565b92915050565b6000602082840312156116e1576116e0611690565b5b60006116ef848285016116b6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611732578082015181840152602081019050611717565b60008484015250505050565b6000601f19601f8301169050919050565b600061175a826116f8565b6117648185611703565b9350611774818560208601611714565b61177d8161173e565b840191505092915050565b600060208201905081810360008301526117a2818461174f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117d5826117aa565b9050919050565b6117e5816117ca565b81146117f057600080fd5b50565b600081359050611802816117dc565b92915050565b6000806040838503121561181f5761181e611690565b5b600061182d858286016117f3565b925050602061183e858286016116b6565b9150509250929050565b60008115159050919050565b61185d81611848565b82525050565b60006020820190506118786000830184611854565b92915050565b61188781611695565b82525050565b60006020820190506118a2600083018461187e565b92915050565b6000806000606084860312156118c1576118c0611690565b5b60006118cf868287016117f3565b93505060206118e0868287016117f3565b92505060406118f1868287016116b6565b9150509250925092565b600060ff82169050919050565b611911816118fb565b82525050565b600060208201905061192c6000830184611908565b92915050565b60006020828403121561194857611947611690565b5b6000611956848285016117f3565b91505092915050565b600061196a826117aa565b9050919050565b61197a8161195f565b82525050565b60006020820190506119956000830184611971565b92915050565b600080604083850312156119b2576119b1611690565b5b60006119c0858286016117f3565b92505060206119d1858286016117f3565b9150509250929050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b6000611a37602583611703565b9150611a42826119db565b604082019050919050565b60006020820190508181036000830152611a6681611a2a565b9050919050565b7f43616c6c657220646f6573206e6f74206861766520746865206d696e7465722060008201527f726f6c6500000000000000000000000000000000000000000000000000000000602082015250565b6000611ac9602483611703565b9150611ad482611a6d565b604082019050919050565b60006020820190508181036000830152611af881611abc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b3982611695565b9150611b4483611695565b9250828201905080821115611b5c57611b5b611aff565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611b98601983611703565b9150611ba382611b62565b602082019050919050565b60006020820190508181036000830152611bc781611b8b565b9050919050565b60008160011c9050919050565b6000808291508390505b6001851115611c2557808604811115611c0157611c00611aff565b5b6001851615611c105780820291505b8081029050611c1e85611bce565b9450611be5565b94509492505050565b600082611c3e5760019050611cfa565b81611c4c5760009050611cfa565b8160018114611c625760028114611c6c57611c9b565b6001915050611cfa565b60ff841115611c7e57611c7d611aff565b5b8360020a915084821115611c9557611c94611aff565b5b50611cfa565b5060208310610133831016604e8410600b8410161715611cd05782820a905083811115611ccb57611cca611aff565b5b611cfa565b611cdd8484846001611bdb565b92509050818404811115611cf457611cf3611aff565b5b81810290505b9392505050565b6000611d0c82611695565b9150611d17836118fb565b9250611d447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611c2e565b905092915050565b6000611d5782611695565b9150611d6283611695565b9250828202611d7081611695565b91508282048414831517611d8757611d86611aff565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dd557607f821691505b602082108103611de857611de7611d8e565b5b50919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e4a602583611703565b9150611e5582611dee565b604082019050919050565b60006020820190508181036000830152611e7981611e3d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611eb6601f83611703565b9150611ec182611e80565b602082019050919050565b60006020820190508181036000830152611ee581611ea9565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000611f48602a83611703565b9150611f5382611eec565b604082019050919050565b60006020820190508181036000830152611f7781611f3b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fda602483611703565b9150611fe582611f7e565b604082019050919050565b6000602082019050818103600083015261200981611fcd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061206c602283611703565b915061207782612010565b604082019050919050565b6000602082019050818103600083015261209b8161205f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120d8601d83611703565b91506120e3826120a2565b602082019050919050565b60006020820190508181036000830152612107816120cb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061216a602583611703565b91506121758261210e565b604082019050919050565b600060208201905081810360008301526121998161215d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121fc602383611703565b9150612207826121a0565b604082019050919050565b6000602082019050818103600083015261222b816121ef565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061228e602683611703565b915061229982612232565b604082019050919050565b600060208201905081810360008301526122bd81612281565b9050919050565b6122cd816117ca565b82525050565b60006020820190506122e860008301846122c4565b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061234a602183611703565b9150612355826122ee565b604082019050919050565b600060208201905081810360008301526123798161233d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006123dc602283611703565b91506123e782612380565b604082019050919050565b6000602082019050818103600083015261240b816123cf565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612448601483611703565b915061245382612412565b602082019050919050565b600060208201905081810360008301526124778161243b565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006124b4601083611703565b91506124bf8261247e565b602082019050919050565b600060208201905081810360008301526124e3816124a7565b905091905056fea264697066735822122077499836a4b8f432b59d7842e7700be79263dd75edd7b3d19114f04f8c8a944b64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000002245cdc0
-----Decoded View---------------
Arg [0] : cap (uint256): 1000000000
Arg [1] : reward (uint256): 25
Arg [2] : initialMintAmount (uint256): 575000000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [2] : 000000000000000000000000000000000000000000000000000000002245cdc0
Loading...
Loading
Loading...
Loading
Net Worth in USD
$3.17
Net Worth in ETH
0.001512
Token Allocations
COTI
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.012395 | 255.4 | $3.17 |
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.