ERC-20
Overview
Max Total Supply
1,000,000,000 YUKI
Holders
40
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Yuki_Rises
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
No with 200 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-16 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) /* Yūki: The fearless cat destined to reign as the Crypto Queen! Website: https://yukirises.io/ Telegram: https://t.me/YukiRiseschat Twitter: https://x.com/YukiRises I Will See You On The Moon! */ pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @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); } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // 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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of 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); } } } } // File: IUniRouter.sol pragma solidity ^0.8.24; interface IUniRouter { 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 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; } interface IUniFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } pragma solidity ^0.8.24; /* Yūki: The fearless cat destined to reign as the Crypto Queen! Website: https://yukirises.io/ Telegram: https://t.me/YukiRiseschat Twitter: https://x.com/YukiRises See you on the Moon! */ contract Yuki_Rises is ERC20, Ownable { IUniRouter public uniRouter; address public uniPair; address public antibotWallet; address public operator; mapping(address => bool) public freelos; mapping(address => bool) public liberatos; uint256 public sellPercent = 0; uint256 public buyPercent = 0; uint256 public maxTx; uint256 public maxWallet; bool public openTrading = false; // Errors error UnauthorizedCaller(); error TradingNotOpen(); error LimitExceeded(); constructor( string memory _name, string memory _symbol, uint256 _totalSupply, address _router ) ERC20(_name, _symbol) Ownable(msg.sender) { uniRouter = IUniRouter(_router); uniPair = IUniFactory(uniRouter.factory()).createPair( address(this), uniRouter.WETH() ); antibotWallet = 0x0f9F28d092fe2dAE42F2bd01164f0584268dE541; operator = msg.sender; freelos[msg.sender] = true; freelos[address(this)] = true; freelos[antibotWallet] = true; freelos[0x7C1543d230c40d65fD06304246a34f13163C066C] = true; liberatos[msg.sender] = true; liberatos[uniPair] = true; liberatos[antibotWallet] = true; liberatos[address(this)] = true; liberatos[address(0)] = true; maxTx = _totalSupply / 10; maxWallet = _totalSupply / 10; _mint(msg.sender, _totalSupply); } modifier onlyOwnerOrOperator() { if (msg.sender != owner() && msg.sender != operator) { revert UnauthorizedCaller(); } _; } function setWallets( address _antibotWallet, address _operator ) external onlyOwner { antibotWallet = _antibotWallet; operator = _operator; } function setConfig( uint256 _sellPercent, uint256 _buyPercent ) external onlyOwnerOrOperator { sellPercent = _sellPercent; buyPercent = _buyPercent; } function setLimits(uint256 _maxTx, uint256 _maxWallet) external onlyOwner { maxTx = _maxTx; maxWallet = _maxWallet; } function removeLimits() external onlyOwner { maxTx = type(uint256).max; maxWallet = type(uint256).max; } function clearStuckToken(address _token) external returns (bool) { uint256 _amount = IERC20(_token).balanceOf(address(this)); return IERC20(_token).transfer(antibotWallet, _amount); } function startTrading() external onlyOwnerOrOperator { openTrading = true; } function editFreelos( address[] calldata _freelos, bool _status ) external onlyOwner { for (uint256 i = 0; i < _freelos.length; i++) { freelos[_freelos[i]] = _status; } } function editLiberatos( address[] calldata _liberatos, bool _status ) external onlyOwner { for (uint256 i = 0; i < _liberatos.length; i++) { liberatos[_liberatos[i]] = _status; } } function _update( address from, address to, uint256 value ) internal override { if (!openTrading && from != owner() && to != owner() && from != operator && to != operator) { revert TradingNotOpen(); } if ( from != owner() && to != uniPair && to != address(this) && to != antibotWallet && !liberatos[to] ) { uint256 heldTokens = balanceOf(to); if ((heldTokens + value) > maxWallet) { revert LimitExceeded(); } } if (value > maxTx && !liberatos[from]) { revert LimitExceeded(); } if ( !freelos[from] && !freelos[to] && (from == uniPair || to == uniPair) ) { uint256 antibotAmt = from == uniPair ? ((value * buyPercent) / 100) : ((value * sellPercent) / 100); if(antibotAmt != 0) { super._update(from, antibotWallet, antibotAmt); } super._update(from, to, value - antibotAmt); } else { super._update(from, to, value); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_router","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":[],"name":"LimitExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TradingNotOpen","type":"error"},{"inputs":[],"name":"UnauthorizedCaller","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":[],"name":"antibotWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_freelos","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"editFreelos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_liberatos","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"editLiberatos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liberatos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"openTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellPercent","type":"uint256"},{"internalType":"uint256","name":"_buyPercent","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_antibotWallet","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","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":"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"},{"inputs":[],"name":"uniPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniRouter","outputs":[{"internalType":"contract IUniRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040525f600c555f600d555f60105f6101000a81548160ff021916908315150217905550348015610030575f80fd5b50604051613bef380380613bef8339818101604052810190610052919061133c565b338484816003908161006491906115dc565b50806004908161007491906115dc565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100e7575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100de91906116ba565b60405180910390fd5b6100f68161075260201b60201c565b508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101c591906116d3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561024b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061026f91906116d3565b6040518363ffffffff1660e01b815260040161028c9291906116fe565b6020604051808303815f875af11580156102a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102cc91906116d3565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730f9f28d092fe2dae42f2bd01164f0584268de54160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503360095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f737c1543d230c40d65fd06304246a34f13163c066c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600a82610720919061177f565b600e81905550600a82610733919061177f565b600f81905550610749338361081560201b60201c565b505050506118b3565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610885575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161087c91906116ba565b60405180910390fd5b6108965f838361089a60201b60201c565b5050565b60105f9054906101000a900460ff161580156108ef57506108bf610edc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156109345750610904610edc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561098d575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156109e6575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610a1d576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a2b610edc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ab3575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610aeb57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610b44575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610b975750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610bf7575f610bac83610f0460201b60201c565b9050600f548282610bbd91906117af565b1115610bf5576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600e5481118015610c4f5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610c86576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610d245750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610dd3575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610dd2575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15610ec5575f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614610e4c576064600c5483610e3d91906117e2565b610e47919061177f565b610e67565b6064600d5483610e5c91906117e2565b610e66919061177f565b5b90505f8114610ea357610ea28460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610f4960201b60201c565b5b610ebf84848385610eb49190611823565b610f4960201b60201c565b50610ed7565b610ed6838383610f4960201b60201c565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f99578060025f828254610f8d91906117af565b92505081905550611067565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611022578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161101993929190611865565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ae578060025f82825403925050819055506110f8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611155919061189a565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6111c18261117b565b810181811067ffffffffffffffff821117156111e0576111df61118b565b5b80604052505050565b5f6111f2611162565b90506111fe82826111b8565b919050565b5f67ffffffffffffffff82111561121d5761121c61118b565b5b6112268261117b565b9050602081019050919050565b8281835e5f83830152505050565b5f61125361124e84611203565b6111e9565b90508281526020810184848401111561126f5761126e611177565b5b61127a848285611233565b509392505050565b5f82601f83011261129657611295611173565b5b81516112a6848260208601611241565b91505092915050565b5f819050919050565b6112c1816112af565b81146112cb575f80fd5b50565b5f815190506112dc816112b8565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61130b826112e2565b9050919050565b61131b81611301565b8114611325575f80fd5b50565b5f8151905061133681611312565b92915050565b5f805f80608085870312156113545761135361116b565b5b5f85015167ffffffffffffffff8111156113715761137061116f565b5b61137d87828801611282565b945050602085015167ffffffffffffffff81111561139e5761139d61116f565b5b6113aa87828801611282565b93505060406113bb878288016112ce565b92505060606113cc87828801611328565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061142657607f821691505b602082108103611439576114386113e2565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261149b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611460565b6114a58683611460565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6114e06114db6114d6846112af565b6114bd565b6112af565b9050919050565b5f819050919050565b6114f9836114c6565b61150d611505826114e7565b84845461146c565b825550505050565b5f90565b611521611515565b61152c8184846114f0565b505050565b5b8181101561154f576115445f82611519565b600181019050611532565b5050565b601f821115611594576115658161143f565b61156e84611451565b8101602085101561157d578190505b61159161158985611451565b830182611531565b50505b505050565b5f82821c905092915050565b5f6115b45f1984600802611599565b1980831691505092915050565b5f6115cc83836115a5565b9150826002028217905092915050565b6115e5826113d8565b67ffffffffffffffff8111156115fe576115fd61118b565b5b611608825461140f565b611613828285611553565b5f60209050601f831160018114611644575f8415611632578287015190505b61163c85826115c1565b8655506116a3565b601f1984166116528661143f565b5f5b8281101561167957848901518255600182019150602085019450602081019050611654565b868310156116965784890151611692601f8916826115a5565b8355505b6001600288020188555050505b505050505050565b6116b481611301565b82525050565b5f6020820190506116cd5f8301846116ab565b92915050565b5f602082840312156116e8576116e761116b565b5b5f6116f584828501611328565b91505092915050565b5f6040820190506117115f8301856116ab565b61171e60208301846116ab565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611789826112af565b9150611794836112af565b9250826117a4576117a3611725565b5b828204905092915050565b5f6117b9826112af565b91506117c4836112af565b92508282019050808211156117dc576117db611752565b5b92915050565b5f6117ec826112af565b91506117f7836112af565b9250828202611805816112af565b9150828204841483151761181c5761181b611752565b5b5092915050565b5f61182d826112af565b9150611838836112af565b92508282039050818111156118505761184f611752565b5b92915050565b61185f816112af565b82525050565b5f6060820190506118785f8301866116ab565b6118856020830185611856565b6118926040830184611856565b949350505050565b5f6020820190506118ad5f830184611856565b92915050565b61232f806118c05f395ff3fe608060405234801561000f575f80fd5b50600436106101e3575f3560e01c8063715018a61161010d578063a9059cbb116100a0578063d3f6a1571161006f578063d3f6a1571461054b578063dd62ed3e14610567578063f2fde38b14610597578063f8b45b05146105b3576101e3565b8063a9059cbb146104c3578063c4590d3f146104f3578063c9567bf91461050f578063d36d04971461052d576101e3565b80638da5cb5b116100dc5780638da5cb5b1461043957806395d89b41146104575780639be953b314610475578063a0e47bf6146104a5576101e3565b8063715018a6146103eb5780637437681e146103f5578063751039fc146104135780638a218a7d1461041d576101e3565b80633090b64011610185578063471131ac11610154578063471131ac1461034f5780634f1455c91461037f578063570ca7351461039d57806370a08231146103bb576101e3565b80633090b640146102d9578063313ce567146102f757806332972e46146103155780633ef6136314610333576101e3565b806318160ddd116101c157806318160ddd146102655780631e34c5851461028357806323b872dd1461029f578063293230b8146102cf576101e3565b806306fdde03146101e7578063095ea7b31461020557806312fb555014610235575b5f80fd5b6101ef6105d1565b6040516101fc9190611c67565b60405180910390f35b61021f600480360381019061021a9190611d1c565b610661565b60405161022c9190611d74565b60405180910390f35b61024f600480360381019061024a9190611d8d565b610683565b60405161025c9190611d74565b60405180910390f35b61026d6106a0565b60405161027a9190611dc7565b60405180910390f35b61029d60048036038101906102989190611de0565b6106a9565b005b6102b960048036038101906102b49190611e1e565b610782565b6040516102c69190611d74565b60405180910390f35b6102d76107b0565b005b6102e1610893565b6040516102ee9190611e7d565b60405180910390f35b6102ff6108b8565b60405161030c9190611eb1565b60405180910390f35b61031d6108c0565b60405161032a9190611e7d565b60405180910390f35b61034d60048036038101906103489190611f55565b6108e5565b005b61036960048036038101906103649190611d8d565b610988565b6040516103769190611d74565b60405180910390f35b6103876109a5565b6040516103949190611dc7565b60405180910390f35b6103a56109ab565b6040516103b29190611e7d565b60405180910390f35b6103d560048036038101906103d09190611d8d565b6109d0565b6040516103e29190611dc7565b60405180910390f35b6103f3610a15565b005b6103fd610a28565b60405161040a9190611dc7565b60405180910390f35b61041b610a2e565b005b61043760048036038101906104329190611f55565b610a86565b005b610441610b29565b60405161044e9190611e7d565b60405180910390f35b61045f610b51565b60405161046c9190611c67565b60405180910390f35b61048f600480360381019061048a9190611d8d565b610be1565b60405161049c9190611d74565b60405180910390f35b6104ad610d01565b6040516104ba919061200d565b60405180910390f35b6104dd60048036038101906104d89190611d1c565b610d26565b6040516104ea9190611d74565b60405180910390f35b61050d60048036038101906105089190611de0565b610d48565b005b610517610d62565b6040516105249190611d74565b60405180910390f35b610535610d74565b6040516105429190611dc7565b60405180910390f35b61056560048036038101906105609190612026565b610d7a565b005b610581600480360381019061057c9190612026565b610e06565b60405161058e9190611dc7565b60405180910390f35b6105b160048036038101906105ac9190611d8d565b610e88565b005b6105bb610f0c565b6040516105c89190611dc7565b60405180910390f35b6060600380546105e090612091565b80601f016020809104026020016040519081016040528092919081815260200182805461060c90612091565b80156106575780601f1061062e57610100808354040283529160200191610657565b820191905f5260205f20905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b5f8061066b610f12565b9050610678818585610f19565b600191505092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b6106b1610b29565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610739575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610770576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c8190555080600d819055505050565b5f8061078c610f12565b9050610799858285610f2b565b6107a4858585610fbd565b60019150509392505050565b6107b8610b29565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610840575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610877576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160105f6101000a81548160ff021916908315150217905550565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108ed6110ad565b5f5b838390508110156109825781600a5f868685818110610911576109106120c1565b5b90506020020160208101906109269190611d8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806001019150506108ef565b50505050565b600a602052805f5260405f205f915054906101000a900460ff1681565b600d5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a1d6110ad565b610a265f611134565b565b600e5481565b610a366110ad565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600f81905550565b610a8e6110ad565b5f5b83839050811015610b235781600b5f868685818110610ab257610ab16120c1565b5b9050602002016020810190610ac79190611d8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610a90565b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b6090612091565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8c90612091565b8015610bd75780601f10610bae57610100808354040283529160200191610bd7565b820191905f5260205f20905b815481529060010190602001808311610bba57829003601f168201915b5050505050905090565b5f808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c1c9190611e7d565b602060405180830381865afa158015610c37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5b9190612102565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610cb992919061212d565b6020604051808303815f875af1158015610cd5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf99190612168565b915050919050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610d30610f12565b9050610d3d818585610fbd565b600191505092915050565b610d506110ad565b81600e8190555080600f819055505050565b60105f9054906101000a900460ff1681565b600c5481565b610d826110ad565b8160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e906110ad565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f00575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ef79190611e7d565b60405180910390fd5b610f0981611134565b50565b600f5481565b5f33905090565b610f2683838360016111f7565b505050565b5f610f368484610e06565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fb75781811015610fa8578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f9f93929190612193565b60405180910390fd5b610fb684848484035f6111f7565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361102d575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110249190611e7d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109d575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110949190611e7d565b60405180910390fd5b6110a88383836113c6565b505050565b6110b5610f12565b73ffffffffffffffffffffffffffffffffffffffff166110d3610b29565b73ffffffffffffffffffffffffffffffffffffffff1614611132576110f6610f12565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111299190611e7d565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611267575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161125e9190611e7d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112d7575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112ce9190611e7d565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156113c0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113b79190611dc7565b60405180910390a35b50505050565b60105f9054906101000a900460ff1615801561141557506113e5610b29565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114545750611424610b29565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114ad575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611506575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561153d576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611545610b29565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115cd575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561160557503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561165e575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116b15750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561170b575f6116c0836109d0565b9050600f5482826116d191906121f5565b1115611709576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600e54811180156117635750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561179a576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156118385750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118e7575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806118e6575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b156119cd575f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611960576064600c54836119519190612228565b61195b9190612296565b61197b565b6064600d54836119709190612228565b61197a9190612296565b5b90505f81146119b1576119b08460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836119de565b5b6119c7848483856119c291906122c6565b6119de565b506119d9565b6119d88383836119de565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a2e578060025f828254611a2291906121f5565b92505081905550611afc565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ab7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611aae93929190612193565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b43578060025f8282540392505081905550611b8d565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bea9190611dc7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611c3982611bf7565b611c438185611c01565b9350611c53818560208601611c11565b611c5c81611c1f565b840191505092915050565b5f6020820190508181035f830152611c7f8184611c2f565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611cb882611c8f565b9050919050565b611cc881611cae565b8114611cd2575f80fd5b50565b5f81359050611ce381611cbf565b92915050565b5f819050919050565b611cfb81611ce9565b8114611d05575f80fd5b50565b5f81359050611d1681611cf2565b92915050565b5f8060408385031215611d3257611d31611c87565b5b5f611d3f85828601611cd5565b9250506020611d5085828601611d08565b9150509250929050565b5f8115159050919050565b611d6e81611d5a565b82525050565b5f602082019050611d875f830184611d65565b92915050565b5f60208284031215611da257611da1611c87565b5b5f611daf84828501611cd5565b91505092915050565b611dc181611ce9565b82525050565b5f602082019050611dda5f830184611db8565b92915050565b5f8060408385031215611df657611df5611c87565b5b5f611e0385828601611d08565b9250506020611e1485828601611d08565b9150509250929050565b5f805f60608486031215611e3557611e34611c87565b5b5f611e4286828701611cd5565b9350506020611e5386828701611cd5565b9250506040611e6486828701611d08565b9150509250925092565b611e7781611cae565b82525050565b5f602082019050611e905f830184611e6e565b92915050565b5f60ff82169050919050565b611eab81611e96565b82525050565b5f602082019050611ec45f830184611ea2565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611eeb57611eea611eca565b5b8235905067ffffffffffffffff811115611f0857611f07611ece565b5b602083019150836020820283011115611f2457611f23611ed2565b5b9250929050565b611f3481611d5a565b8114611f3e575f80fd5b50565b5f81359050611f4f81611f2b565b92915050565b5f805f60408486031215611f6c57611f6b611c87565b5b5f84013567ffffffffffffffff811115611f8957611f88611c8b565b5b611f9586828701611ed6565b93509350506020611fa886828701611f41565b9150509250925092565b5f819050919050565b5f611fd5611fd0611fcb84611c8f565b611fb2565b611c8f565b9050919050565b5f611fe682611fbb565b9050919050565b5f611ff782611fdc565b9050919050565b61200781611fed565b82525050565b5f6020820190506120205f830184611ffe565b92915050565b5f806040838503121561203c5761203b611c87565b5b5f61204985828601611cd5565b925050602061205a85828601611cd5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806120a857607f821691505b6020821081036120bb576120ba612064565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506120fc81611cf2565b92915050565b5f6020828403121561211757612116611c87565b5b5f612124848285016120ee565b91505092915050565b5f6040820190506121405f830185611e6e565b61214d6020830184611db8565b9392505050565b5f8151905061216281611f2b565b92915050565b5f6020828403121561217d5761217c611c87565b5b5f61218a84828501612154565b91505092915050565b5f6060820190506121a65f830186611e6e565b6121b36020830185611db8565b6121c06040830184611db8565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6121ff82611ce9565b915061220a83611ce9565b9250828201905080821115612222576122216121c8565b5b92915050565b5f61223282611ce9565b915061223d83611ce9565b925082820261224b81611ce9565b91508282048414831517612262576122616121c8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6122a082611ce9565b91506122ab83611ce9565b9250826122bb576122ba612269565b5b828204905092915050565b5f6122d082611ce9565b91506122db83611ce9565b92508282039050818111156122f3576122f26121c8565b5b9291505056fea2646970667358221220ddefdd6737c0c8f9b9b5af05c67c53033774da719c159d6cd79f7e45e96943e464736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000a59756b6920526973657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000459554b4900000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101e3575f3560e01c8063715018a61161010d578063a9059cbb116100a0578063d3f6a1571161006f578063d3f6a1571461054b578063dd62ed3e14610567578063f2fde38b14610597578063f8b45b05146105b3576101e3565b8063a9059cbb146104c3578063c4590d3f146104f3578063c9567bf91461050f578063d36d04971461052d576101e3565b80638da5cb5b116100dc5780638da5cb5b1461043957806395d89b41146104575780639be953b314610475578063a0e47bf6146104a5576101e3565b8063715018a6146103eb5780637437681e146103f5578063751039fc146104135780638a218a7d1461041d576101e3565b80633090b64011610185578063471131ac11610154578063471131ac1461034f5780634f1455c91461037f578063570ca7351461039d57806370a08231146103bb576101e3565b80633090b640146102d9578063313ce567146102f757806332972e46146103155780633ef6136314610333576101e3565b806318160ddd116101c157806318160ddd146102655780631e34c5851461028357806323b872dd1461029f578063293230b8146102cf576101e3565b806306fdde03146101e7578063095ea7b31461020557806312fb555014610235575b5f80fd5b6101ef6105d1565b6040516101fc9190611c67565b60405180910390f35b61021f600480360381019061021a9190611d1c565b610661565b60405161022c9190611d74565b60405180910390f35b61024f600480360381019061024a9190611d8d565b610683565b60405161025c9190611d74565b60405180910390f35b61026d6106a0565b60405161027a9190611dc7565b60405180910390f35b61029d60048036038101906102989190611de0565b6106a9565b005b6102b960048036038101906102b49190611e1e565b610782565b6040516102c69190611d74565b60405180910390f35b6102d76107b0565b005b6102e1610893565b6040516102ee9190611e7d565b60405180910390f35b6102ff6108b8565b60405161030c9190611eb1565b60405180910390f35b61031d6108c0565b60405161032a9190611e7d565b60405180910390f35b61034d60048036038101906103489190611f55565b6108e5565b005b61036960048036038101906103649190611d8d565b610988565b6040516103769190611d74565b60405180910390f35b6103876109a5565b6040516103949190611dc7565b60405180910390f35b6103a56109ab565b6040516103b29190611e7d565b60405180910390f35b6103d560048036038101906103d09190611d8d565b6109d0565b6040516103e29190611dc7565b60405180910390f35b6103f3610a15565b005b6103fd610a28565b60405161040a9190611dc7565b60405180910390f35b61041b610a2e565b005b61043760048036038101906104329190611f55565b610a86565b005b610441610b29565b60405161044e9190611e7d565b60405180910390f35b61045f610b51565b60405161046c9190611c67565b60405180910390f35b61048f600480360381019061048a9190611d8d565b610be1565b60405161049c9190611d74565b60405180910390f35b6104ad610d01565b6040516104ba919061200d565b60405180910390f35b6104dd60048036038101906104d89190611d1c565b610d26565b6040516104ea9190611d74565b60405180910390f35b61050d60048036038101906105089190611de0565b610d48565b005b610517610d62565b6040516105249190611d74565b60405180910390f35b610535610d74565b6040516105429190611dc7565b60405180910390f35b61056560048036038101906105609190612026565b610d7a565b005b610581600480360381019061057c9190612026565b610e06565b60405161058e9190611dc7565b60405180910390f35b6105b160048036038101906105ac9190611d8d565b610e88565b005b6105bb610f0c565b6040516105c89190611dc7565b60405180910390f35b6060600380546105e090612091565b80601f016020809104026020016040519081016040528092919081815260200182805461060c90612091565b80156106575780601f1061062e57610100808354040283529160200191610657565b820191905f5260205f20905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b5f8061066b610f12565b9050610678818585610f19565b600191505092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b6106b1610b29565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610739575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610770576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c8190555080600d819055505050565b5f8061078c610f12565b9050610799858285610f2b565b6107a4858585610fbd565b60019150509392505050565b6107b8610b29565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610840575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610877576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160105f6101000a81548160ff021916908315150217905550565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108ed6110ad565b5f5b838390508110156109825781600a5f868685818110610911576109106120c1565b5b90506020020160208101906109269190611d8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806001019150506108ef565b50505050565b600a602052805f5260405f205f915054906101000a900460ff1681565b600d5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a1d6110ad565b610a265f611134565b565b600e5481565b610a366110ad565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600f81905550565b610a8e6110ad565b5f5b83839050811015610b235781600b5f868685818110610ab257610ab16120c1565b5b9050602002016020810190610ac79190611d8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610a90565b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b6090612091565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8c90612091565b8015610bd75780601f10610bae57610100808354040283529160200191610bd7565b820191905f5260205f20905b815481529060010190602001808311610bba57829003601f168201915b5050505050905090565b5f808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c1c9190611e7d565b602060405180830381865afa158015610c37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5b9190612102565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610cb992919061212d565b6020604051808303815f875af1158015610cd5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf99190612168565b915050919050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610d30610f12565b9050610d3d818585610fbd565b600191505092915050565b610d506110ad565b81600e8190555080600f819055505050565b60105f9054906101000a900460ff1681565b600c5481565b610d826110ad565b8160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e906110ad565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f00575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ef79190611e7d565b60405180910390fd5b610f0981611134565b50565b600f5481565b5f33905090565b610f2683838360016111f7565b505050565b5f610f368484610e06565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fb75781811015610fa8578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f9f93929190612193565b60405180910390fd5b610fb684848484035f6111f7565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361102d575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110249190611e7d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109d575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110949190611e7d565b60405180910390fd5b6110a88383836113c6565b505050565b6110b5610f12565b73ffffffffffffffffffffffffffffffffffffffff166110d3610b29565b73ffffffffffffffffffffffffffffffffffffffff1614611132576110f6610f12565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111299190611e7d565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611267575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161125e9190611e7d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112d7575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112ce9190611e7d565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156113c0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113b79190611dc7565b60405180910390a35b50505050565b60105f9054906101000a900460ff1615801561141557506113e5610b29565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114545750611424610b29565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114ad575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611506575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561153d576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611545610b29565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115cd575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561160557503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561165e575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116b15750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561170b575f6116c0836109d0565b9050600f5482826116d191906121f5565b1115611709576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600e54811180156117635750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561179a576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156118385750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118e7575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806118e6575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b156119cd575f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611960576064600c54836119519190612228565b61195b9190612296565b61197b565b6064600d54836119709190612228565b61197a9190612296565b5b90505f81146119b1576119b08460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836119de565b5b6119c7848483856119c291906122c6565b6119de565b506119d9565b6119d88383836119de565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a2e578060025f828254611a2291906121f5565b92505081905550611afc565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ab7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611aae93929190612193565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b43578060025f8282540392505081905550611b8d565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bea9190611dc7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611c3982611bf7565b611c438185611c01565b9350611c53818560208601611c11565b611c5c81611c1f565b840191505092915050565b5f6020820190508181035f830152611c7f8184611c2f565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611cb882611c8f565b9050919050565b611cc881611cae565b8114611cd2575f80fd5b50565b5f81359050611ce381611cbf565b92915050565b5f819050919050565b611cfb81611ce9565b8114611d05575f80fd5b50565b5f81359050611d1681611cf2565b92915050565b5f8060408385031215611d3257611d31611c87565b5b5f611d3f85828601611cd5565b9250506020611d5085828601611d08565b9150509250929050565b5f8115159050919050565b611d6e81611d5a565b82525050565b5f602082019050611d875f830184611d65565b92915050565b5f60208284031215611da257611da1611c87565b5b5f611daf84828501611cd5565b91505092915050565b611dc181611ce9565b82525050565b5f602082019050611dda5f830184611db8565b92915050565b5f8060408385031215611df657611df5611c87565b5b5f611e0385828601611d08565b9250506020611e1485828601611d08565b9150509250929050565b5f805f60608486031215611e3557611e34611c87565b5b5f611e4286828701611cd5565b9350506020611e5386828701611cd5565b9250506040611e6486828701611d08565b9150509250925092565b611e7781611cae565b82525050565b5f602082019050611e905f830184611e6e565b92915050565b5f60ff82169050919050565b611eab81611e96565b82525050565b5f602082019050611ec45f830184611ea2565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611eeb57611eea611eca565b5b8235905067ffffffffffffffff811115611f0857611f07611ece565b5b602083019150836020820283011115611f2457611f23611ed2565b5b9250929050565b611f3481611d5a565b8114611f3e575f80fd5b50565b5f81359050611f4f81611f2b565b92915050565b5f805f60408486031215611f6c57611f6b611c87565b5b5f84013567ffffffffffffffff811115611f8957611f88611c8b565b5b611f9586828701611ed6565b93509350506020611fa886828701611f41565b9150509250925092565b5f819050919050565b5f611fd5611fd0611fcb84611c8f565b611fb2565b611c8f565b9050919050565b5f611fe682611fbb565b9050919050565b5f611ff782611fdc565b9050919050565b61200781611fed565b82525050565b5f6020820190506120205f830184611ffe565b92915050565b5f806040838503121561203c5761203b611c87565b5b5f61204985828601611cd5565b925050602061205a85828601611cd5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806120a857607f821691505b6020821081036120bb576120ba612064565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506120fc81611cf2565b92915050565b5f6020828403121561211757612116611c87565b5b5f612124848285016120ee565b91505092915050565b5f6040820190506121405f830185611e6e565b61214d6020830184611db8565b9392505050565b5f8151905061216281611f2b565b92915050565b5f6020828403121561217d5761217c611c87565b5b5f61218a84828501612154565b91505092915050565b5f6060820190506121a65f830186611e6e565b6121b36020830185611db8565b6121c06040830184611db8565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6121ff82611ce9565b915061220a83611ce9565b9250828201905080821115612222576122216121c8565b5b92915050565b5f61223282611ce9565b915061223d83611ce9565b925082820261224b81611ce9565b91508282048414831517612262576122616121c8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6122a082611ce9565b91506122ab83611ce9565b9250826122bb576122ba612269565b5b828204905092915050565b5f6122d082611ce9565b91506122db83611ce9565b92508282039050818111156122f3576122f26121c8565b5b9291505056fea2646970667358221220ddefdd6737c0c8f9b9b5af05c67c53033774da719c159d6cd79f7e45e96943e464736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000a59756b6920526973657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000459554b4900000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Yuki Rises
Arg [1] : _symbol (string): YUKI
Arg [2] : _totalSupply (uint256): 1000000000000000000000000000
Arg [3] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 59756b6920526973657300000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 59554b4900000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.