ERC-20
Overview
Max Total Supply
100,000,000 PRINT
Holders
206
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
25,200 PRINTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PRINT
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Website: http://print.fun Twitter: https://x.com/printdotfun Telegram: https://t.me/printdotfun */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } contract PRINT is ERC20, Ownable { uint256 private buyTax = 20; uint256 private sellTax = 25; IUniswapV2Router02 private uniswapV2Router; address public uniswapV2Pair; mapping(address => bool) public isExempt; address private immutable marketingAddress; address private immutable taxAddress; uint256 public maxTransactionAmount; uint256 public maxTxLaunch; bool private launch = false; bool private slowLaunch = true; uint256 private blockLaunch; uint256 private lastSellBlock; uint256 private sellCount; uint256 private minSwap; uint256 private maxSwap; uint256 private _buyCount = 0; bool private inSwap; modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor( address _taxAddress, address _marketingAddress, address _rewards, address _private, address _cex ) ERC20("PRINT", "PRINT") Ownable() { uint256 totalSupply = 100000000 * 10 ** 18; marketingAddress = _marketingAddress; taxAddress = _taxAddress; isExempt[msg.sender] = true; isExempt[address(this)] = true; isExempt[_rewards] = true; isExempt[marketingAddress] = true; isExempt[taxAddress] = true; isExempt[_private] = true; isExempt[_cex] = true; _mint(_cex, (totalSupply * 4) / 100); // 4% to CEX listings in the future (4 million tokens) _mint(marketingAddress, (totalSupply * 6) / 100); // 6% to Marketing (6 million tokens) _mint(_rewards, (totalSupply * 4296) / 10000); // 42.96% that represents the amount of organic supply held _mint(_private, (totalSupply * 20) / 100); // 20% to privates (20 million tokens) _mint( msg.sender, (totalSupply * (10000 - (400 + 600 + 4296 + 2000))) / 10000 ); // remaining tokens go to deployer (27.04 million tokens) uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = address( IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ) ); maxTransactionAmount = (totalSupply * 2) / 100; maxTxLaunch = (totalSupply * 5) / 1000; maxSwap = 250000 * 10 ** 18; minSwap = 25000 * 10 ** 18; } function addLiquidity() external onlyOwner { _approve( address(this), address(uniswapV2Router), balanceOf(address(this)) ); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); } function getMinCASwap() public view returns (uint256) { return minSwap / 10 ** decimals(); } function setMaxCASwap(uint256 _maxSwap) external onlyOwner { maxSwap = _maxSwap * 10 ** decimals(); } function setMinSwap(uint256 _minSwap) external onlyOwner { minSwap = _minSwap * 10 ** decimals(); } function switchCaSell() external onlyOwner { if (inSwap) { inSwap = false; } else { inSwap = true; } } function deactivateSlowLaunch() external onlyOwner { slowLaunch = false; } function getMaxCASwap() public view returns (uint256) { return maxSwap / 10 ** decimals(); } function swapTokensEth(uint256 tokenAmount) internal lockTheSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, taxAddress, block.timestamp ); } function _transfer( address from, address to, uint256 value ) internal virtual override { if (!isExempt[from] && !isExempt[to]) { require(launch); uint256 tax = 0; if (slowLaunch && blockLaunch != block.number) { require(value <= maxTxLaunch, "MAX TX LIMIT"); } else { require(value <= maxTransactionAmount, "MAX TX LIMIT"); } if (to == uniswapV2Pair) { tax = sellTax; uint256 tokensSwap = balanceOf(address(this)); if (tokensSwap > minSwap && !inSwap) { if (block.number > lastSellBlock) { sellCount = 0; } if (sellCount < 3) { sellCount++; lastSellBlock = block.number; swapTokensEth(min(maxSwap, min(value, tokensSwap))); } } } else if (from == uniswapV2Pair) { tax = buyTax; if (block.number == blockLaunch) { _buyCount++; tax = 0; require( _buyCount <= 15, "Exceeds buys on the first block." ); } } uint256 taxAmount = (value * tax) / 100; uint256 amountAfterTax = value - taxAmount; if (taxAmount > 0) { super._transfer(from, address(this), taxAmount); } super._transfer(from, to, amountAfterTax); return; } super._transfer(from, to, value); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function setTax(uint256 newBuyTax, uint256 newSellTax) external onlyOwner { require(newBuyTax < 20 && newSellTax < 20); sellTax = newSellTax; buyTax = newBuyTax; } function setMaxTx(uint256 newMaxTx) external onlyOwner { maxTransactionAmount = newMaxTx * 10 ** decimals(); } function removeAllLimits() external onlyOwner { maxTransactionAmount = totalSupply(); } function exportETH() external { payable(marketingAddress).transfer(address(this).balance); } function setExcludedWallet( address wAddress, bool isExcle ) external onlyOwner { isExempt[wAddress] = isExcle; } function openTrading() external onlyOwner { launch = true; blockLaunch = block.number; } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
{ "optimizer": { "enabled": false, "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
[{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_rewards","type":"address"},{"internalType":"address","name":"_private","type":"address"},{"internalType":"address","name":"_cex","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivateSlowLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exportETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxCASwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinCASwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxLaunch","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"setMaxCASwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minSwap","type":"uint256"}],"name":"setMinSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchCaSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052601460065560196007556000600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff02191690831515021790555060006013553480156200005657600080fd5b5060405162003bec38038062003bec83398181016040528101906200007c919062000a60565b6040518060400160405280600581526020017f5052494e540000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5052494e540000000000000000000000000000000000000000000000000000008152508160039081620000f9919062000d62565b5080600490816200010b919062000d62565b5050506200012e62000122620007b160201b60201c565b620007b960201b60201c565b60006a52b7d2dcc80cd2e400000090508473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508573ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200044082606460048462000428919062000e78565b62000434919062000ef2565b6200087f60201b60201c565b62000470608051606460068462000458919062000e78565b62000464919062000ef2565b6200087f60201b60201c565b620004a0846127106110c88462000488919062000e78565b62000494919062000ef2565b6200087f60201b60201c565b620004ce836064601484620004b6919062000e78565b620004c2919062000ef2565b6200087f60201b60201c565b620004fe33612710610a9084620004e6919062000e78565b620004f2919062000ef2565b6200087f60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620005c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005e7919062000f2a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000671573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000697919062000f2a565b6040518363ffffffff1660e01b8152600401620006b692919062000f6d565b6020604051808303816000875af1158015620006d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006fc919062000f2a565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060646002826200074d919062000e78565b62000759919062000ef2565b600b819055506103e860058262000771919062000e78565b6200077d919062000ef2565b600c819055506934f086f3b33b6840000060128190555069054b40b1f852bda0000060118190555050505050505062001086565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e89062000ffb565b60405180910390fd5b6200090560008383620009ec60201b60201c565b80600260008282546200091991906200101d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009cc919062001069565b60405180910390a3620009e860008383620009f160201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a2882620009fb565b9050919050565b62000a3a8162000a1b565b811462000a4657600080fd5b50565b60008151905062000a5a8162000a2f565b92915050565b600080600080600060a0868803121562000a7f5762000a7e620009f6565b5b600062000a8f8882890162000a49565b955050602062000aa28882890162000a49565b945050604062000ab58882890162000a49565b935050606062000ac88882890162000a49565b925050608062000adb8882890162000a49565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b6a57607f821691505b60208210810362000b805762000b7f62000b22565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bab565b62000bf6868362000bab565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c4362000c3d62000c378462000c0e565b62000c18565b62000c0e565b9050919050565b6000819050919050565b62000c5f8362000c22565b62000c7762000c6e8262000c4a565b84845462000bb8565b825550505050565b600090565b62000c8e62000c7f565b62000c9b81848462000c54565b505050565b5b8181101562000cc35762000cb760008262000c84565b60018101905062000ca1565b5050565b601f82111562000d125762000cdc8162000b86565b62000ce78462000b9b565b8101602085101562000cf7578190505b62000d0f62000d068562000b9b565b83018262000ca0565b50505b505050565b600082821c905092915050565b600062000d376000198460080262000d17565b1980831691505092915050565b600062000d52838362000d24565b9150826002028217905092915050565b62000d6d8262000ae8565b67ffffffffffffffff81111562000d895762000d8862000af3565b5b62000d95825462000b51565b62000da282828562000cc7565b600060209050601f83116001811462000dda576000841562000dc5578287015190505b62000dd1858262000d44565b86555062000e41565b601f19841662000dea8662000b86565b60005b8281101562000e145784890151825560018201915060208501945060208101905062000ded565b8683101562000e34578489015162000e30601f89168262000d24565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e858262000c0e565b915062000e928362000c0e565b925082820262000ea28162000c0e565b9150828204841483151762000ebc5762000ebb62000e49565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000eff8262000c0e565b915062000f0c8362000c0e565b92508262000f1f5762000f1e62000ec3565b5b828204905092915050565b60006020828403121562000f435762000f42620009f6565b5b600062000f538482850162000a49565b91505092915050565b62000f678162000a1b565b82525050565b600060408201905062000f84600083018562000f5c565b62000f93602083018462000f5c565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fe3601f8362000f9a565b915062000ff08262000fab565b602082019050919050565b60006020820190508181036000830152620010168162000fd4565b9050919050565b60006200102a8262000c0e565b9150620010378362000c0e565b925082820190508082111562001052576200105162000e49565b5b92915050565b620010638162000c0e565b82525050565b600060208201905062001080600083018462001058565b92915050565b60805160a051612b40620010ac600039600061184101526000610be00152612b406000f3fe6080604052600436106101dc5760003560e01c8063a457c2d711610102578063c9567bf911610095578063db05e5cb11610064578063db05e5cb14610681578063dd62ed3e14610698578063e8078d94146106d5578063f2fde38b146106ec576101e3565b8063c9567bf914610613578063d579d4ed1461062a578063d7acde1f14610641578063da81a85a1461066a576101e3565b8063aca2cd6e116100d1578063aca2cd6e14610559578063ad5dff7314610582578063bc337182146105bf578063c8c8ebe4146105e8576101e3565b8063a457c2d71461048b578063a508de62146104c8578063a9059cbb146104f3578063a9e282b814610530576101e3565b8063395093511161017a57806370a082311161014957806370a08231146103e1578063715018a61461041e5780638da5cb5b1461043557806395d89b4114610460576101e3565b8063395093511461032557806349bd5a5e146103625780634b203e1b1461038d578063667f6526146103b8576101e3565b806318160ddd116101b657806318160ddd1461027b578063184619d3146102a657806323b872dd146102bd578063313ce567146102fa576101e3565b806306fdde03146101e8578063084cf61514610213578063095ea7b31461023e576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd610715565b60405161020a9190611be2565b60405180910390f35b34801561021f57600080fd5b506102286107a7565b6040516102359190611c1d565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190611cc7565b6107ad565b6040516102729190611d22565b60405180910390f35b34801561028757600080fd5b506102906107d0565b60405161029d9190611c1d565b60405180910390f35b3480156102b257600080fd5b506102bb6107da565b005b3480156102c957600080fd5b506102e460048036038101906102df9190611d3d565b6107ff565b6040516102f19190611d22565b60405180910390f35b34801561030657600080fd5b5061030f61082e565b60405161031c9190611dac565b60405180910390f35b34801561033157600080fd5b5061034c60048036038101906103479190611cc7565b610837565b6040516103599190611d22565b60405180910390f35b34801561036e57600080fd5b5061037761086e565b6040516103849190611dd6565b60405180910390f35b34801561039957600080fd5b506103a2610894565b6040516103af9190611c1d565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190611df1565b6108bc565b005b3480156103ed57600080fd5b5061040860048036038101906104039190611e31565b6108ef565b6040516104159190611c1d565b60405180910390f35b34801561042a57600080fd5b50610433610937565b005b34801561044157600080fd5b5061044a61094b565b6040516104579190611dd6565b60405180910390f35b34801561046c57600080fd5b50610475610975565b6040516104829190611be2565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190611cc7565b610a07565b6040516104bf9190611d22565b60405180910390f35b3480156104d457600080fd5b506104dd610a7e565b6040516104ea9190611c1d565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190611cc7565b610aa6565b6040516105279190611d22565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190611e5e565b610ac9565b005b34801561056557600080fd5b50610580600480360381019061057b9190611eb7565b610af9565b005b34801561058e57600080fd5b506105a960048036038101906105a49190611e31565b610b5c565b6040516105b69190611d22565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190611e5e565b610b7c565b005b3480156105f457600080fd5b506105fd610bac565b60405161060a9190611c1d565b60405180910390f35b34801561061f57600080fd5b50610628610bb2565b005b34801561063657600080fd5b5061063f610bde565b005b34801561064d57600080fd5b5061066860048036038101906106639190611e5e565b610c47565b005b34801561067657600080fd5b5061067f610c77565b005b34801561068d57600080fd5b50610696610cd2565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190611ef7565b610cea565b6040516106cc9190611c1d565b60405180910390f35b3480156106e157600080fd5b506106ea610d71565b005b3480156106f857600080fd5b50610713600480360381019061070e9190611e31565b610e6c565b005b60606003805461072490611f66565b80601f016020809104026020016040519081016040528092919081815260200182805461075090611f66565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b600c5481565b6000806107b8610eef565b90506107c5818585610ef7565b600191505092915050565b6000600254905090565b6107e26110c0565b6000600d60016101000a81548160ff021916908315150217905550565b60008061080a610eef565b905061081785828561113e565b6108228585856111ca565b60019150509392505050565b60006012905090565b600080610842610eef565b90506108638185856108548589610cea565b61085e9190611fc6565b610ef7565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061089e61082e565b600a6108aa919061212d565b6011546108b791906121a7565b905090565b6108c46110c0565b6014821080156108d45750601481105b6108dd57600080fd5b80600781905550816006819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093f6110c0565b610949600061155a565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461098490611f66565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090611f66565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b600080610a12610eef565b90506000610a208286610cea565b905083811015610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061224a565b60405180910390fd5b610a728286868403610ef7565b60019250505092915050565b6000610a8861082e565b600a610a94919061212d565b601254610aa191906121a7565b905090565b600080610ab1610eef565b9050610abe8185856111ca565b600191505092915050565b610ad16110c0565b610ad961082e565b600a610ae5919061212d565b81610af0919061226a565b60118190555050565b610b016110c0565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610b846110c0565b610b8c61082e565b600a610b98919061212d565b81610ba3919061226a565b600b8190555050565b600b5481565b610bba6110c0565b6001600d60006101000a81548160ff02191690831515021790555043600e81905550565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c44573d6000803e3d6000fd5b50565b610c4f6110c0565b610c5761082e565b600a610c63919061212d565b81610c6e919061226a565b60128190555050565b610c7f6110c0565b601460009054906101000a900460ff1615610cb4576000601460006101000a81548160ff021916908315150217905550610cd0565b6001601460006101000a81548160ff0219169083151502179055505b565b610cda6110c0565b610ce26107d0565b600b81905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d796110c0565b610dae30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610da9306108ef565b610ef7565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610df7306108ef565b600080610e0261094b565b426040518863ffffffff1660e01b8152600401610e24969594939291906122f1565b60606040518083038185885af1158015610e42573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e679190612367565b505050565b610e746110c0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061242c565b60405180910390fd5b610eec8161155a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d906124be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90612550565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110b39190611c1d565b60405180910390a3505050565b6110c8610eef565b73ffffffffffffffffffffffffffffffffffffffff166110e661094b565b73ffffffffffffffffffffffffffffffffffffffff161461113c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611133906125bc565b60405180910390fd5b565b600061114a8484610cea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111c457818110156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90612628565b60405180910390fd5b6111c38484848403610ef7565b5b50505050565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561126e5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561154957600d60009054906101000a900460ff1661128c57600080fd5b6000600d60019054906101000a900460ff1680156112ac575043600e5414155b156112fb57600c548211156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90612694565b60405180910390fd5b611341565b600b54821115611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790612694565b60405180910390fd5b5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361142d57600754905060006113a6306108ef565b9050601154811180156113c65750601460009054906101000a900460ff16155b1561142757600f544311156113de5760006010819055505b6003601054101561142657601060008154809291906113fc906126b4565b919050555043600f8190555061142561142060125461141b8685611620565b611620565b611639565b5b5b506114f5565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114f4576006549050600e5443036114f357601360008154809291906114a3906126b4565b919050555060009050600f60135411156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990612748565b60405180910390fd5b5b5b5b600060648284611505919061226a565b61150f91906121a7565b90506000818461151f9190612768565b90506000821115611536576115358630846118d2565b5b6115418686836118d2565b505050611555565b6115548383836118d2565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081831161162f5782611631565b815b905092915050565b6001601460006101000a81548160ff02191690831515021790555061168130600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610ef7565b6000600267ffffffffffffffff81111561169e5761169d61279c565b5b6040519080825280602002602001820160405280156116cc5781602001602082028036833780820191505090505b50905030816000815181106116e4576116e36127cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117af919061280f565b816001815181106117c3576117c26127cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947836000847f0000000000000000000000000000000000000000000000000000000000000000426040518663ffffffff1660e01b81526004016118819594939291906128fa565b600060405180830381600087803b15801561189b57600080fd5b505af11580156118af573d6000803e3d6000fd5b50505050506000601460006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611938906129c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790612a58565b60405180910390fd5b6119bb838383611b48565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890612aea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b2f9190611c1d565b60405180910390a3611b42848484611b4d565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b8c578082015181840152602081019050611b71565b60008484015250505050565b6000601f19601f8301169050919050565b6000611bb482611b52565b611bbe8185611b5d565b9350611bce818560208601611b6e565b611bd781611b98565b840191505092915050565b60006020820190508181036000830152611bfc8184611ba9565b905092915050565b6000819050919050565b611c1781611c04565b82525050565b6000602082019050611c326000830184611c0e565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c6882611c3d565b9050919050565b611c7881611c5d565b8114611c8357600080fd5b50565b600081359050611c9581611c6f565b92915050565b611ca481611c04565b8114611caf57600080fd5b50565b600081359050611cc181611c9b565b92915050565b60008060408385031215611cde57611cdd611c38565b5b6000611cec85828601611c86565b9250506020611cfd85828601611cb2565b9150509250929050565b60008115159050919050565b611d1c81611d07565b82525050565b6000602082019050611d376000830184611d13565b92915050565b600080600060608486031215611d5657611d55611c38565b5b6000611d6486828701611c86565b9350506020611d7586828701611c86565b9250506040611d8686828701611cb2565b9150509250925092565b600060ff82169050919050565b611da681611d90565b82525050565b6000602082019050611dc16000830184611d9d565b92915050565b611dd081611c5d565b82525050565b6000602082019050611deb6000830184611dc7565b92915050565b60008060408385031215611e0857611e07611c38565b5b6000611e1685828601611cb2565b9250506020611e2785828601611cb2565b9150509250929050565b600060208284031215611e4757611e46611c38565b5b6000611e5584828501611c86565b91505092915050565b600060208284031215611e7457611e73611c38565b5b6000611e8284828501611cb2565b91505092915050565b611e9481611d07565b8114611e9f57600080fd5b50565b600081359050611eb181611e8b565b92915050565b60008060408385031215611ece57611ecd611c38565b5b6000611edc85828601611c86565b9250506020611eed85828601611ea2565b9150509250929050565b60008060408385031215611f0e57611f0d611c38565b5b6000611f1c85828601611c86565b9250506020611f2d85828601611c86565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f7e57607f821691505b602082108103611f9157611f90611f37565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fd182611c04565b9150611fdc83611c04565b9250828201905080821115611ff457611ff3611f97565b5b92915050565b60008160011c9050919050565b6000808291508390505b60018511156120515780860481111561202d5761202c611f97565b5b600185161561203c5780820291505b808102905061204a85611ffa565b9450612011565b94509492505050565b60008261206a5760019050612126565b816120785760009050612126565b816001811461208e5760028114612098576120c7565b6001915050612126565b60ff8411156120aa576120a9611f97565b5b8360020a9150848211156120c1576120c0611f97565b5b50612126565b5060208310610133831016604e8410600b84101617156120fc5782820a9050838111156120f7576120f6611f97565b5b612126565b6121098484846001612007565b925090508184048111156121205761211f611f97565b5b81810290505b9392505050565b600061213882611c04565b915061214383611d90565b92506121707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461205a565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121b282611c04565b91506121bd83611c04565b9250826121cd576121cc612178565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612234602583611b5d565b915061223f826121d8565b604082019050919050565b6000602082019050818103600083015261226381612227565b9050919050565b600061227582611c04565b915061228083611c04565b925082820261228e81611c04565b915082820484148315176122a5576122a4611f97565b5b5092915050565b6000819050919050565b6000819050919050565b60006122db6122d66122d1846122ac565b6122b6565b611c04565b9050919050565b6122eb816122c0565b82525050565b600060c0820190506123066000830189611dc7565b6123136020830188611c0e565b61232060408301876122e2565b61232d60608301866122e2565b61233a6080830185611dc7565b61234760a0830184611c0e565b979650505050505050565b60008151905061236181611c9b565b92915050565b6000806000606084860312156123805761237f611c38565b5b600061238e86828701612352565b935050602061239f86828701612352565b92505060406123b086828701612352565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612416602683611b5d565b9150612421826123ba565b604082019050919050565b6000602082019050818103600083015261244581612409565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124a8602483611b5d565b91506124b38261244c565b604082019050919050565b600060208201905081810360008301526124d78161249b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061253a602283611b5d565b9150612545826124de565b604082019050919050565b600060208201905081810360008301526125698161252d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125a6602083611b5d565b91506125b182612570565b602082019050919050565b600060208201905081810360008301526125d581612599565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612612601d83611b5d565b915061261d826125dc565b602082019050919050565b6000602082019050818103600083015261264181612605565b9050919050565b7f4d4158205458204c494d49540000000000000000000000000000000000000000600082015250565b600061267e600c83611b5d565b915061268982612648565b602082019050919050565b600060208201905081810360008301526126ad81612671565b9050919050565b60006126bf82611c04565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126f1576126f0611f97565b5b600182019050919050565b7f457863656564732062757973206f6e2074686520666972737420626c6f636b2e600082015250565b6000612732602083611b5d565b915061273d826126fc565b602082019050919050565b6000602082019050818103600083015261276181612725565b9050919050565b600061277382611c04565b915061277e83611c04565b925082820390508181111561279657612795611f97565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061280981611c6f565b92915050565b60006020828403121561282557612824611c38565b5b6000612833848285016127fa565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61287181611c5d565b82525050565b60006128838383612868565b60208301905092915050565b6000602082019050919050565b60006128a78261283c565b6128b18185612847565b93506128bc83612858565b8060005b838110156128ed5781516128d48882612877565b97506128df8361288f565b9250506001810190506128c0565b5085935050505092915050565b600060a08201905061290f6000830188611c0e565b61291c60208301876122e2565b818103604083015261292e818661289c565b905061293d6060830185611dc7565b61294a6080830184611c0e565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129b0602583611b5d565b91506129bb82612954565b604082019050919050565b600060208201905081810360008301526129df816129a3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a42602383611b5d565b9150612a4d826129e6565b604082019050919050565b60006020820190508181036000830152612a7181612a35565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ad4602683611b5d565b9150612adf82612a78565b604082019050919050565b60006020820190508181036000830152612b0381612ac7565b905091905056fea2646970667358221220d2d37cd533d4e780ca648bba597a61febe7889d43f8c583ad3fd31758fe062bf64736f6c63430008140033000000000000000000000000981c13297c52054271ae6b83220a2f998fdbd7090000000000000000000000008ffe34cdca5b71b1d8bdcce98e2b8035bcb9ba0c00000000000000000000000045c350da447d4fac92c5dad48547474bd2d7b02a000000000000000000000000b154ad2031b7b4422e9bd47804dce28ebd3aa0810000000000000000000000001a41aff44fdfe697f7791e54dd72854f5afe5f75
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c8063a457c2d711610102578063c9567bf911610095578063db05e5cb11610064578063db05e5cb14610681578063dd62ed3e14610698578063e8078d94146106d5578063f2fde38b146106ec576101e3565b8063c9567bf914610613578063d579d4ed1461062a578063d7acde1f14610641578063da81a85a1461066a576101e3565b8063aca2cd6e116100d1578063aca2cd6e14610559578063ad5dff7314610582578063bc337182146105bf578063c8c8ebe4146105e8576101e3565b8063a457c2d71461048b578063a508de62146104c8578063a9059cbb146104f3578063a9e282b814610530576101e3565b8063395093511161017a57806370a082311161014957806370a08231146103e1578063715018a61461041e5780638da5cb5b1461043557806395d89b4114610460576101e3565b8063395093511461032557806349bd5a5e146103625780634b203e1b1461038d578063667f6526146103b8576101e3565b806318160ddd116101b657806318160ddd1461027b578063184619d3146102a657806323b872dd146102bd578063313ce567146102fa576101e3565b806306fdde03146101e8578063084cf61514610213578063095ea7b31461023e576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd610715565b60405161020a9190611be2565b60405180910390f35b34801561021f57600080fd5b506102286107a7565b6040516102359190611c1d565b60405180910390f35b34801561024a57600080fd5b5061026560048036038101906102609190611cc7565b6107ad565b6040516102729190611d22565b60405180910390f35b34801561028757600080fd5b506102906107d0565b60405161029d9190611c1d565b60405180910390f35b3480156102b257600080fd5b506102bb6107da565b005b3480156102c957600080fd5b506102e460048036038101906102df9190611d3d565b6107ff565b6040516102f19190611d22565b60405180910390f35b34801561030657600080fd5b5061030f61082e565b60405161031c9190611dac565b60405180910390f35b34801561033157600080fd5b5061034c60048036038101906103479190611cc7565b610837565b6040516103599190611d22565b60405180910390f35b34801561036e57600080fd5b5061037761086e565b6040516103849190611dd6565b60405180910390f35b34801561039957600080fd5b506103a2610894565b6040516103af9190611c1d565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190611df1565b6108bc565b005b3480156103ed57600080fd5b5061040860048036038101906104039190611e31565b6108ef565b6040516104159190611c1d565b60405180910390f35b34801561042a57600080fd5b50610433610937565b005b34801561044157600080fd5b5061044a61094b565b6040516104579190611dd6565b60405180910390f35b34801561046c57600080fd5b50610475610975565b6040516104829190611be2565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190611cc7565b610a07565b6040516104bf9190611d22565b60405180910390f35b3480156104d457600080fd5b506104dd610a7e565b6040516104ea9190611c1d565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190611cc7565b610aa6565b6040516105279190611d22565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190611e5e565b610ac9565b005b34801561056557600080fd5b50610580600480360381019061057b9190611eb7565b610af9565b005b34801561058e57600080fd5b506105a960048036038101906105a49190611e31565b610b5c565b6040516105b69190611d22565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190611e5e565b610b7c565b005b3480156105f457600080fd5b506105fd610bac565b60405161060a9190611c1d565b60405180910390f35b34801561061f57600080fd5b50610628610bb2565b005b34801561063657600080fd5b5061063f610bde565b005b34801561064d57600080fd5b5061066860048036038101906106639190611e5e565b610c47565b005b34801561067657600080fd5b5061067f610c77565b005b34801561068d57600080fd5b50610696610cd2565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190611ef7565b610cea565b6040516106cc9190611c1d565b60405180910390f35b3480156106e157600080fd5b506106ea610d71565b005b3480156106f857600080fd5b50610713600480360381019061070e9190611e31565b610e6c565b005b60606003805461072490611f66565b80601f016020809104026020016040519081016040528092919081815260200182805461075090611f66565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b600c5481565b6000806107b8610eef565b90506107c5818585610ef7565b600191505092915050565b6000600254905090565b6107e26110c0565b6000600d60016101000a81548160ff021916908315150217905550565b60008061080a610eef565b905061081785828561113e565b6108228585856111ca565b60019150509392505050565b60006012905090565b600080610842610eef565b90506108638185856108548589610cea565b61085e9190611fc6565b610ef7565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061089e61082e565b600a6108aa919061212d565b6011546108b791906121a7565b905090565b6108c46110c0565b6014821080156108d45750601481105b6108dd57600080fd5b80600781905550816006819055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093f6110c0565b610949600061155a565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461098490611f66565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090611f66565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b600080610a12610eef565b90506000610a208286610cea565b905083811015610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061224a565b60405180910390fd5b610a728286868403610ef7565b60019250505092915050565b6000610a8861082e565b600a610a94919061212d565b601254610aa191906121a7565b905090565b600080610ab1610eef565b9050610abe8185856111ca565b600191505092915050565b610ad16110c0565b610ad961082e565b600a610ae5919061212d565b81610af0919061226a565b60118190555050565b610b016110c0565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610b846110c0565b610b8c61082e565b600a610b98919061212d565b81610ba3919061226a565b600b8190555050565b600b5481565b610bba6110c0565b6001600d60006101000a81548160ff02191690831515021790555043600e81905550565b7f0000000000000000000000008ffe34cdca5b71b1d8bdcce98e2b8035bcb9ba0c73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c44573d6000803e3d6000fd5b50565b610c4f6110c0565b610c5761082e565b600a610c63919061212d565b81610c6e919061226a565b60128190555050565b610c7f6110c0565b601460009054906101000a900460ff1615610cb4576000601460006101000a81548160ff021916908315150217905550610cd0565b6001601460006101000a81548160ff0219169083151502179055505b565b610cda6110c0565b610ce26107d0565b600b81905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d796110c0565b610dae30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610da9306108ef565b610ef7565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610df7306108ef565b600080610e0261094b565b426040518863ffffffff1660e01b8152600401610e24969594939291906122f1565b60606040518083038185885af1158015610e42573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e679190612367565b505050565b610e746110c0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061242c565b60405180910390fd5b610eec8161155a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d906124be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90612550565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110b39190611c1d565b60405180910390a3505050565b6110c8610eef565b73ffffffffffffffffffffffffffffffffffffffff166110e661094b565b73ffffffffffffffffffffffffffffffffffffffff161461113c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611133906125bc565b60405180910390fd5b565b600061114a8484610cea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111c457818110156111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90612628565b60405180910390fd5b6111c38484848403610ef7565b5b50505050565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561126e5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561154957600d60009054906101000a900460ff1661128c57600080fd5b6000600d60019054906101000a900460ff1680156112ac575043600e5414155b156112fb57600c548211156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90612694565b60405180910390fd5b611341565b600b54821115611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790612694565b60405180910390fd5b5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361142d57600754905060006113a6306108ef565b9050601154811180156113c65750601460009054906101000a900460ff16155b1561142757600f544311156113de5760006010819055505b6003601054101561142657601060008154809291906113fc906126b4565b919050555043600f8190555061142561142060125461141b8685611620565b611620565b611639565b5b5b506114f5565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114f4576006549050600e5443036114f357601360008154809291906114a3906126b4565b919050555060009050600f60135411156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990612748565b60405180910390fd5b5b5b5b600060648284611505919061226a565b61150f91906121a7565b90506000818461151f9190612768565b90506000821115611536576115358630846118d2565b5b6115418686836118d2565b505050611555565b6115548383836118d2565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081831161162f5782611631565b815b905092915050565b6001601460006101000a81548160ff02191690831515021790555061168130600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610ef7565b6000600267ffffffffffffffff81111561169e5761169d61279c565b5b6040519080825280602002602001820160405280156116cc5781602001602082028036833780820191505090505b50905030816000815181106116e4576116e36127cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117af919061280f565b816001815181106117c3576117c26127cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947836000847f000000000000000000000000981c13297c52054271ae6b83220a2f998fdbd709426040518663ffffffff1660e01b81526004016118819594939291906128fa565b600060405180830381600087803b15801561189b57600080fd5b505af11580156118af573d6000803e3d6000fd5b50505050506000601460006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611938906129c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790612a58565b60405180910390fd5b6119bb838383611b48565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890612aea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b2f9190611c1d565b60405180910390a3611b42848484611b4d565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b8c578082015181840152602081019050611b71565b60008484015250505050565b6000601f19601f8301169050919050565b6000611bb482611b52565b611bbe8185611b5d565b9350611bce818560208601611b6e565b611bd781611b98565b840191505092915050565b60006020820190508181036000830152611bfc8184611ba9565b905092915050565b6000819050919050565b611c1781611c04565b82525050565b6000602082019050611c326000830184611c0e565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c6882611c3d565b9050919050565b611c7881611c5d565b8114611c8357600080fd5b50565b600081359050611c9581611c6f565b92915050565b611ca481611c04565b8114611caf57600080fd5b50565b600081359050611cc181611c9b565b92915050565b60008060408385031215611cde57611cdd611c38565b5b6000611cec85828601611c86565b9250506020611cfd85828601611cb2565b9150509250929050565b60008115159050919050565b611d1c81611d07565b82525050565b6000602082019050611d376000830184611d13565b92915050565b600080600060608486031215611d5657611d55611c38565b5b6000611d6486828701611c86565b9350506020611d7586828701611c86565b9250506040611d8686828701611cb2565b9150509250925092565b600060ff82169050919050565b611da681611d90565b82525050565b6000602082019050611dc16000830184611d9d565b92915050565b611dd081611c5d565b82525050565b6000602082019050611deb6000830184611dc7565b92915050565b60008060408385031215611e0857611e07611c38565b5b6000611e1685828601611cb2565b9250506020611e2785828601611cb2565b9150509250929050565b600060208284031215611e4757611e46611c38565b5b6000611e5584828501611c86565b91505092915050565b600060208284031215611e7457611e73611c38565b5b6000611e8284828501611cb2565b91505092915050565b611e9481611d07565b8114611e9f57600080fd5b50565b600081359050611eb181611e8b565b92915050565b60008060408385031215611ece57611ecd611c38565b5b6000611edc85828601611c86565b9250506020611eed85828601611ea2565b9150509250929050565b60008060408385031215611f0e57611f0d611c38565b5b6000611f1c85828601611c86565b9250506020611f2d85828601611c86565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f7e57607f821691505b602082108103611f9157611f90611f37565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611fd182611c04565b9150611fdc83611c04565b9250828201905080821115611ff457611ff3611f97565b5b92915050565b60008160011c9050919050565b6000808291508390505b60018511156120515780860481111561202d5761202c611f97565b5b600185161561203c5780820291505b808102905061204a85611ffa565b9450612011565b94509492505050565b60008261206a5760019050612126565b816120785760009050612126565b816001811461208e5760028114612098576120c7565b6001915050612126565b60ff8411156120aa576120a9611f97565b5b8360020a9150848211156120c1576120c0611f97565b5b50612126565b5060208310610133831016604e8410600b84101617156120fc5782820a9050838111156120f7576120f6611f97565b5b612126565b6121098484846001612007565b925090508184048111156121205761211f611f97565b5b81810290505b9392505050565b600061213882611c04565b915061214383611d90565b92506121707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461205a565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121b282611c04565b91506121bd83611c04565b9250826121cd576121cc612178565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612234602583611b5d565b915061223f826121d8565b604082019050919050565b6000602082019050818103600083015261226381612227565b9050919050565b600061227582611c04565b915061228083611c04565b925082820261228e81611c04565b915082820484148315176122a5576122a4611f97565b5b5092915050565b6000819050919050565b6000819050919050565b60006122db6122d66122d1846122ac565b6122b6565b611c04565b9050919050565b6122eb816122c0565b82525050565b600060c0820190506123066000830189611dc7565b6123136020830188611c0e565b61232060408301876122e2565b61232d60608301866122e2565b61233a6080830185611dc7565b61234760a0830184611c0e565b979650505050505050565b60008151905061236181611c9b565b92915050565b6000806000606084860312156123805761237f611c38565b5b600061238e86828701612352565b935050602061239f86828701612352565b92505060406123b086828701612352565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612416602683611b5d565b9150612421826123ba565b604082019050919050565b6000602082019050818103600083015261244581612409565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124a8602483611b5d565b91506124b38261244c565b604082019050919050565b600060208201905081810360008301526124d78161249b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061253a602283611b5d565b9150612545826124de565b604082019050919050565b600060208201905081810360008301526125698161252d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125a6602083611b5d565b91506125b182612570565b602082019050919050565b600060208201905081810360008301526125d581612599565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612612601d83611b5d565b915061261d826125dc565b602082019050919050565b6000602082019050818103600083015261264181612605565b9050919050565b7f4d4158205458204c494d49540000000000000000000000000000000000000000600082015250565b600061267e600c83611b5d565b915061268982612648565b602082019050919050565b600060208201905081810360008301526126ad81612671565b9050919050565b60006126bf82611c04565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126f1576126f0611f97565b5b600182019050919050565b7f457863656564732062757973206f6e2074686520666972737420626c6f636b2e600082015250565b6000612732602083611b5d565b915061273d826126fc565b602082019050919050565b6000602082019050818103600083015261276181612725565b9050919050565b600061277382611c04565b915061277e83611c04565b925082820390508181111561279657612795611f97565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061280981611c6f565b92915050565b60006020828403121561282557612824611c38565b5b6000612833848285016127fa565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61287181611c5d565b82525050565b60006128838383612868565b60208301905092915050565b6000602082019050919050565b60006128a78261283c565b6128b18185612847565b93506128bc83612858565b8060005b838110156128ed5781516128d48882612877565b97506128df8361288f565b9250506001810190506128c0565b5085935050505092915050565b600060a08201905061290f6000830188611c0e565b61291c60208301876122e2565b818103604083015261292e818661289c565b905061293d6060830185611dc7565b61294a6080830184611c0e565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129b0602583611b5d565b91506129bb82612954565b604082019050919050565b600060208201905081810360008301526129df816129a3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a42602383611b5d565b9150612a4d826129e6565b604082019050919050565b60006020820190508181036000830152612a7181612a35565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ad4602683611b5d565b9150612adf82612a78565b604082019050919050565b60006020820190508181036000830152612b0381612ac7565b905091905056fea2646970667358221220d2d37cd533d4e780ca648bba597a61febe7889d43f8c583ad3fd31758fe062bf64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000981c13297c52054271ae6b83220a2f998fdbd7090000000000000000000000008ffe34cdca5b71b1d8bdcce98e2b8035bcb9ba0c00000000000000000000000045c350da447d4fac92c5dad48547474bd2d7b02a000000000000000000000000b154ad2031b7b4422e9bd47804dce28ebd3aa0810000000000000000000000001a41aff44fdfe697f7791e54dd72854f5afe5f75
-----Decoded View---------------
Arg [0] : _taxAddress (address): 0x981c13297c52054271ae6b83220A2f998fDbd709
Arg [1] : _marketingAddress (address): 0x8FfE34cdCa5B71b1D8BDcCE98e2B8035bCB9ba0c
Arg [2] : _rewards (address): 0x45C350DA447D4faC92c5daD48547474BD2d7b02A
Arg [3] : _private (address): 0xb154ad2031B7b4422E9bd47804Dce28Ebd3aA081
Arg [4] : _cex (address): 0x1A41AFf44fdfE697f7791e54dd72854F5AFe5f75
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000981c13297c52054271ae6b83220a2f998fdbd709
Arg [1] : 0000000000000000000000008ffe34cdca5b71b1d8bdcce98e2b8035bcb9ba0c
Arg [2] : 00000000000000000000000045c350da447d4fac92c5dad48547474bd2d7b02a
Arg [3] : 000000000000000000000000b154ad2031b7b4422e9bd47804dce28ebd3aa081
Arg [4] : 0000000000000000000000001a41aff44fdfe697f7791e54dd72854f5afe5f75
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.