Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 654 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23677520 | 8 days ago | IN | 0 ETH | 0.00001618 | ||||
| Approve | 23394161 | 48 days ago | IN | 0 ETH | 0.00001824 | ||||
| Approve | 23022961 | 99 days ago | IN | 0 ETH | 0.00001939 | ||||
| Approve | 23022961 | 99 days ago | IN | 0 ETH | 0.00001793 | ||||
| Approve | 22507958 | 171 days ago | IN | 0 ETH | 0.0000244 | ||||
| Approve | 21888558 | 258 days ago | IN | 0 ETH | 0.00004579 | ||||
| Approve | 21503269 | 312 days ago | IN | 0 ETH | 0.00025452 | ||||
| Approve | 20960438 | 388 days ago | IN | 0 ETH | 0.00020484 | ||||
| Approve | 20155481 | 500 days ago | IN | 0 ETH | 0.00008971 | ||||
| Approve | 20128144 | 504 days ago | IN | 0 ETH | 0.00022892 | ||||
| Approve | 20014329 | 520 days ago | IN | 0 ETH | 0.00020722 | ||||
| Approve | 19927473 | 532 days ago | IN | 0 ETH | 0.00044383 | ||||
| Staking Mint | 19927465 | 532 days ago | IN | 0 ETH | 0.00041738 | ||||
| Staking Mint | 19927455 | 532 days ago | IN | 0 ETH | 0.00042533 | ||||
| Set Staking Cont... | 19927451 | 532 days ago | IN | 0 ETH | 0.00055166 | ||||
| Approve | 19861213 | 541 days ago | IN | 0 ETH | 0.00037526 | ||||
| Approve | 19821251 | 547 days ago | IN | 0 ETH | 0.00018169 | ||||
| Approve | 19820182 | 547 days ago | IN | 0 ETH | 0.00036218 | ||||
| Approve | 19819232 | 547 days ago | IN | 0 ETH | 0.00061186 | ||||
| Approve | 19806622 | 549 days ago | IN | 0 ETH | 0.00021302 | ||||
| Approve | 19803769 | 549 days ago | IN | 0 ETH | 0.00025911 | ||||
| Approve | 19783785 | 552 days ago | IN | 0 ETH | 0.0007308 | ||||
| Transfer | 19777307 | 553 days ago | IN | 0 ETH | 0.00120445 | ||||
| Transfer | 19777244 | 553 days ago | IN | 0 ETH | 0.00117886 | ||||
| Transfer | 19777207 | 553 days ago | IN | 0 ETH | 0.0013936 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 19966625 | 526 days ago | 0 ETH | ||||
| Transfer | 19966625 | 526 days ago | 0 ETH | ||||
| Transfer | 19906501 | 535 days ago | 0.00039939 ETH | ||||
| Transfer | 19906501 | 535 days ago | 0.00039939 ETH | ||||
| Transfer | 19864055 | 541 days ago | 0.00053561 ETH | ||||
| Transfer | 19864055 | 541 days ago | 0.00053561 ETH | ||||
| Transfer | 19861215 | 541 days ago | 0.00211972 ETH | ||||
| Transfer | 19861215 | 541 days ago | 0.00211972 ETH | ||||
| Transfer | 19821254 | 547 days ago | 0.00569188 ETH | ||||
| Transfer | 19821254 | 547 days ago | 0.00569188 ETH | ||||
| Transfer | 19820185 | 547 days ago | 0.00395421 ETH | ||||
| Transfer | 19820185 | 547 days ago | 0.00395421 ETH | ||||
| Transfer | 19819233 | 547 days ago | 0.00171008 ETH | ||||
| Transfer | 19819233 | 547 days ago | 0.00171008 ETH | ||||
| Transfer | 19809145 | 548 days ago | 0.00322097 ETH | ||||
| Transfer | 19809145 | 548 days ago | 0.00322097 ETH | ||||
| Transfer | 19806627 | 549 days ago | 0.00052383 ETH | ||||
| Transfer | 19806627 | 549 days ago | 0.00052383 ETH | ||||
| Transfer | 19803773 | 549 days ago | 0.00082899 ETH | ||||
| Transfer | 19803773 | 549 days ago | 0.00082899 ETH | ||||
| Transfer | 19783787 | 552 days ago | 0.0024979 ETH | ||||
| Transfer | 19783787 | 552 days ago | 0.0024979 ETH | ||||
| Transfer | 19763721 | 555 days ago | 0.00422195 ETH | ||||
| Transfer | 19763721 | 555 days ago | 0.00422195 ETH | ||||
| Transfer | 19754526 | 556 days ago | 0.00042947 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Zk0mni
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Zk0mni is ERC20, Ownable {
uint private buyCount;
uint private scLatestBlock;
uint public constant maxWalletSize = 15000e18;
uint public constant minSellFees = 10e18;
uint public constant maxSellFees = 10000e18;
bool public tradingEnabled = false;
bool public areLimitsActive = true;
bool private scSellLimit = true;
bool private swapEnabled = true;
bool private inSwap = false;
address private pair;
address public feesRecipient;
address private immutable weth;
IUniswapV2Router02 private immutable router;
mapping(address => uint) private lastTransferSlowmode;
mapping(address => bool) public isFeesExempt;
mapping(address => bool) public isStakingContract;
constructor(
address teamWallet,
address marketingWallet,
address seedWallet
) ERC20("zk0mni", "ZK0") Ownable(msg.sender) {
// setting up pair
router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
weth = router.WETH();
address factory = router.factory();
pair = IUniswapV2Factory(factory).createPair(address(this), weth);
// remove contract and deployer address from fees
isFeesExempt[address(this)] = true;
isFeesExempt[msg.sender] = true;
isFeesExempt[teamWallet] = true;
isFeesExempt[marketingWallet] = true;
isFeesExempt[seedWallet] = true;
feesRecipient = teamWallet;
// mint initial supply
_mint(teamWallet, 40000 * 1e18); // team wallet 4%
_mint(marketingWallet, 60000 * 1e18); // marketing wallet 6%
_mint(seedWallet, 350000 * 1e18); // seed wallet 35%
_mint(msg.sender, 350000 * 1e18); // deployer for lp 35%
}
// enable trading (cannot be desactivated)
function enableTrading() external onlyOwner {
tradingEnabled = true;
}
// activate / desactivate contract automatic swapping
function setSwapEnabled(bool isSwapEnabled) external onlyOwner {
swapEnabled = isSwapEnabled;
}
// unclog contract (cannot be reactivated)
function removeScLimits() external onlyOwner {
require(scSellLimit);
scSellLimit = false;
}
// remove limits (1 transfer per block and max wallet) (cannot be reactivated)
function removeLimits() external onlyOwner {
require(areLimitsActive);
areLimitsActive = false;
}
// set staking contract
function setStakingContract(
address contractAddress,
bool isStaking
) external onlyOwner {
isStakingContract[contractAddress] = isStaking;
}
// include / exclude addresses from fees
function setFeesExempt(address user, bool feesExempt) external onlyOwner {
isFeesExempt[user] = feesExempt;
}
// set fees recipient
function setFeesRecipient(address user) external {
require(feesRecipient == msg.sender);
feesRecipient = user;
}
// allow feesRecipient to claim token fees that couldn't be sold
function claimLostTokens() external {
require(feesRecipient == msg.sender);
transfer(feesRecipient, balanceOf(address(this)));
}
// manually sell a percentage of contract balance in fees
function sellContractFees(uint percentage) external {
require(feesRecipient == msg.sender);
_swapBack((balanceOf(address(this)) * percentage) / 100);
}
// allow staking contract to burn users tokens
function stakingBurn(address user, uint amount) external {
require(isStakingContract[msg.sender], "Not allowed.");
_update(user, address(0), amount);
}
// allow staking contract to mint tokens to users
function stakingMint(address user, uint amount) external {
require(isStakingContract[msg.sender], "Not allowed.");
_update(address(0), user, amount);
}
// return fees (25/25 first 100 buys then 5/5)
function fees(uint amount) public view returns (uint) {
return ((buyCount <= 100 ? 25 : 5) * amount) / 100;
}
// swap tokens in the contract for eth
function _swapBack(uint amountToSwap) private {
inSwap = true;
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = weth;
_approve(address(this), address(router), amountToSwap, false);
router.swapExactTokensForETHSupportingFeeOnTransferTokens(
amountToSwap,
0,
path,
address(this),
block.timestamp
);
_forwardFees();
scLatestBlock = block.number;
inSwap = false;
}
// override main transfer function
function _update(
address from,
address to,
uint256 amount
) internal override {
// ignore all straightforward cases
if (amount == 0) return;
if (
inSwap ||
isStakingContract[msg.sender] ||
isFeesExempt[from] ||
isFeesExempt[to]
) {
super._update(from, to, amount);
return;
}
require(tradingEnabled, "Trading not active."); // require trading enabled (address is not exempt of trading enable otherwise it would have returned)
// if we should check limits and it's not a sell, check for transfer slow mode
if (areLimitsActive && to != pair) _checkSlowmode();
// increase buy count and check max wallet limit
if (from == pair && !isFeesExempt[to]) {
buyCount++;
require(
!areLimitsActive || balanceOf(to) + amount <= maxWalletSize,
"Max wallet amount exceeded."
);
}
uint tokenFees = fees(amount);
if (tokenFees > 0 && (from == pair || to == pair))
super._update(from, address(this), tokenFees);
{
(bool shouldSwap, uint amountToSwap) = _shouldSwap(from);
if (shouldSwap) _swapBack(amountToSwap);
}
return super._update(from, to, amount - tokenFees);
}
// prevent more than 1 transfer / buy per block when limits are active
function _checkSlowmode() private {
require(
lastTransferSlowmode[tx.origin] < block.number,
"Too many transfers."
);
lastTransferSlowmode[tx.origin] = block.number;
}
// return if the contract should swap and how much
function _shouldSwap(address from) private view returns (bool, uint) {
if (
(swapEnabled &&
from != pair &&
balanceOf(address(this)) >= minSellFees &&
buyCount >= 40) == false
) return (false, 0);
if (!scSellLimit) return (true, balanceOf(address(this)));
if (scLatestBlock < block.number)
return (true, _min(maxSellFees, balanceOf(address(this))));
return (false, 0);
}
// forward fees to fees recipient
function _forwardFees() private {
(bool result, ) = payable(feesRecipient).call{
value: address(this).balance
}("");
require(result);
}
function _min(uint a, uint b) private pure returns (uint) {
return (a > b) ? b : a;
}
receive() external payable {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @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.
*
* The initial owner is set to the address provided by the deployer. 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 is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @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 {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @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 {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_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
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of 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.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256))
private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* 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 returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(
address owner,
address spender
) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(
address spender,
uint256 value
) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @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 `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(
address from,
address to,
uint256 value
) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(
address owner,
address spender,
uint256 value,
bool emitEvent
) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 value
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(
spender,
currentAllowance,
value
);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}pragma solidity >=0.6.2;
import './IUniswapV2Router01.sol';
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "paris",
"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":"address","name":"teamWallet","type":"address"},{"internalType":"address","name":"marketingWallet","type":"address"},{"internalType":"address","name":"seedWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"areLimitsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimLostTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"fees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeesExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isStakingContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeScLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"sellContractFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"feesExempt","type":"bool"}],"name":"setFeesExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"setFeesRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"bool","name":"isStaking","type":"bool"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isSwapEnabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakingBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakingMint","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526008805464ffffffffff191663010101001790553480156200002557600080fd5b50604051620025b1380380620025b1833981016040819052620000489162000c60565b33604051806040016040528060068152602001657a6b306d6e6960d01b8152506040518060400160405280600381526020016205a4b360ec1b815250816003908162000095919062000d4e565b506004620000a4828262000d4e565b5050506001600160a01b038116620000d757604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000e2816200035a565b50737a250d5630b4cf539739df2c5dacb4c659f2488d60a0819052604080516315ab88c960e31b8152905163ad5c4648916004808201926020929091908290030181865afa15801562000139573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015f919062000e1a565b6001600160a01b03166080816001600160a01b031681525050600060a0516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e1919062000e1a565b6080516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291925082169063c9c65396906044016020604051808303816000875af115801562000236573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025c919062000e1a565b60088054600160281b600160c81b031916650100000000006001600160a01b0393841602179055306000908152600b6020526040808220805460ff199081166001908117909255338452828420805482168317905588851680855283852080548316841790558886168552838520805483168417905594871684529190922080549091169091179055600980546001600160a01b03191690911790556200030e84690878678326eac9000000620003ac565b6200032483690cb49b44ba602d800000620003ac565b6200033a82694a1d89bb94865ec00000620003ac565b6200035033694a1d89bb94865ec00000620003ac565b5050505062000f5c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003d85760405163ec442f0560e01b815260006004820152602401620000ce565b620003e660008383620003ea565b5050565b80600003620003f857505050565b600854640100000000900460ff1680620004215750336000908152600c602052604090205460ff165b806200044557506001600160a01b0383166000908152600b602052604090205460ff165b806200046957506001600160a01b0382166000908152600b602052604090205460ff165b1562000481576200047c838383620006bc565b505050565b60085460ff16620004d55760405162461bcd60e51b815260206004820152601360248201527f54726164696e67206e6f74206163746976652e000000000000000000000000006044820152606401620000ce565b600854610100900460ff1680156200050457506008546001600160a01b03838116650100000000009092041614155b15620005145762000514620007ef565b6008546001600160a01b0384811665010000000000909204161480156200055457506001600160a01b0382166000908152600b602052604090205460ff16155b156200060d57600680549060006200056c8362000e4e565b9091555050600854610100900460ff161580620005bf575069032d26d12e980b60000081620005b0846001600160a01b031660009081526020819052604090205490565b620005bc919062000e6a565b11155b6200060d5760405162461bcd60e51b815260206004820152601b60248201527f4d61782077616c6c657420616d6f756e742065786365656465642e00000000006044820152606401620000ce565b60006200061a8262000863565b90506000811180156200066457506008546001600160a01b03858116650100000000009092041614806200066457506008546001600160a01b038481166501000000000090920416145b15620006775762000677843083620006bc565b6000806200068586620008a0565b9150915081156200069b576200069b816200099a565b50620006b690508484620006b0848662000e80565b620006bc565b50505050565b6001600160a01b038316620006eb578060026000828254620006df919062000e6a565b909155506200075f9050565b6001600160a01b03831660009081526020819052604090205481811015620007405760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000ce565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166200077d576002805482900390556200079c565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007e291815260200190565b60405180910390a3505050565b326000908152600a602052604090205443116200084f5760405162461bcd60e51b815260206004820152601360248201527f546f6f206d616e79207472616e73666572732e000000000000000000000000006044820152606401620000ce565b326000908152600a60205260409020439055565b6000606482606460065411156200087c5760056200087f565b60195b60ff166200088e919062000e96565b6200089a919062000eb0565b92915050565b60085460009081906301000000900460ff168015620008d657506008546001600160a01b03848116650100000000009092041614155b8015620008fa575030600090815260208190526040902054678ac7230489e8000011155b80156200090a5750602860065410155b15156000036200091f57506000928392509050565b60085462010000900460ff166200094d57306000908152602081905260409020546001905b91509150915091565b4360075410156200098f5760016200094469021e19e0c9bab240000062000989306001600160a01b031660009081526020819052604090205490565b62000ae8565b506000928392509050565b6008805460ff60201b19166401000000001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110620009e657620009e662000ed3565b60200260200101906001600160a01b031690816001600160a01b0316815250506080518160018151811062000a1f5762000a1f62000ed3565b60200260200101906001600160a01b031690816001600160a01b03168152505062000a563060a05184600062000b0260201b60201c565b60a0516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b815260040162000a8f95949392919062000ee9565b600060405180830381600087803b15801562000aaa57600080fd5b505af115801562000abf573d6000803e3d6000fd5b5050505062000ad362000bdd60201b60201c565b5050436007556008805460ff60201b19169055565b600081831162000af9578262000afb565b815b9392505050565b6001600160a01b03841662000b2e5760405163e602df0560e01b815260006004820152602401620000ce565b6001600160a01b03831662000b5a57604051634a1406b160e11b815260006004820152602401620000ce565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015620006b657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000bcf91815260200190565b60405180910390a350505050565b6009546040516000916001600160a01b03169047908381818185875af1925050503d806000811462000c2c576040519150601f19603f3d011682016040523d82523d6000602084013e62000c31565b606091505b505090508062000c4057600080fd5b50565b80516001600160a01b038116811462000c5b57600080fd5b919050565b60008060006060848603121562000c7657600080fd5b62000c818462000c43565b925062000c916020850162000c43565b915062000ca16040850162000c43565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000cd557607f821691505b60208210810362000cf657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200047c57600081815260208120601f850160051c8101602086101562000d255750805b601f850160051c820191505b8181101562000d465782815560010162000d31565b505050505050565b81516001600160401b0381111562000d6a5762000d6a62000caa565b62000d828162000d7b845462000cc0565b8462000cfc565b602080601f83116001811462000dba576000841562000da15750858301515b600019600386901b1c1916600185901b17855562000d46565b600085815260208120601f198616915b8281101562000deb5788860151825594840194600190910190840162000dca565b508582101562000e0a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000e2d57600080fd5b62000afb8262000c43565b634e487b7160e01b600052601160045260246000fd5b60006001820162000e635762000e6362000e38565b5060010190565b808201808211156200089a576200089a62000e38565b818103818111156200089a576200089a62000e38565b80820281158282048414176200089a576200089a62000e38565b60008262000ece57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101562000f3b5784516001600160a01b03168352938301939183019160010162000f14565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a05161162862000f8960003960008181610abd0152610afb01526000610a6501526116286000f3fe6080604052600436106101e75760003560e01c8063751039fc11610102578063b437610711610095578063dd62ed3e11610064578063dd62ed3e1461056c578063df3bdc8f146105b2578063e01af92c146105d2578063f2fde38b146105f257600080fd5b8063b4376107146104eb578063b9d9005f1461050b578063c40d24b214610527578063d492030b1461055757600080fd5b80638f3fa860116100d15780638f3fa8601461047a57806395d89b41146104985780639891bd86146104ad578063a9059cbb146104cb57600080fd5b8063751039fc1461041257806384b7719a146104275780638a8c523c146104475780638da5cb5b1461045c57600080fd5b8063313ce5671161017a5780635db4cce4116101495780635db4cce414610385578063702acfa8146103a557806370a08231146103dd578063715018a6146103fd57600080fd5b8063313ce5671461030f5780634acc79ed1461032b5780634ada218b1461034b5780635aa9b9cb1461036557600080fd5b80630b44190e116101b65780630b44190e1461029c57806318160ddd146102bb57806323b872dd146102da57806327b84412146102fa57600080fd5b806306df2719146101f357806306fdde0314610238578063090a4ab81461025a578063095ea7b31461027c57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061022361020e366004611333565b600c6020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561024457600080fd5b5061024d610612565b60405161022f919061134e565b34801561026657600080fd5b5061027a61027536600461139c565b6106a4565b005b34801561028857600080fd5b506102236102973660046113b5565b6106e6565b3480156102a857600080fd5b5060085461022390610100900460ff1681565b3480156102c757600080fd5b506002545b60405190815260200161022f565b3480156102e657600080fd5b506102236102f53660046113df565b610700565b34801561030657600080fd5b5061027a610724565b34801561031b57600080fd5b506040516012815260200161022f565b34801561033757600080fd5b506102cc61034636600461139c565b61074f565b34801561035757600080fd5b506008546102239060ff1681565b34801561037157600080fd5b5061027a6103803660046113b5565b610780565b34801561039157600080fd5b5061027a6103a03660046113b5565b6107e3565b3480156103b157600080fd5b506009546103c5906001600160a01b031681565b6040516001600160a01b03909116815260200161022f565b3480156103e957600080fd5b506102cc6103f8366004611333565b61083d565b34801561040957600080fd5b5061027a610858565b34801561041e57600080fd5b5061027a61086c565b34801561043357600080fd5b5061027a610442366004611333565b610895565b34801561045357600080fd5b5061027a6108ce565b34801561046857600080fd5b506005546001600160a01b03166103c5565b34801561048657600080fd5b506102cc69032d26d12e980b60000081565b3480156104a457600080fd5b5061024d6108e5565b3480156104b957600080fd5b506102cc69021e19e0c9bab240000081565b3480156104d757600080fd5b506102236104e63660046113b5565b6108f4565b3480156104f757600080fd5b5061027a61050636600461142b565b610902565b34801561051757600080fd5b506102cc678ac7230489e8000081565b34801561053357600080fd5b50610223610542366004611333565b600b6020526000908152604090205460ff1681565b34801561056357600080fd5b5061027a610935565b34801561057857600080fd5b506102cc61058736600461145e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105be57600080fd5b5061027a6105cd36600461142b565b610965565b3480156105de57600080fd5b5061027a6105ed366004611488565b610998565b3480156105fe57600080fd5b5061027a61060d366004611333565b6109be565b606060038054610621906114a3565b80601f016020809104026020016040519081016040528092919081815260200182805461064d906114a3565b801561069a5780601f1061066f5761010080835404028352916020019161069a565b820191906000526020600020905b81548152906001019060200180831161067d57829003601f168201915b5050505050905090565b6009546001600160a01b031633146106bb57600080fd5b6106e36064826106ca3061083d565b6106d491906114f3565b6106de919061150a565b6109f9565b50565b6000336106f4818585610b89565b60019150505b92915050565b60003361070e858285610b9b565b610719858585610c19565b506001949350505050565b61072c610c78565b60085462010000900460ff1661074157600080fd5b6008805462ff000019169055565b600060648260646006541115610766576005610769565b60195b60ff1661077691906114f3565b6106fa919061150a565b336000908152600c602052604090205460ff166107d35760405162461bcd60e51b815260206004820152600c60248201526b2737ba1030b63637bbb2b21760a11b60448201526064015b60405180910390fd5b6107df82600083610ca5565b5050565b336000908152600c602052604090205460ff166108315760405162461bcd60e51b815260206004820152600c60248201526b2737ba1030b63637bbb2b21760a11b60448201526064016107ca565b6107df60008383610ca5565b6001600160a01b031660009081526020819052604090205490565b610860610c78565b61086a6000610f1d565b565b610874610c78565b600854610100900460ff1661088857600080fd5b6008805461ff0019169055565b6009546001600160a01b031633146108ac57600080fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6108d6610c78565b6008805460ff19166001179055565b606060048054610621906114a3565b6000336106f4818585610c19565b61090a610c78565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6009546001600160a01b0316331461094c57600080fd5b6009546106e3906001600160a01b03166104e63061083d565b61096d610c78565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6109a0610c78565b6008805491151563010000000263ff00000019909216919091179055565b6109c6610c78565b6001600160a01b0381166109f057604051631e4fbdf760e01b8152600060048201526024016107ca565b6106e381610f1d565b6008805464ff0000000019166401000000001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610a4357610a4361152c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610a9757610a9761152c565b60200260200101906001600160a01b031690816001600160a01b031681525050610ae4307f0000000000000000000000000000000000000000000000000000000000000000846000610f6f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790610b39908590600090869030904290600401611542565b600060405180830381600087803b158015610b5357600080fd5b505af1158015610b67573d6000803e3d6000fd5b50505050610b73611044565b5050436007556008805464ff0000000019169055565b610b968383836001610f6f565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610c135781811015610c0457604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016107ca565b610c1384848484036000610f6f565b50505050565b6001600160a01b038316610c4357604051634b637e8f60e11b8152600060048201526024016107ca565b6001600160a01b038216610c6d5760405163ec442f0560e01b8152600060048201526024016107ca565b610b96838383610ca5565b6005546001600160a01b0316331461086a5760405163118cdaa760e01b81523360048201526024016107ca565b80600003610cb257505050565b600854640100000000900460ff1680610cda5750336000908152600c602052604090205460ff165b80610cfd57506001600160a01b0383166000908152600b602052604090205460ff165b80610d2057506001600160a01b0382166000908152600b602052604090205460ff165b15610d3057610b968383836110a4565b60085460ff16610d785760405162461bcd60e51b81526020600482015260136024820152722a3930b234b733903737ba1030b1ba34bb329760691b60448201526064016107ca565b600854610100900460ff168015610da457506008546001600160a01b03838116600160281b9092041614155b15610db157610db16111ce565b6008546001600160a01b03848116600160281b90920416148015610dee57506001600160a01b0382166000908152600b602052604090205460ff16155b15610e885760068054906000610e03836115b3565b9091555050600854610100900460ff161580610e3c575069032d26d12e980b60000081610e2f8461083d565b610e3991906115cc565b11155b610e885760405162461bcd60e51b815260206004820152601b60248201527f4d61782077616c6c657420616d6f756e742065786365656465642e000000000060448201526064016107ca565b6000610e938261074f565b9050600081118015610ed757506008546001600160a01b03858116600160281b909204161480610ed757506008546001600160a01b03848116600160281b90920416145b15610ee757610ee78430836110a4565b600080610ef386611236565b915091508115610f0657610f06816109f9565b50610c1390508484610f1884866115df565b6110a4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610f995760405163e602df0560e01b8152600060048201526024016107ca565b6001600160a01b038316610fc357604051634a1406b160e11b8152600060048201526024016107ca565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610c1357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161103691815260200190565b60405180910390a350505050565b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611091576040519150601f19603f3d011682016040523d82523d6000602084013e611096565b606091505b50509050806106e357600080fd5b6001600160a01b0383166110cf5780600260008282546110c491906115cc565b909155506111419050565b6001600160a01b038316600090815260208190526040902054818110156111225760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016107ca565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661115d5760028054829003905561117c565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111c191815260200190565b60405180910390a3505050565b326000908152600a602052604090205443116112225760405162461bcd60e51b81526020600482015260136024820152722a37b79036b0b73c903a3930b739b332b9399760691b60448201526064016107ca565b326000908152600a60205260409020439055565b60085460009081906301000000900460ff16801561126957506008546001600160a01b03848116600160281b9092041614155b80156112855750678ac7230489e800006112823061083d565b10155b80156112945750602860065410155b15156000036112a857506000928392509050565b60085462010000900460ff166112cc5760016112c33061083d565b91509150915091565b4360075410156112f45760016112c369021e19e0c9bab24000006112ef3061083d565b6112ff565b506000928392509050565b600081831161130e5782611310565b815b9392505050565b80356001600160a01b038116811461132e57600080fd5b919050565b60006020828403121561134557600080fd5b61131082611317565b600060208083528351808285015260005b8181101561137b5785810183015185820160400152820161135f565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156113ae57600080fd5b5035919050565b600080604083850312156113c857600080fd5b6113d183611317565b946020939093013593505050565b6000806000606084860312156113f457600080fd5b6113fd84611317565b925061140b60208501611317565b9150604084013590509250925092565b8035801515811461132e57600080fd5b6000806040838503121561143e57600080fd5b61144783611317565b91506114556020840161141b565b90509250929050565b6000806040838503121561147157600080fd5b61147a83611317565b915061145560208401611317565b60006020828403121561149a57600080fd5b6113108261141b565b600181811c908216806114b757607f821691505b6020821081036114d757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106fa576106fa6114dd565b60008261152757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115925784516001600160a01b03168352938301939183019160010161156d565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016115c5576115c56114dd565b5060010190565b808201808211156106fa576106fa6114dd565b818103818111156106fa576106fa6114dd56fea26469706673582212200ca13b8ae093eacd50cc9e73acde83f8d6c309d52645afad2015d88a833eb25464736f6c634300081400330000000000000000000000001a54045dffe141b89b72b9e9b3f5199e7638defb0000000000000000000000006e5f1383503469d531b74cfbd560a6943e3394bb00000000000000000000000056ffb7cbd183f8108fc563e824be6dd588fb47cb
Deployed Bytecode
0x6080604052600436106101e75760003560e01c8063751039fc11610102578063b437610711610095578063dd62ed3e11610064578063dd62ed3e1461056c578063df3bdc8f146105b2578063e01af92c146105d2578063f2fde38b146105f257600080fd5b8063b4376107146104eb578063b9d9005f1461050b578063c40d24b214610527578063d492030b1461055757600080fd5b80638f3fa860116100d15780638f3fa8601461047a57806395d89b41146104985780639891bd86146104ad578063a9059cbb146104cb57600080fd5b8063751039fc1461041257806384b7719a146104275780638a8c523c146104475780638da5cb5b1461045c57600080fd5b8063313ce5671161017a5780635db4cce4116101495780635db4cce414610385578063702acfa8146103a557806370a08231146103dd578063715018a6146103fd57600080fd5b8063313ce5671461030f5780634acc79ed1461032b5780634ada218b1461034b5780635aa9b9cb1461036557600080fd5b80630b44190e116101b65780630b44190e1461029c57806318160ddd146102bb57806323b872dd146102da57806327b84412146102fa57600080fd5b806306df2719146101f357806306fdde0314610238578063090a4ab81461025a578063095ea7b31461027c57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061022361020e366004611333565b600c6020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561024457600080fd5b5061024d610612565b60405161022f919061134e565b34801561026657600080fd5b5061027a61027536600461139c565b6106a4565b005b34801561028857600080fd5b506102236102973660046113b5565b6106e6565b3480156102a857600080fd5b5060085461022390610100900460ff1681565b3480156102c757600080fd5b506002545b60405190815260200161022f565b3480156102e657600080fd5b506102236102f53660046113df565b610700565b34801561030657600080fd5b5061027a610724565b34801561031b57600080fd5b506040516012815260200161022f565b34801561033757600080fd5b506102cc61034636600461139c565b61074f565b34801561035757600080fd5b506008546102239060ff1681565b34801561037157600080fd5b5061027a6103803660046113b5565b610780565b34801561039157600080fd5b5061027a6103a03660046113b5565b6107e3565b3480156103b157600080fd5b506009546103c5906001600160a01b031681565b6040516001600160a01b03909116815260200161022f565b3480156103e957600080fd5b506102cc6103f8366004611333565b61083d565b34801561040957600080fd5b5061027a610858565b34801561041e57600080fd5b5061027a61086c565b34801561043357600080fd5b5061027a610442366004611333565b610895565b34801561045357600080fd5b5061027a6108ce565b34801561046857600080fd5b506005546001600160a01b03166103c5565b34801561048657600080fd5b506102cc69032d26d12e980b60000081565b3480156104a457600080fd5b5061024d6108e5565b3480156104b957600080fd5b506102cc69021e19e0c9bab240000081565b3480156104d757600080fd5b506102236104e63660046113b5565b6108f4565b3480156104f757600080fd5b5061027a61050636600461142b565b610902565b34801561051757600080fd5b506102cc678ac7230489e8000081565b34801561053357600080fd5b50610223610542366004611333565b600b6020526000908152604090205460ff1681565b34801561056357600080fd5b5061027a610935565b34801561057857600080fd5b506102cc61058736600461145e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105be57600080fd5b5061027a6105cd36600461142b565b610965565b3480156105de57600080fd5b5061027a6105ed366004611488565b610998565b3480156105fe57600080fd5b5061027a61060d366004611333565b6109be565b606060038054610621906114a3565b80601f016020809104026020016040519081016040528092919081815260200182805461064d906114a3565b801561069a5780601f1061066f5761010080835404028352916020019161069a565b820191906000526020600020905b81548152906001019060200180831161067d57829003601f168201915b5050505050905090565b6009546001600160a01b031633146106bb57600080fd5b6106e36064826106ca3061083d565b6106d491906114f3565b6106de919061150a565b6109f9565b50565b6000336106f4818585610b89565b60019150505b92915050565b60003361070e858285610b9b565b610719858585610c19565b506001949350505050565b61072c610c78565b60085462010000900460ff1661074157600080fd5b6008805462ff000019169055565b600060648260646006541115610766576005610769565b60195b60ff1661077691906114f3565b6106fa919061150a565b336000908152600c602052604090205460ff166107d35760405162461bcd60e51b815260206004820152600c60248201526b2737ba1030b63637bbb2b21760a11b60448201526064015b60405180910390fd5b6107df82600083610ca5565b5050565b336000908152600c602052604090205460ff166108315760405162461bcd60e51b815260206004820152600c60248201526b2737ba1030b63637bbb2b21760a11b60448201526064016107ca565b6107df60008383610ca5565b6001600160a01b031660009081526020819052604090205490565b610860610c78565b61086a6000610f1d565b565b610874610c78565b600854610100900460ff1661088857600080fd5b6008805461ff0019169055565b6009546001600160a01b031633146108ac57600080fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6108d6610c78565b6008805460ff19166001179055565b606060048054610621906114a3565b6000336106f4818585610c19565b61090a610c78565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6009546001600160a01b0316331461094c57600080fd5b6009546106e3906001600160a01b03166104e63061083d565b61096d610c78565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6109a0610c78565b6008805491151563010000000263ff00000019909216919091179055565b6109c6610c78565b6001600160a01b0381166109f057604051631e4fbdf760e01b8152600060048201526024016107ca565b6106e381610f1d565b6008805464ff0000000019166401000000001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610a4357610a4361152c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610a9757610a9761152c565b60200260200101906001600160a01b031690816001600160a01b031681525050610ae4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846000610f6f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790610b39908590600090869030904290600401611542565b600060405180830381600087803b158015610b5357600080fd5b505af1158015610b67573d6000803e3d6000fd5b50505050610b73611044565b5050436007556008805464ff0000000019169055565b610b968383836001610f6f565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610c135781811015610c0457604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016107ca565b610c1384848484036000610f6f565b50505050565b6001600160a01b038316610c4357604051634b637e8f60e11b8152600060048201526024016107ca565b6001600160a01b038216610c6d5760405163ec442f0560e01b8152600060048201526024016107ca565b610b96838383610ca5565b6005546001600160a01b0316331461086a5760405163118cdaa760e01b81523360048201526024016107ca565b80600003610cb257505050565b600854640100000000900460ff1680610cda5750336000908152600c602052604090205460ff165b80610cfd57506001600160a01b0383166000908152600b602052604090205460ff165b80610d2057506001600160a01b0382166000908152600b602052604090205460ff165b15610d3057610b968383836110a4565b60085460ff16610d785760405162461bcd60e51b81526020600482015260136024820152722a3930b234b733903737ba1030b1ba34bb329760691b60448201526064016107ca565b600854610100900460ff168015610da457506008546001600160a01b03838116600160281b9092041614155b15610db157610db16111ce565b6008546001600160a01b03848116600160281b90920416148015610dee57506001600160a01b0382166000908152600b602052604090205460ff16155b15610e885760068054906000610e03836115b3565b9091555050600854610100900460ff161580610e3c575069032d26d12e980b60000081610e2f8461083d565b610e3991906115cc565b11155b610e885760405162461bcd60e51b815260206004820152601b60248201527f4d61782077616c6c657420616d6f756e742065786365656465642e000000000060448201526064016107ca565b6000610e938261074f565b9050600081118015610ed757506008546001600160a01b03858116600160281b909204161480610ed757506008546001600160a01b03848116600160281b90920416145b15610ee757610ee78430836110a4565b600080610ef386611236565b915091508115610f0657610f06816109f9565b50610c1390508484610f1884866115df565b6110a4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610f995760405163e602df0560e01b8152600060048201526024016107ca565b6001600160a01b038316610fc357604051634a1406b160e11b8152600060048201526024016107ca565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610c1357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161103691815260200190565b60405180910390a350505050565b6009546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611091576040519150601f19603f3d011682016040523d82523d6000602084013e611096565b606091505b50509050806106e357600080fd5b6001600160a01b0383166110cf5780600260008282546110c491906115cc565b909155506111419050565b6001600160a01b038316600090815260208190526040902054818110156111225760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016107ca565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661115d5760028054829003905561117c565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111c191815260200190565b60405180910390a3505050565b326000908152600a602052604090205443116112225760405162461bcd60e51b81526020600482015260136024820152722a37b79036b0b73c903a3930b739b332b9399760691b60448201526064016107ca565b326000908152600a60205260409020439055565b60085460009081906301000000900460ff16801561126957506008546001600160a01b03848116600160281b9092041614155b80156112855750678ac7230489e800006112823061083d565b10155b80156112945750602860065410155b15156000036112a857506000928392509050565b60085462010000900460ff166112cc5760016112c33061083d565b91509150915091565b4360075410156112f45760016112c369021e19e0c9bab24000006112ef3061083d565b6112ff565b506000928392509050565b600081831161130e5782611310565b815b9392505050565b80356001600160a01b038116811461132e57600080fd5b919050565b60006020828403121561134557600080fd5b61131082611317565b600060208083528351808285015260005b8181101561137b5785810183015185820160400152820161135f565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156113ae57600080fd5b5035919050565b600080604083850312156113c857600080fd5b6113d183611317565b946020939093013593505050565b6000806000606084860312156113f457600080fd5b6113fd84611317565b925061140b60208501611317565b9150604084013590509250925092565b8035801515811461132e57600080fd5b6000806040838503121561143e57600080fd5b61144783611317565b91506114556020840161141b565b90509250929050565b6000806040838503121561147157600080fd5b61147a83611317565b915061145560208401611317565b60006020828403121561149a57600080fd5b6113108261141b565b600181811c908216806114b757607f821691505b6020821081036114d757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106fa576106fa6114dd565b60008261152757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115925784516001600160a01b03168352938301939183019160010161156d565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016115c5576115c56114dd565b5060010190565b808201808211156106fa576106fa6114dd565b818103818111156106fa576106fa6114dd56fea26469706673582212200ca13b8ae093eacd50cc9e73acde83f8d6c309d52645afad2015d88a833eb25464736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001a54045dffe141b89b72b9e9b3f5199e7638defb0000000000000000000000006e5f1383503469d531b74cfbd560a6943e3394bb00000000000000000000000056ffb7cbd183f8108fc563e824be6dd588fb47cb
-----Decoded View---------------
Arg [0] : teamWallet (address): 0x1A54045dFfE141b89B72B9e9B3f5199E7638defB
Arg [1] : marketingWallet (address): 0x6E5f1383503469d531B74cFbd560A6943E3394BB
Arg [2] : seedWallet (address): 0x56fFB7cbD183F8108fc563e824be6Dd588fB47Cb
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000001a54045dffe141b89b72b9e9b3f5199e7638defb
Arg [1] : 0000000000000000000000006e5f1383503469d531b74cfbd560a6943e3394bb
Arg [2] : 00000000000000000000000056ffb7cbd183f8108fc563e824be6dd588fb47cb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.