Overview
Max Total Supply
1,000,000,000,000,000 CCC
Holders
3,780 (0.00%)
Transfers
-
31
Market
Price
$0.00 @ 0.000000 ETH (-2.08%)
Onchain Market Cap
-
Circulating Supply Market Cap
$75,648.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
CUTECATCANDLE
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/IFactory.sol";
import "./interfaces/IRouter.sol";
import "./interfaces/IWETH.sol";
contract CUTECATCANDLE is ERC20, Ownable {
modifier lockTheFeeProcessing() {
processingFees = true;
_;
processingFees = false;
}
bool private processingFees = false;
IRouter public router;
address public automatedMarketMakerAddress;
mapping(address => bool) public automatedMarketMakerPair;
uint256 public buyFee;
uint256 public sellFee;
bool public limitsActive = true;
bool public takingTax = true;
uint256 public maxWallet;
uint256 public maxTransaction;
uint256 public thresholdToProcessFees;
address public marketingWallet;
mapping(address => bool) public excludedAddresses;
bool public tradingEnabled = false;
event AMMSet(address indexed pairAddress, bool isAMM);
event TradingEnabled();
event NewMarketingWalletSet(address newDevWallet);
event ThresholdToProcessFeesSet(uint256 oldThreshold, uint256 newThreshold);
event LimitsDisabled();
event MaxWalletSet(uint256 oldMaxWallet, uint256 newMaxWallet);
event MaxTransactionSet(uint256 oldMaxTransaction, uint256 newMaxTransaction);
event FeeSet(uint256 buyFee, uint256 sellFee);
event FeesDisabled();
event FeesProcessed();
event ExcludedAddressSet(address indexed excludedAddress, bool isExcluded);
constructor(address routerAddress)
ERC20("Cute Cat Candle", "CCC")
{
_mint(_msgSender(), 1000000000000000 * 1e18);
excludedAddresses[address(_msgSender())] = true;
router = IRouter(routerAddress);
address _pair = IFactory(router.factory()).createPair(address(this), router.WETH());
setAMM(address(_pair), true);
marketingWallet = address(0xB0a1310E003b0194f27dC3be890512A99Dd87dD6);
excludedAddresses[address(router)] = true;
excludedAddresses[address(marketingWallet)] = true;
buyFee = 80000;
sellFee = 80000;
maxWallet = 12500000000000 * 1e18;
maxTransaction = 6250000000000 * 1e18;
thresholdToProcessFees = 10000000000000 * 1e18;
}
receive() external payable {}
function setExcludedAddress(address excludedAddress, bool isExcluded) public onlyOwner {
require(excludedAddress != address(0), "(New) excluded address can not be address 0x");
excludedAddresses[excludedAddress] = isExcluded;
emit ExcludedAddressSet(excludedAddress, isExcluded);
}
function setAMM(address ammAddress, bool isAMM) public onlyOwner {
require(ammAddress != address(0), "(New) AMM address can not be address 0x");
automatedMarketMakerPair[ammAddress] = isAMM;
automatedMarketMakerAddress = ammAddress;
emit AMMSet(ammAddress, isAMM);
}
function setThresholdToProcessFees(uint256 newThreshold) external onlyOwner {
require(newThreshold >= 1000 * 1e18, "1000 is the minimum");
uint256 _oldThreshold = thresholdToProcessFees;
thresholdToProcessFees = newThreshold;
emit ThresholdToProcessFeesSet(_oldThreshold, newThreshold);
}
function disableLimits() external onlyOwner {
require(limitsActive, "Limits are already disabled");
limitsActive = false;
emit LimitsDisabled();
}
function setMaxWallet(uint256 newMaxWallet) external onlyOwner {
require(newMaxWallet >= 5000000000000 * 1e18, "Max wallet less then 0,5%");
require(newMaxWallet <= 1000000000000000 * 1e18, "Max wallet more then 100%");
uint256 _oldMaxWallet = maxWallet;
maxWallet = newMaxWallet;
emit MaxWalletSet(_oldMaxWallet, newMaxWallet);
}
function setMaxTransaction(uint256 newMaxTransaction) external onlyOwner {
require(newMaxTransaction >= 5000000000000 * 1e18, "Max tx less then 0,5%");
require(newMaxTransaction <= 1000000000000000 * 1e18, "Max tx more then 100%");
uint256 _oldMaxTransaction = maxTransaction;
maxTransaction = newMaxTransaction;
emit MaxWalletSet(_oldMaxTransaction, newMaxTransaction);
}
function setFee(uint256 newBuyFee, uint256 newSellFee) external onlyOwner {
require(newBuyFee != buyFee, "Buy fee is already that percentage");
require(newSellFee != sellFee, "Sell fee is already that percentage");
buyFee = newBuyFee;
sellFee = newSellFee;
if (newBuyFee == 0 && newSellFee == 0) {
takingTax = false;
emit FeesDisabled();
}
emit FeeSet(newBuyFee, newSellFee);
}
function setMarketingWallet(address newMarketingWallet) public onlyOwner {
require(newMarketingWallet != address(0), "New operations wallet can not be address 0x");
excludedAddresses[address(marketingWallet)] = false;
marketingWallet = newMarketingWallet;
excludedAddresses[address(newMarketingWallet)] = true;
emit NewMarketingWalletSet(newMarketingWallet);
}
function enableTrading() external onlyOwner {
require(!tradingEnabled, "Trading is already enabled");
tradingEnabled = true;
emit TradingEnabled();
}
function _transfer(address from, address to, uint256 amount) internal override {
require(tradingEnabled || from == owner(), "Trading will enable when AMM is set");
if (excludedAddresses[from] || excludedAddresses[to]) {
super._transfer(from, to, amount);
return;
}
if (limitsActive) {
if (automatedMarketMakerPair[from] && !excludedAddresses[to]) {
require(amount <= maxTransaction, "Max transaction exceeded.");
require(balanceOf(to) + amount <= maxWallet, "Max wallet exceeded.");
} else if (automatedMarketMakerPair[to] && !excludedAddresses[from]) {
require(amount <= maxTransaction, "Max transaction exceeded.");
} else if (!excludedAddresses[to] && !excludedAddresses[from]) {
require(amount <= maxTransaction, "Max transaction exceeded.");
require(balanceOf(to) + amount <= maxWallet, "Max wallet exceeded.");
}
}
uint256 _transferAmount = amount;
if (takingTax) {
if (automatedMarketMakerPair[from] || automatedMarketMakerPair[to]) {
uint256 _txnFee;
if (automatedMarketMakerPair[from]) {
_txnFee = (_transferAmount * buyFee) / 100000;
}
if (automatedMarketMakerPair[to]) {
_txnFee = (_transferAmount * sellFee) / 100000;
if (!processingFees && balanceOf(address(this)) >= thresholdToProcessFees) {
processFees();
}
}
_transferAmount = _transferAmount - _txnFee;
super._transfer(from, address(this), _txnFee);
}
}
if (automatedMarketMakerPair[to] && !processingFees && balanceOf(address(this)) >= thresholdToProcessFees
) {
processFees();
}
super._transfer(from, to, _transferAmount);
}
function processFees() public lockTheFeeProcessing {
uint256 _contractBalance = balanceOf(address(this));
require(_contractBalance != 0, "Token balance cannot be 0");
uint256 _swapAmount = _contractBalance;
_swapTokensForEth(_swapAmount);
uint256 _balance = address(this).balance;
require(_balance != 0, "ETH balance cannot be 0");
(bool sendSuccess,) = marketingWallet.call{value : _balance}("");
require(sendSuccess, "Transfer to dev failed.");
emit FeesProcessed();
}
function _swapTokensForEth(uint256 tokenAmount) internal {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = router.WETH();
_approve(address(this), address(router), tokenAmount);
router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
function rescueWETH() external onlyOwner {
address wethAddress = router.WETH();
IWETH(wethAddress).withdraw(
IERC20(wethAddress).balanceOf(address(this))
);
}
function rescueETH() external onlyOwner {
uint256 _balance = address(this).balance;
require(_balance > 0, "No ETH to withdraw");
(bool success,) = marketingWallet.call{value : _balance}("");
require(success, "ETH transfer failed");
}
function rescueTokens(address tokenAddress) external onlyOwner {
IERC20 tokenContract = IERC20(tokenAddress);
tokenContract.transfer(address(marketingWallet), tokenContract.balanceOf(address(this)));
}
}// 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;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IFactory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint
);
function createPair(address tokenA, address tokenB) external returns (address pair);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IRouter {
function factory() external view returns (address);
function WETH() external view returns (address);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IWETH is IERC20 {
function withdraw(uint256) external;
}{
"evmVersion": "paris",
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pairAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"isAMM","type":"bool"}],"name":"AMMSet","type":"event"},{"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":"excludedAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedAddressSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeeSet","type":"event"},{"anonymous":false,"inputs":[],"name":"FeesDisabled","type":"event"},{"anonymous":false,"inputs":[],"name":"FeesProcessed","type":"event"},{"anonymous":false,"inputs":[],"name":"LimitsDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldMaxTransaction","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMaxTransaction","type":"uint256"}],"name":"MaxTransactionSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldMaxWallet","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"MaxWalletSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newDevWallet","type":"address"}],"name":"NewMarketingWalletSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldThreshold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"ThresholdToProcessFeesSet","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"automatedMarketMakerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"limitsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"processFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueWETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ammAddress","type":"address"},{"internalType":"bool","name":"isAMM","type":"bool"}],"name":"setAMM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"excludedAddress","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"setExcludedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFee","type":"uint256"},{"internalType":"uint256","name":"newSellFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTransaction","type":"uint256"}],"name":"setMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"setThresholdToProcessFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"takingTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thresholdToProcessFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040526000600560146101000a81548160ff0219169083151502179055506001600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506000601160006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b50604051620054dd380380620054dd8339818101604052810190620000a3919062000a65565b6040518060400160405280600f81526020017f43757465204361742043616e646c6500000000000000000000000000000000008152506040518060400160405280600381526020017f4343430000000000000000000000000000000000000000000000000000000000815250816003908162000120919062000d11565b50806004908162000132919062000d11565b50505062000155620001496200058d60201b60201c565b6200059560201b60201c565b62000184620001696200058d60201b60201c565b6d314dc6448d9338c15b0a000000006200065b60201b60201c565b6001601060006200019a6200058d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c2919062000a65565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200034c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000372919062000a65565b6040518363ffffffff1660e01b81526004016200039192919062000e09565b6020604051808303816000875af1158015620003b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d7919062000a65565b9050620003ec816001620007c860201b60201c565b73b0a1310e003b0194f27dc3be890512a99dd87dd6600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160106000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506201388060098190555062013880600a819055506c9dc5ada82b70b59df020000000600c819055506c4ee2d6d415b85acef810000000600d819055506c7e37be2022c0914b2680000000600e81905550505062001095565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c49062000e97565b60405180910390fd5b620006e1600083836200093660201b60201c565b8060026000828254620006f5919062000ee8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007a8919062000f34565b60405180910390a3620007c4600083836200093b60201b60201c565b5050565b620007d86200094060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200084a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008419062000fc7565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f52f7750de642e169ff687a199cc8453a96d938130a797c0a11ea42a4d1659d87826040516200092a919062001006565b60405180910390a25050565b505050565b505050565b620009506200058d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000976620009d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c69062001073565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a2d8262000a00565b9050919050565b62000a3f8162000a20565b811462000a4b57600080fd5b50565b60008151905062000a5f8162000a34565b92915050565b60006020828403121562000a7e5762000a7d620009fb565b5b600062000a8e8482850162000a4e565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b1957607f821691505b60208210810362000b2f5762000b2e62000ad1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b5a565b62000ba5868362000b5a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bf262000bec62000be68462000bbd565b62000bc7565b62000bbd565b9050919050565b6000819050919050565b62000c0e8362000bd1565b62000c2662000c1d8262000bf9565b84845462000b67565b825550505050565b600090565b62000c3d62000c2e565b62000c4a81848462000c03565b505050565b5b8181101562000c725762000c6660008262000c33565b60018101905062000c50565b5050565b601f82111562000cc15762000c8b8162000b35565b62000c968462000b4a565b8101602085101562000ca6578190505b62000cbe62000cb58562000b4a565b83018262000c4f565b50505b505050565b600082821c905092915050565b600062000ce66000198460080262000cc6565b1980831691505092915050565b600062000d01838362000cd3565b9150826002028217905092915050565b62000d1c8262000a97565b67ffffffffffffffff81111562000d385762000d3762000aa2565b5b62000d44825462000b00565b62000d5182828562000c76565b600060209050601f83116001811462000d89576000841562000d74578287015190505b62000d80858262000cf3565b86555062000df0565b601f19841662000d998662000b35565b60005b8281101562000dc35784890151825560018201915060208501945060208101905062000d9c565b8683101562000de3578489015162000ddf601f89168262000cd3565b8355505b6001600288020188555050505b505050505050565b62000e038162000a20565b82525050565b600060408201905062000e20600083018562000df8565b62000e2f602083018462000df8565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e7f601f8362000e36565b915062000e8c8262000e47565b602082019050919050565b6000602082019050818103600083015262000eb28162000e70565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ef58262000bbd565b915062000f028362000bbd565b925082820190508082111562000f1d5762000f1c62000eb9565b5b92915050565b62000f2e8162000bbd565b82525050565b600060208201905062000f4b600083018462000f23565b92915050565b7f284e65772920414d4d20616464726573732063616e206e6f742062652061646460008201527f7265737320307800000000000000000000000000000000000000000000000000602082015250565b600062000faf60278362000e36565b915062000fbc8262000f51565b604082019050919050565b6000602082019050818103600083015262000fe28162000fa0565b9050919050565b60008115159050919050565b620010008162000fe9565b82525050565b60006020820190506200101d600083018462000ff5565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200105b60208362000e36565b9150620010688262001023565b602082019050919050565b600060208201905081810360008301526200108e816200104c565b9050919050565b61443880620010a56000396000f3fe60806040526004361061023e5760003560e01c806375f0a8741161012e578063c38ec0b6116100ab578063f196782c1161006f578063f196782c1461085b578063f2fde38b14610884578063f887ea40146108ad578063f8b45b05146108d8578063f928364c1461090357610245565b8063c38ec0b614610774578063c3f70b521461078b578063cf011b26146107b6578063d368371e146107f3578063dd62ed3e1461081e57610245565b8063a457c2d7116100f2578063a457c2d714610691578063a9059cbb146106ce578063a9d3cd8a1461070b578063ab5a188714610734578063ba69ebed1461075d57610245565b806375f0a874146105bc5780638a8c523c146105e75780638da5cb5b146105fe57806390aa2ea61461062957806395d89b411461066657610245565b806339509351116101bc57806355da1ccb1161018057806355da1ccb146104eb5780635d0044ca146105165780635d098b381461053f57806370a0823114610568578063715018a6146105a557610245565b8063395093511461040657806347062402146104435780634ada218b1461046e57806350b9a9f51461049957806352f7c988146104c257610245565b80631cce34ee116102035780631cce34ee1461033157806320800a001461035c57806323b872dd146103735780632b14ca56146103b0578063313ce567146103db57610245565b8062ae3bf81461024a57806306fdde0314610273578063095ea7b31461029e5780630ac249d5146102db57806318160ddd1461030657610245565b3661024557005b600080fd5b34801561025657600080fd5b50610271600480360381019061026c9190612d34565b61091a565b005b34801561027f57600080fd5b50610288610a45565b6040516102959190612df1565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190612e49565b610ad7565b6040516102d29190612ea4565b60405180910390f35b3480156102e757600080fd5b506102f0610afa565b6040516102fd9190612ece565b60405180910390f35b34801561031257600080fd5b5061031b610b20565b6040516103289190612ef8565b60405180910390f35b34801561033d57600080fd5b50610346610b2a565b6040516103539190612ea4565b60405180910390f35b34801561036857600080fd5b50610371610b3d565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612f13565b610c5f565b6040516103a79190612ea4565b60405180910390f35b3480156103bc57600080fd5b506103c5610c8e565b6040516103d29190612ef8565b60405180910390f35b3480156103e757600080fd5b506103f0610c94565b6040516103fd9190612f82565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190612e49565b610c9d565b60405161043a9190612ea4565b60405180910390f35b34801561044f57600080fd5b50610458610cd4565b6040516104659190612ef8565b60405180910390f35b34801561047a57600080fd5b50610483610cda565b6040516104909190612ea4565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612f9d565b610ced565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190612fca565b610d8c565b005b3480156104f757600080fd5b50610500610ec4565b60405161050d9190612ea4565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190612f9d565b610ed7565b005b34801561054b57600080fd5b5061056660048036038101906105619190612d34565b610fcb565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612d34565b61118f565b60405161059c9190612ef8565b60405180910390f35b3480156105b157600080fd5b506105ba6111d7565b005b3480156105c857600080fd5b506105d16111eb565b6040516105de9190612ece565b60405180910390f35b3480156105f357600080fd5b506105fc611211565b005b34801561060a57600080fd5b506106136112b2565b6040516106209190612ece565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190612d34565b6112dc565b60405161065d9190612ea4565b60405180910390f35b34801561067257600080fd5b5061067b6112fc565b6040516106889190612df1565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612e49565b61138e565b6040516106c59190612ea4565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612e49565b611405565b6040516107029190612ea4565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d9190613036565b611428565b005b34801561074057600080fd5b5061075b60048036038101906107569190612f9d565b611589565b005b34801561076957600080fd5b5061077261167d565b005b34801561078057600080fd5b50610789611859565b005b34801561079757600080fd5b506107a06119dd565b6040516107ad9190612ef8565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190612d34565b6119e3565b6040516107ea9190612ea4565b60405180910390f35b3480156107ff57600080fd5b50610808611a03565b6040516108159190612ef8565b60405180910390f35b34801561082a57600080fd5b5061084560048036038101906108409190613076565b611a09565b6040516108529190612ef8565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d9190613036565b611a90565b005b34801561089057600080fd5b506108ab60048036038101906108a69190612d34565b611bb0565b005b3480156108b957600080fd5b506108c2611c33565b6040516108cf9190613115565b60405180910390f35b3480156108e457600080fd5b506108ed611c59565b6040516108fa9190612ef8565b60405180910390f35b34801561090f57600080fd5b50610918611c5f565b005b610922611cff565b60008190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161099f9190612ece565b602060405180830381865afa1580156109bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e09190613145565b6040518363ffffffff1660e01b81526004016109fd929190613172565b6020604051808303816000875af1158015610a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4091906131b0565b505050565b606060038054610a549061320c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a809061320c565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b600080610ae2611d7d565b9050610aef818585611d85565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600b60009054906101000a900460ff1681565b610b45611cff565b600047905060008111610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490613289565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610bd5906132da565b60006040518083038185875af1925050503d8060008114610c12576040519150601f19603f3d011682016040523d82523d6000602084013e610c17565b606091505b5050905080610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061333b565b60405180910390fd5b5050565b600080610c6a611d7d565b9050610c77858285611f4e565b610c82858585611fda565b60019150509392505050565b600a5481565b60006012905090565b600080610ca8611d7d565b9050610cc9818585610cba8589611a09565b610cc4919061338a565b611d85565b600191505092915050565b60095481565b601160009054906101000a900460ff1681565b610cf5611cff565b683635c9adc5dea00000811015610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d389061340a565b60405180910390fd5b6000600e54905081600e819055507f046078a3b350ab7ef8b49720ee84ad777c5172459d33cff8e353c3b9b04757ea8183604051610d8092919061342a565b60405180910390a15050565b610d94611cff565b6009548203610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf906134c5565b60405180910390fd5b600a548103610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390613557565b60405180910390fd5b8160098190555080600a81905550600082148015610e3a5750600081145b15610e87576000600b60016101000a81548160ff0219169083151502179055507f36c13ba18a0a22fbc6fa29968c7ddbcabe3c8096339dc284da5e79ae81dcbb1360405160405180910390a15b7f74dbbbe280ef27b79a8a0c449d5ae2ba7a31849103241d0f98df70bbc9d03e378282604051610eb892919061342a565b60405180910390a15050565b600b60019054906101000a900460ff1681565b610edf611cff565b6c3f1bdf10116048a59340000000811015610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f26906135c3565b60405180910390fd5b6d314dc6448d9338c15b0a00000000811115610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f779061362f565b60405180910390fd5b6000600c54905081600c819055507f35f2577625659032d553fbc001320996b756a5dae410a0b74e931934e020464b8183604051610fbf92919061342a565b60405180910390a15050565b610fd3611cff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611039906136c1565b60405180910390fd5b600060106000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507feda80b7b41c9a2fed990518087869468a994f28f0f6fc9a0c011b03612c5cca4816040516111849190612ece565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111df611cff565b6111e96000612748565b565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611219611cff565b601160009054906101000a900460ff1615611269576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112609061372d565b60405180910390fd5b6001601160006101000a81548160ff0219169083151502179055507f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c760405160405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528060005260406000206000915054906101000a900460ff1681565b60606004805461130b9061320c565b80601f01602080910402602001604051908101604052809291908181526020018280546113379061320c565b80156113845780601f1061135957610100808354040283529160200191611384565b820191906000526020600020905b81548152906001019060200180831161136757829003601f168201915b5050505050905090565b600080611399611d7d565b905060006113a78286611a09565b9050838110156113ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e3906137bf565b60405180910390fd5b6113f98286868403611d85565b60019250505092915050565b600080611410611d7d565b905061141d818585611fda565b600191505092915050565b611430611cff565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149690613851565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f52f7750de642e169ff687a199cc8453a96d938130a797c0a11ea42a4d1659d878260405161157d9190612ea4565b60405180910390a25050565b611591611cff565b6c3f1bdf10116048a593400000008110156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906138bd565b60405180910390fd5b6d314dc6448d9338c15b0a00000000811115611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613929565b60405180910390fd5b6000600d54905081600d819055507f35f2577625659032d553fbc001320996b756a5dae410a0b74e931934e020464b818360405161167192919061342a565b60405180910390a15050565b6001600560146101000a81548160ff02191690831515021790555060006116a33061118f565b9050600081036116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90613995565b60405180910390fd5b60008190506116f68161280e565b60004790506000810361173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590613a01565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611786906132da565b60006040518083038185875af1925050503d80600081146117c3576040519150601f19603f3d011682016040523d82523d6000602084013e6117c8565b606091505b505090508061180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390613a6d565b60405180910390fd5b7f073f67f6b2a495a773c8f33582c762d9c1a89fec310d1e2ce2808b4ff65d829060405160405180910390a1505050506000600560146101000a81548160ff021916908315150217905550565b611861611cff565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f49190613aa2565b90508073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161194b9190612ece565b602060405180830381865afa158015611968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198c9190613145565b6040518263ffffffff1660e01b81526004016119a89190612ef8565b600060405180830381600087803b1580156119c257600080fd5b505af11580156119d6573d6000803e3d6000fd5b5050505050565b600d5481565b60106020528060005260406000206000915054906101000a900460ff1681565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611a98611cff565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90613b41565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f33e99dbd8a2fdf021abaf8531c98838a37f8e85fd3cbf0e897047074f9c4ecf482604051611ba49190612ea4565b60405180910390a25050565b611bb8611cff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90613bd3565b60405180910390fd5b611c3081612748565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b611c67611cff565b600b60009054906101000a900460ff16611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90613c3f565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507fd0a8ff473dcac5e83a30583490a7d6b4eea5bbb9dd4aa26182b0fa8a231e0c9860405160405180910390a1565b611d07611d7d565b73ffffffffffffffffffffffffffffffffffffffff16611d256112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290613cab565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb90613d3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613dcf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f419190612ef8565b60405180910390a3505050565b6000611f5a8484611a09565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611fd45781811015611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90613e3b565b60405180910390fd5b611fd38484848403611d85565b5b50505050565b601160009054906101000a900460ff16806120275750611ff86112b2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90613ecd565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121075750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561211c57612117838383612a51565b612743565b600b60009054906101000a900460ff16156124b757600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121d45750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561227b57600d5481111561221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221590613f39565b60405180910390fd5b600c548161222b8461118f565b612235919061338a565b1115612276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226d90613fa5565b60405180910390fd5b6124b6565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561231e5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561236d57600d54811115612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90613f39565b60405180910390fd5b6124b5565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156124115750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124b457600d5481111561245b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245290613f39565b60405180910390fd5b600c54816124688461118f565b612472919061338a565b11156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90613fa5565b60405180910390fd5b5b5b5b5b6000819050600b60019054906101000a900460ff16156126ac57600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125725750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156126ab576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156125ea57620186a0600954836125dd9190613fc5565b6125e79190614036565b90505b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561269057620186a0600a548361264e9190613fc5565b6126589190614036565b9050600560149054906101000a900460ff161580156126815750600e5461267e3061118f565b10155b1561268f5761268e61167d565b5b5b808261269c9190614067565b91506126a9853083612a51565b505b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127125750600560149054906101000a900460ff16155b80156127285750600e546127253061118f565b10155b156127365761273561167d565b5b612741848483612a51565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff81111561282b5761282a61409b565b5b6040519080825280602002602001820160405280156128595781602001602082028036833780820191505090505b5090503081600081518110612871576128706140ca565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612918573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061293c9190613aa2565b816001815181106129505761294f6140ca565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129b730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611d85565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a1b9594939291906141f2565b600060405180830381600087803b158015612a3557600080fd5b505af1158015612a49573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab7906142be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2690614350565b60405180910390fd5b612b3a838383612cc7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb7906143e2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612cae9190612ef8565b60405180910390a3612cc1848484612ccc565b50505050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d0182612cd6565b9050919050565b612d1181612cf6565b8114612d1c57600080fd5b50565b600081359050612d2e81612d08565b92915050565b600060208284031215612d4a57612d49612cd1565b5b6000612d5884828501612d1f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d9b578082015181840152602081019050612d80565b60008484015250505050565b6000601f19601f8301169050919050565b6000612dc382612d61565b612dcd8185612d6c565b9350612ddd818560208601612d7d565b612de681612da7565b840191505092915050565b60006020820190508181036000830152612e0b8184612db8565b905092915050565b6000819050919050565b612e2681612e13565b8114612e3157600080fd5b50565b600081359050612e4381612e1d565b92915050565b60008060408385031215612e6057612e5f612cd1565b5b6000612e6e85828601612d1f565b9250506020612e7f85828601612e34565b9150509250929050565b60008115159050919050565b612e9e81612e89565b82525050565b6000602082019050612eb96000830184612e95565b92915050565b612ec881612cf6565b82525050565b6000602082019050612ee36000830184612ebf565b92915050565b612ef281612e13565b82525050565b6000602082019050612f0d6000830184612ee9565b92915050565b600080600060608486031215612f2c57612f2b612cd1565b5b6000612f3a86828701612d1f565b9350506020612f4b86828701612d1f565b9250506040612f5c86828701612e34565b9150509250925092565b600060ff82169050919050565b612f7c81612f66565b82525050565b6000602082019050612f976000830184612f73565b92915050565b600060208284031215612fb357612fb2612cd1565b5b6000612fc184828501612e34565b91505092915050565b60008060408385031215612fe157612fe0612cd1565b5b6000612fef85828601612e34565b925050602061300085828601612e34565b9150509250929050565b61301381612e89565b811461301e57600080fd5b50565b6000813590506130308161300a565b92915050565b6000806040838503121561304d5761304c612cd1565b5b600061305b85828601612d1f565b925050602061306c85828601613021565b9150509250929050565b6000806040838503121561308d5761308c612cd1565b5b600061309b85828601612d1f565b92505060206130ac85828601612d1f565b9150509250929050565b6000819050919050565b60006130db6130d66130d184612cd6565b6130b6565b612cd6565b9050919050565b60006130ed826130c0565b9050919050565b60006130ff826130e2565b9050919050565b61310f816130f4565b82525050565b600060208201905061312a6000830184613106565b92915050565b60008151905061313f81612e1d565b92915050565b60006020828403121561315b5761315a612cd1565b5b600061316984828501613130565b91505092915050565b60006040820190506131876000830185612ebf565b6131946020830184612ee9565b9392505050565b6000815190506131aa8161300a565b92915050565b6000602082840312156131c6576131c5612cd1565b5b60006131d48482850161319b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061322457607f821691505b602082108103613237576132366131dd565b5b50919050565b7f4e6f2045544820746f2077697468647261770000000000000000000000000000600082015250565b6000613273601283612d6c565b915061327e8261323d565b602082019050919050565b600060208201905081810360008301526132a281613266565b9050919050565b600081905092915050565b50565b60006132c46000836132a9565b91506132cf826132b4565b600082019050919050565b60006132e5826132b7565b9150819050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000613325601383612d6c565b9150613330826132ef565b602082019050919050565b6000602082019050818103600083015261335481613318565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061339582612e13565b91506133a083612e13565b92508282019050808211156133b8576133b761335b565b5b92915050565b7f3130303020697320746865206d696e696d756d00000000000000000000000000600082015250565b60006133f4601383612d6c565b91506133ff826133be565b602082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b600060408201905061343f6000830185612ee9565b61344c6020830184612ee9565b9392505050565b7f4275792066656520697320616c726561647920746861742070657263656e746160008201527f6765000000000000000000000000000000000000000000000000000000000000602082015250565b60006134af602283612d6c565b91506134ba82613453565b604082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b7f53656c6c2066656520697320616c726561647920746861742070657263656e7460008201527f6167650000000000000000000000000000000000000000000000000000000000602082015250565b6000613541602383612d6c565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f4d61782077616c6c6574206c657373207468656e20302c352500000000000000600082015250565b60006135ad601983612d6c565b91506135b882613577565b602082019050919050565b600060208201905081810360008301526135dc816135a0565b9050919050565b7f4d61782077616c6c6574206d6f7265207468656e203130302500000000000000600082015250565b6000613619601983612d6c565b9150613624826135e3565b602082019050919050565b600060208201905081810360008301526136488161360c565b9050919050565b7f4e6577206f7065726174696f6e732077616c6c65742063616e206e6f7420626560008201527f2061646472657373203078000000000000000000000000000000000000000000602082015250565b60006136ab602b83612d6c565b91506136b68261364f565b604082019050919050565b600060208201905081810360008301526136da8161369e565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000613717601a83612d6c565b9150613722826136e1565b602082019050919050565b600060208201905081810360008301526137468161370a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137a9602583612d6c565b91506137b48261374d565b604082019050919050565b600060208201905081810360008301526137d88161379c565b9050919050565b7f284e65772920414d4d20616464726573732063616e206e6f742062652061646460008201527f7265737320307800000000000000000000000000000000000000000000000000602082015250565b600061383b602783612d6c565b9150613846826137df565b604082019050919050565b6000602082019050818103600083015261386a8161382e565b9050919050565b7f4d6178207478206c657373207468656e20302c35250000000000000000000000600082015250565b60006138a7601583612d6c565b91506138b282613871565b602082019050919050565b600060208201905081810360008301526138d68161389a565b9050919050565b7f4d6178207478206d6f7265207468656e20313030250000000000000000000000600082015250565b6000613913601583612d6c565b915061391e826138dd565b602082019050919050565b6000602082019050818103600083015261394281613906565b9050919050565b7f546f6b656e2062616c616e63652063616e6e6f74206265203000000000000000600082015250565b600061397f601983612d6c565b915061398a82613949565b602082019050919050565b600060208201905081810360008301526139ae81613972565b9050919050565b7f4554482062616c616e63652063616e6e6f742062652030000000000000000000600082015250565b60006139eb601783612d6c565b91506139f6826139b5565b602082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f5472616e7366657220746f20646576206661696c65642e000000000000000000600082015250565b6000613a57601783612d6c565b9150613a6282613a21565b602082019050919050565b60006020820190508181036000830152613a8681613a4a565b9050919050565b600081519050613a9c81612d08565b92915050565b600060208284031215613ab857613ab7612cd1565b5b6000613ac684828501613a8d565b91505092915050565b7f284e657729206578636c7564656420616464726573732063616e206e6f74206260008201527f6520616464726573732030780000000000000000000000000000000000000000602082015250565b6000613b2b602c83612d6c565b9150613b3682613acf565b604082019050919050565b60006020820190508181036000830152613b5a81613b1e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bbd602683612d6c565b9150613bc882613b61565b604082019050919050565b60006020820190508181036000830152613bec81613bb0565b9050919050565b7f4c696d6974732061726520616c72656164792064697361626c65640000000000600082015250565b6000613c29601b83612d6c565b9150613c3482613bf3565b602082019050919050565b60006020820190508181036000830152613c5881613c1c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c95602083612d6c565b9150613ca082613c5f565b602082019050919050565b60006020820190508181036000830152613cc481613c88565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d27602483612d6c565b9150613d3282613ccb565b604082019050919050565b60006020820190508181036000830152613d5681613d1a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613db9602283612d6c565b9150613dc482613d5d565b604082019050919050565b60006020820190508181036000830152613de881613dac565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613e25601d83612d6c565b9150613e3082613def565b602082019050919050565b60006020820190508181036000830152613e5481613e18565b9050919050565b7f54726164696e672077696c6c20656e61626c65207768656e20414d4d2069732060008201527f7365740000000000000000000000000000000000000000000000000000000000602082015250565b6000613eb7602383612d6c565b9150613ec282613e5b565b604082019050919050565b60006020820190508181036000830152613ee681613eaa565b9050919050565b7f4d6178207472616e73616374696f6e2065786365656465642e00000000000000600082015250565b6000613f23601983612d6c565b9150613f2e82613eed565b602082019050919050565b60006020820190508181036000830152613f5281613f16565b9050919050565b7f4d61782077616c6c65742065786365656465642e000000000000000000000000600082015250565b6000613f8f601483612d6c565b9150613f9a82613f59565b602082019050919050565b60006020820190508181036000830152613fbe81613f82565b9050919050565b6000613fd082612e13565b9150613fdb83612e13565b9250828202613fe981612e13565b9150828204841483151761400057613fff61335b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061404182612e13565b915061404c83612e13565b92508261405c5761405b614007565b5b828204905092915050565b600061407282612e13565b915061407d83612e13565b92508282039050818111156140955761409461335b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061411e614119614114846140f9565b6130b6565b612e13565b9050919050565b61412e81614103565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61416981612cf6565b82525050565b600061417b8383614160565b60208301905092915050565b6000602082019050919050565b600061419f82614134565b6141a9818561413f565b93506141b483614150565b8060005b838110156141e55781516141cc888261416f565b97506141d783614187565b9250506001810190506141b8565b5085935050505092915050565b600060a0820190506142076000830188612ee9565b6142146020830187614125565b81810360408301526142268186614194565b90506142356060830185612ebf565b6142426080830184612ee9565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142a8602583612d6c565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061433a602383612d6c565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006143cc602683612d6c565b91506143d782614370565b604082019050919050565b600060208201905081810360008301526143fb816143bf565b905091905056fea2646970667358221220428c91680851202ae010e034461c6111b32a8f2109274b4754c86883b6f27e6864736f6c634300081700330000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24
Deployed Bytecode
0x60806040526004361061023e5760003560e01c806375f0a8741161012e578063c38ec0b6116100ab578063f196782c1161006f578063f196782c1461085b578063f2fde38b14610884578063f887ea40146108ad578063f8b45b05146108d8578063f928364c1461090357610245565b8063c38ec0b614610774578063c3f70b521461078b578063cf011b26146107b6578063d368371e146107f3578063dd62ed3e1461081e57610245565b8063a457c2d7116100f2578063a457c2d714610691578063a9059cbb146106ce578063a9d3cd8a1461070b578063ab5a188714610734578063ba69ebed1461075d57610245565b806375f0a874146105bc5780638a8c523c146105e75780638da5cb5b146105fe57806390aa2ea61461062957806395d89b411461066657610245565b806339509351116101bc57806355da1ccb1161018057806355da1ccb146104eb5780635d0044ca146105165780635d098b381461053f57806370a0823114610568578063715018a6146105a557610245565b8063395093511461040657806347062402146104435780634ada218b1461046e57806350b9a9f51461049957806352f7c988146104c257610245565b80631cce34ee116102035780631cce34ee1461033157806320800a001461035c57806323b872dd146103735780632b14ca56146103b0578063313ce567146103db57610245565b8062ae3bf81461024a57806306fdde0314610273578063095ea7b31461029e5780630ac249d5146102db57806318160ddd1461030657610245565b3661024557005b600080fd5b34801561025657600080fd5b50610271600480360381019061026c9190612d34565b61091a565b005b34801561027f57600080fd5b50610288610a45565b6040516102959190612df1565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190612e49565b610ad7565b6040516102d29190612ea4565b60405180910390f35b3480156102e757600080fd5b506102f0610afa565b6040516102fd9190612ece565b60405180910390f35b34801561031257600080fd5b5061031b610b20565b6040516103289190612ef8565b60405180910390f35b34801561033d57600080fd5b50610346610b2a565b6040516103539190612ea4565b60405180910390f35b34801561036857600080fd5b50610371610b3d565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612f13565b610c5f565b6040516103a79190612ea4565b60405180910390f35b3480156103bc57600080fd5b506103c5610c8e565b6040516103d29190612ef8565b60405180910390f35b3480156103e757600080fd5b506103f0610c94565b6040516103fd9190612f82565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190612e49565b610c9d565b60405161043a9190612ea4565b60405180910390f35b34801561044f57600080fd5b50610458610cd4565b6040516104659190612ef8565b60405180910390f35b34801561047a57600080fd5b50610483610cda565b6040516104909190612ea4565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612f9d565b610ced565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190612fca565b610d8c565b005b3480156104f757600080fd5b50610500610ec4565b60405161050d9190612ea4565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190612f9d565b610ed7565b005b34801561054b57600080fd5b5061056660048036038101906105619190612d34565b610fcb565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612d34565b61118f565b60405161059c9190612ef8565b60405180910390f35b3480156105b157600080fd5b506105ba6111d7565b005b3480156105c857600080fd5b506105d16111eb565b6040516105de9190612ece565b60405180910390f35b3480156105f357600080fd5b506105fc611211565b005b34801561060a57600080fd5b506106136112b2565b6040516106209190612ece565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190612d34565b6112dc565b60405161065d9190612ea4565b60405180910390f35b34801561067257600080fd5b5061067b6112fc565b6040516106889190612df1565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612e49565b61138e565b6040516106c59190612ea4565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612e49565b611405565b6040516107029190612ea4565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d9190613036565b611428565b005b34801561074057600080fd5b5061075b60048036038101906107569190612f9d565b611589565b005b34801561076957600080fd5b5061077261167d565b005b34801561078057600080fd5b50610789611859565b005b34801561079757600080fd5b506107a06119dd565b6040516107ad9190612ef8565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190612d34565b6119e3565b6040516107ea9190612ea4565b60405180910390f35b3480156107ff57600080fd5b50610808611a03565b6040516108159190612ef8565b60405180910390f35b34801561082a57600080fd5b5061084560048036038101906108409190613076565b611a09565b6040516108529190612ef8565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d9190613036565b611a90565b005b34801561089057600080fd5b506108ab60048036038101906108a69190612d34565b611bb0565b005b3480156108b957600080fd5b506108c2611c33565b6040516108cf9190613115565b60405180910390f35b3480156108e457600080fd5b506108ed611c59565b6040516108fa9190612ef8565b60405180910390f35b34801561090f57600080fd5b50610918611c5f565b005b610922611cff565b60008190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161099f9190612ece565b602060405180830381865afa1580156109bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e09190613145565b6040518363ffffffff1660e01b81526004016109fd929190613172565b6020604051808303816000875af1158015610a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4091906131b0565b505050565b606060038054610a549061320c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a809061320c565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b600080610ae2611d7d565b9050610aef818585611d85565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600b60009054906101000a900460ff1681565b610b45611cff565b600047905060008111610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490613289565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610bd5906132da565b60006040518083038185875af1925050503d8060008114610c12576040519150601f19603f3d011682016040523d82523d6000602084013e610c17565b606091505b5050905080610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061333b565b60405180910390fd5b5050565b600080610c6a611d7d565b9050610c77858285611f4e565b610c82858585611fda565b60019150509392505050565b600a5481565b60006012905090565b600080610ca8611d7d565b9050610cc9818585610cba8589611a09565b610cc4919061338a565b611d85565b600191505092915050565b60095481565b601160009054906101000a900460ff1681565b610cf5611cff565b683635c9adc5dea00000811015610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d389061340a565b60405180910390fd5b6000600e54905081600e819055507f046078a3b350ab7ef8b49720ee84ad777c5172459d33cff8e353c3b9b04757ea8183604051610d8092919061342a565b60405180910390a15050565b610d94611cff565b6009548203610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf906134c5565b60405180910390fd5b600a548103610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390613557565b60405180910390fd5b8160098190555080600a81905550600082148015610e3a5750600081145b15610e87576000600b60016101000a81548160ff0219169083151502179055507f36c13ba18a0a22fbc6fa29968c7ddbcabe3c8096339dc284da5e79ae81dcbb1360405160405180910390a15b7f74dbbbe280ef27b79a8a0c449d5ae2ba7a31849103241d0f98df70bbc9d03e378282604051610eb892919061342a565b60405180910390a15050565b600b60019054906101000a900460ff1681565b610edf611cff565b6c3f1bdf10116048a59340000000811015610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f26906135c3565b60405180910390fd5b6d314dc6448d9338c15b0a00000000811115610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f779061362f565b60405180910390fd5b6000600c54905081600c819055507f35f2577625659032d553fbc001320996b756a5dae410a0b74e931934e020464b8183604051610fbf92919061342a565b60405180910390a15050565b610fd3611cff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611039906136c1565b60405180910390fd5b600060106000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507feda80b7b41c9a2fed990518087869468a994f28f0f6fc9a0c011b03612c5cca4816040516111849190612ece565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111df611cff565b6111e96000612748565b565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611219611cff565b601160009054906101000a900460ff1615611269576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112609061372d565b60405180910390fd5b6001601160006101000a81548160ff0219169083151502179055507f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c760405160405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528060005260406000206000915054906101000a900460ff1681565b60606004805461130b9061320c565b80601f01602080910402602001604051908101604052809291908181526020018280546113379061320c565b80156113845780601f1061135957610100808354040283529160200191611384565b820191906000526020600020905b81548152906001019060200180831161136757829003601f168201915b5050505050905090565b600080611399611d7d565b905060006113a78286611a09565b9050838110156113ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e3906137bf565b60405180910390fd5b6113f98286868403611d85565b60019250505092915050565b600080611410611d7d565b905061141d818585611fda565b600191505092915050565b611430611cff565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149690613851565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f52f7750de642e169ff687a199cc8453a96d938130a797c0a11ea42a4d1659d878260405161157d9190612ea4565b60405180910390a25050565b611591611cff565b6c3f1bdf10116048a593400000008110156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906138bd565b60405180910390fd5b6d314dc6448d9338c15b0a00000000811115611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613929565b60405180910390fd5b6000600d54905081600d819055507f35f2577625659032d553fbc001320996b756a5dae410a0b74e931934e020464b818360405161167192919061342a565b60405180910390a15050565b6001600560146101000a81548160ff02191690831515021790555060006116a33061118f565b9050600081036116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90613995565b60405180910390fd5b60008190506116f68161280e565b60004790506000810361173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590613a01565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611786906132da565b60006040518083038185875af1925050503d80600081146117c3576040519150601f19603f3d011682016040523d82523d6000602084013e6117c8565b606091505b505090508061180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390613a6d565b60405180910390fd5b7f073f67f6b2a495a773c8f33582c762d9c1a89fec310d1e2ce2808b4ff65d829060405160405180910390a1505050506000600560146101000a81548160ff021916908315150217905550565b611861611cff565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f49190613aa2565b90508073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161194b9190612ece565b602060405180830381865afa158015611968573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198c9190613145565b6040518263ffffffff1660e01b81526004016119a89190612ef8565b600060405180830381600087803b1580156119c257600080fd5b505af11580156119d6573d6000803e3d6000fd5b5050505050565b600d5481565b60106020528060005260406000206000915054906101000a900460ff1681565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611a98611cff565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90613b41565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f33e99dbd8a2fdf021abaf8531c98838a37f8e85fd3cbf0e897047074f9c4ecf482604051611ba49190612ea4565b60405180910390a25050565b611bb8611cff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90613bd3565b60405180910390fd5b611c3081612748565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b611c67611cff565b600b60009054906101000a900460ff16611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90613c3f565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507fd0a8ff473dcac5e83a30583490a7d6b4eea5bbb9dd4aa26182b0fa8a231e0c9860405160405180910390a1565b611d07611d7d565b73ffffffffffffffffffffffffffffffffffffffff16611d256112b2565b73ffffffffffffffffffffffffffffffffffffffff1614611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290613cab565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb90613d3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613dcf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f419190612ef8565b60405180910390a3505050565b6000611f5a8484611a09565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611fd45781811015611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90613e3b565b60405180910390fd5b611fd38484848403611d85565b5b50505050565b601160009054906101000a900460ff16806120275750611ff86112b2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90613ecd565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121075750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561211c57612117838383612a51565b612743565b600b60009054906101000a900460ff16156124b757600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121d45750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561227b57600d5481111561221e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221590613f39565b60405180910390fd5b600c548161222b8461118f565b612235919061338a565b1115612276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226d90613fa5565b60405180910390fd5b6124b6565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561231e5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561236d57600d54811115612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90613f39565b60405180910390fd5b6124b5565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156124115750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124b457600d5481111561245b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245290613f39565b60405180910390fd5b600c54816124688461118f565b612472919061338a565b11156124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90613fa5565b60405180910390fd5b5b5b5b5b6000819050600b60019054906101000a900460ff16156126ac57600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125725750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156126ab576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156125ea57620186a0600954836125dd9190613fc5565b6125e79190614036565b90505b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561269057620186a0600a548361264e9190613fc5565b6126589190614036565b9050600560149054906101000a900460ff161580156126815750600e5461267e3061118f565b10155b1561268f5761268e61167d565b5b5b808261269c9190614067565b91506126a9853083612a51565b505b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127125750600560149054906101000a900460ff16155b80156127285750600e546127253061118f565b10155b156127365761273561167d565b5b612741848483612a51565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff81111561282b5761282a61409b565b5b6040519080825280602002602001820160405280156128595781602001602082028036833780820191505090505b5090503081600081518110612871576128706140ca565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612918573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061293c9190613aa2565b816001815181106129505761294f6140ca565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129b730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611d85565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a1b9594939291906141f2565b600060405180830381600087803b158015612a3557600080fd5b505af1158015612a49573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab7906142be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2690614350565b60405180910390fd5b612b3a838383612cc7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb7906143e2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612cae9190612ef8565b60405180910390a3612cc1848484612ccc565b50505050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d0182612cd6565b9050919050565b612d1181612cf6565b8114612d1c57600080fd5b50565b600081359050612d2e81612d08565b92915050565b600060208284031215612d4a57612d49612cd1565b5b6000612d5884828501612d1f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d9b578082015181840152602081019050612d80565b60008484015250505050565b6000601f19601f8301169050919050565b6000612dc382612d61565b612dcd8185612d6c565b9350612ddd818560208601612d7d565b612de681612da7565b840191505092915050565b60006020820190508181036000830152612e0b8184612db8565b905092915050565b6000819050919050565b612e2681612e13565b8114612e3157600080fd5b50565b600081359050612e4381612e1d565b92915050565b60008060408385031215612e6057612e5f612cd1565b5b6000612e6e85828601612d1f565b9250506020612e7f85828601612e34565b9150509250929050565b60008115159050919050565b612e9e81612e89565b82525050565b6000602082019050612eb96000830184612e95565b92915050565b612ec881612cf6565b82525050565b6000602082019050612ee36000830184612ebf565b92915050565b612ef281612e13565b82525050565b6000602082019050612f0d6000830184612ee9565b92915050565b600080600060608486031215612f2c57612f2b612cd1565b5b6000612f3a86828701612d1f565b9350506020612f4b86828701612d1f565b9250506040612f5c86828701612e34565b9150509250925092565b600060ff82169050919050565b612f7c81612f66565b82525050565b6000602082019050612f976000830184612f73565b92915050565b600060208284031215612fb357612fb2612cd1565b5b6000612fc184828501612e34565b91505092915050565b60008060408385031215612fe157612fe0612cd1565b5b6000612fef85828601612e34565b925050602061300085828601612e34565b9150509250929050565b61301381612e89565b811461301e57600080fd5b50565b6000813590506130308161300a565b92915050565b6000806040838503121561304d5761304c612cd1565b5b600061305b85828601612d1f565b925050602061306c85828601613021565b9150509250929050565b6000806040838503121561308d5761308c612cd1565b5b600061309b85828601612d1f565b92505060206130ac85828601612d1f565b9150509250929050565b6000819050919050565b60006130db6130d66130d184612cd6565b6130b6565b612cd6565b9050919050565b60006130ed826130c0565b9050919050565b60006130ff826130e2565b9050919050565b61310f816130f4565b82525050565b600060208201905061312a6000830184613106565b92915050565b60008151905061313f81612e1d565b92915050565b60006020828403121561315b5761315a612cd1565b5b600061316984828501613130565b91505092915050565b60006040820190506131876000830185612ebf565b6131946020830184612ee9565b9392505050565b6000815190506131aa8161300a565b92915050565b6000602082840312156131c6576131c5612cd1565b5b60006131d48482850161319b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061322457607f821691505b602082108103613237576132366131dd565b5b50919050565b7f4e6f2045544820746f2077697468647261770000000000000000000000000000600082015250565b6000613273601283612d6c565b915061327e8261323d565b602082019050919050565b600060208201905081810360008301526132a281613266565b9050919050565b600081905092915050565b50565b60006132c46000836132a9565b91506132cf826132b4565b600082019050919050565b60006132e5826132b7565b9150819050919050565b7f455448207472616e73666572206661696c656400000000000000000000000000600082015250565b6000613325601383612d6c565b9150613330826132ef565b602082019050919050565b6000602082019050818103600083015261335481613318565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061339582612e13565b91506133a083612e13565b92508282019050808211156133b8576133b761335b565b5b92915050565b7f3130303020697320746865206d696e696d756d00000000000000000000000000600082015250565b60006133f4601383612d6c565b91506133ff826133be565b602082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b600060408201905061343f6000830185612ee9565b61344c6020830184612ee9565b9392505050565b7f4275792066656520697320616c726561647920746861742070657263656e746160008201527f6765000000000000000000000000000000000000000000000000000000000000602082015250565b60006134af602283612d6c565b91506134ba82613453565b604082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b7f53656c6c2066656520697320616c726561647920746861742070657263656e7460008201527f6167650000000000000000000000000000000000000000000000000000000000602082015250565b6000613541602383612d6c565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f4d61782077616c6c6574206c657373207468656e20302c352500000000000000600082015250565b60006135ad601983612d6c565b91506135b882613577565b602082019050919050565b600060208201905081810360008301526135dc816135a0565b9050919050565b7f4d61782077616c6c6574206d6f7265207468656e203130302500000000000000600082015250565b6000613619601983612d6c565b9150613624826135e3565b602082019050919050565b600060208201905081810360008301526136488161360c565b9050919050565b7f4e6577206f7065726174696f6e732077616c6c65742063616e206e6f7420626560008201527f2061646472657373203078000000000000000000000000000000000000000000602082015250565b60006136ab602b83612d6c565b91506136b68261364f565b604082019050919050565b600060208201905081810360008301526136da8161369e565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000613717601a83612d6c565b9150613722826136e1565b602082019050919050565b600060208201905081810360008301526137468161370a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137a9602583612d6c565b91506137b48261374d565b604082019050919050565b600060208201905081810360008301526137d88161379c565b9050919050565b7f284e65772920414d4d20616464726573732063616e206e6f742062652061646460008201527f7265737320307800000000000000000000000000000000000000000000000000602082015250565b600061383b602783612d6c565b9150613846826137df565b604082019050919050565b6000602082019050818103600083015261386a8161382e565b9050919050565b7f4d6178207478206c657373207468656e20302c35250000000000000000000000600082015250565b60006138a7601583612d6c565b91506138b282613871565b602082019050919050565b600060208201905081810360008301526138d68161389a565b9050919050565b7f4d6178207478206d6f7265207468656e20313030250000000000000000000000600082015250565b6000613913601583612d6c565b915061391e826138dd565b602082019050919050565b6000602082019050818103600083015261394281613906565b9050919050565b7f546f6b656e2062616c616e63652063616e6e6f74206265203000000000000000600082015250565b600061397f601983612d6c565b915061398a82613949565b602082019050919050565b600060208201905081810360008301526139ae81613972565b9050919050565b7f4554482062616c616e63652063616e6e6f742062652030000000000000000000600082015250565b60006139eb601783612d6c565b91506139f6826139b5565b602082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f5472616e7366657220746f20646576206661696c65642e000000000000000000600082015250565b6000613a57601783612d6c565b9150613a6282613a21565b602082019050919050565b60006020820190508181036000830152613a8681613a4a565b9050919050565b600081519050613a9c81612d08565b92915050565b600060208284031215613ab857613ab7612cd1565b5b6000613ac684828501613a8d565b91505092915050565b7f284e657729206578636c7564656420616464726573732063616e206e6f74206260008201527f6520616464726573732030780000000000000000000000000000000000000000602082015250565b6000613b2b602c83612d6c565b9150613b3682613acf565b604082019050919050565b60006020820190508181036000830152613b5a81613b1e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bbd602683612d6c565b9150613bc882613b61565b604082019050919050565b60006020820190508181036000830152613bec81613bb0565b9050919050565b7f4c696d6974732061726520616c72656164792064697361626c65640000000000600082015250565b6000613c29601b83612d6c565b9150613c3482613bf3565b602082019050919050565b60006020820190508181036000830152613c5881613c1c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c95602083612d6c565b9150613ca082613c5f565b602082019050919050565b60006020820190508181036000830152613cc481613c88565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d27602483612d6c565b9150613d3282613ccb565b604082019050919050565b60006020820190508181036000830152613d5681613d1a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613db9602283612d6c565b9150613dc482613d5d565b604082019050919050565b60006020820190508181036000830152613de881613dac565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613e25601d83612d6c565b9150613e3082613def565b602082019050919050565b60006020820190508181036000830152613e5481613e18565b9050919050565b7f54726164696e672077696c6c20656e61626c65207768656e20414d4d2069732060008201527f7365740000000000000000000000000000000000000000000000000000000000602082015250565b6000613eb7602383612d6c565b9150613ec282613e5b565b604082019050919050565b60006020820190508181036000830152613ee681613eaa565b9050919050565b7f4d6178207472616e73616374696f6e2065786365656465642e00000000000000600082015250565b6000613f23601983612d6c565b9150613f2e82613eed565b602082019050919050565b60006020820190508181036000830152613f5281613f16565b9050919050565b7f4d61782077616c6c65742065786365656465642e000000000000000000000000600082015250565b6000613f8f601483612d6c565b9150613f9a82613f59565b602082019050919050565b60006020820190508181036000830152613fbe81613f82565b9050919050565b6000613fd082612e13565b9150613fdb83612e13565b9250828202613fe981612e13565b9150828204841483151761400057613fff61335b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061404182612e13565b915061404c83612e13565b92508261405c5761405b614007565b5b828204905092915050565b600061407282612e13565b915061407d83612e13565b92508282039050818111156140955761409461335b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061411e614119614114846140f9565b6130b6565b612e13565b9050919050565b61412e81614103565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61416981612cf6565b82525050565b600061417b8383614160565b60208301905092915050565b6000602082019050919050565b600061419f82614134565b6141a9818561413f565b93506141b483614150565b8060005b838110156141e55781516141cc888261416f565b97506141d783614187565b9250506001810190506141b8565b5085935050505092915050565b600060a0820190506142076000830188612ee9565b6142146020830187614125565b81810360408301526142268186614194565b90506142356060830185612ebf565b6142426080830184612ee9565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142a8602583612d6c565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061433a602383612d6c565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006143cc602683612d6c565b91506143d782614370565b604082019050919050565b600060208201905081810360008301526143fb816143bf565b905091905056fea2646970667358221220428c91680851202ae010e034461c6111b32a8f2109274b4754c86883b6f27e6864736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24
-----Decoded View---------------
Arg [0] : routerAddress (address): 0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24
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.
Add Token to MetaMask (Web3)