ERC-20
Overview
Max Total Supply
1,000,000,000 JEET
Holders
323
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Jeet
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED /* ------------------------------------- ░░░░░██╗███████╗███████╗████████╗ ░░░░░██║██╔════╝██╔════╝╚══██╔══╝ ░░░░░██║█████╗░░█████╗░░░░░██║░░░ ██╗░░██║██╔══╝░░██╔══╝░░░░░██║░░░ ╚█████╔╝███████╗███████╗░░░██║░░░ ░╚════╝░╚══════╝╚══════╝░░░╚═╝░░░ ------------------------------------- Twitter - https://x.com/jeetcoinpack Telegram - https://t.me/JeetCoinPack Website - https://jeetcoin.lol/ */ pragma solidity 0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "./SafeMath.sol"; contract Jeet is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address private marketingWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 private launchedAt; uint256 private launchedTime; uint256 public deadBlocks; uint256 public buyTotalFees; uint256 private buyMarketingFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; mapping(address => bool) private _isExcludedFromFees; mapping(uint256 => uint256) private swapInBlock; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Jeet Pack", "JEET") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 1_000_000_000 * 1e18; maxWallet = 1_000_000_000 * 1e18; swapTokensAtAmount = maxTransactionAmount / 2000; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _mint(msg.sender, totalSupply); } receive() external payable {} function enableTrading(uint256 _deadBlocks) external onlyOwner { deadBlocks = _deadBlocks; tradingActive = true; swapEnabled = true; launchedAt = block.number; launchedTime = block.timestamp; } function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function whitelistContract(address _whitelist,bool isWL) public onlyOwner { _isExcludedMaxTransactionAmount[_whitelist] = isWL; _isExcludedFromFees[_whitelist] = isWL; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function manualswap(uint256 amount) external { require(_msgSender() == marketingWallet); require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount"); swapTokensForEth(amount); } function manualsend() external { bool success; (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateBuyFees( uint256 _marketingFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyTotalFees = buyMarketingFee; require(buyTotalFees <= 10, "Must keep fees at 5% or less"); } function updateSellFees( uint256 _marketingFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellTotalFees = sellMarketingFee; require(sellTotalFees <= 10, "Must keep fees at 5% or less"); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function airdrop(address[] calldata addresses, uint256[] calldata amounts) external { require(addresses.length > 0 && amounts.length == addresses.length); address from = msg.sender; for (uint i = 0; i < addresses.length; i++) { _transfer(from, addresses[i], amounts[i] * (10**18)); } } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } uint256 blockNum = block.number; if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if ((launchedAt + deadBlocks) >= blockNum) { buyMarketingFee = 70; buyTotalFees = buyMarketingFee; sellMarketingFee = 70; sellTotalFees = sellMarketingFee; } else if(blockNum > (launchedAt + deadBlocks) && blockNum <= launchedAt + 20) { maxTransactionAmount = 20_000_000 * 1e18; maxWallet = 20_000_000 * 1e18; buyMarketingFee = 30; buyTotalFees = buyMarketingFee; sellMarketingFee = 30; sellTotalFees = sellMarketingFee; } else { maxTransactionAmount = 20_000_000 * 1e18; maxWallet = 20_000_000 * 1e18; buyMarketingFee = 2; buyTotalFees = buyMarketingFee; sellMarketingFee = 2; sellTotalFees = sellMarketingFee; } if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && (swapInBlock[blockNum] < 2) && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); ++swapInBlock[blockNum]; swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); bool success; if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } uint256 amountToSwapForETH = contractBalance; swapTokensForEth(amountToSwapForETH); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function decimals() public view virtual override returns (uint8) { return 18; } }
// 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 v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
{ "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
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"},{"internalType":"bool","name":"isWL","type":"bool"}],"name":"whitelistContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600a5f6101000a81548160ff0219169083151502179055505f600a60016101000a81548160ff0219169083151502179055505f600a60026101000a81548160ff0219169083151502179055503480156200005e575f80fd5b506040518060400160405280600981526020017f4a656574205061636b00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4a454554000000000000000000000000000000000000000000000000000000008152508160039081620000dc919062000b3b565b508060049081620000ee919062000b3b565b50505062000111620001056200042760201b60201c565b6200042e60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506200013c816001620004f160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001e0919062000c84565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000246573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026c919062000c84565b6040518363ffffffff1660e01b81526004016200028b92919062000cc5565b6020604051808303815f875af1158015620002a8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ce919062000c84565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200031660a0516001620004f160201b60201c565b6200032b60a05160016200055960201b60201c565b5f6b033b2e3c9fd0803ce800000090506b033b2e3c9fd0803ce80000006007819055506b033b2e3c9fd0803ce80000006009819055506107d060075462000373919062000d4a565b6008819055506200039b6200038d620005f760201b60201c565b60016200061f60201b60201c565b620003ae3060016200061f60201b60201c565b620003c361dead60016200061f60201b60201c565b620003e5620003d7620005f760201b60201c565b6001620004f160201b60201c565b620003f8306001620004f160201b60201c565b6200040d61dead6001620004f160201b60201c565b6200041f3382620006d760201b60201c565b505062000f0a565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005016200083c60201b60201c565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200062f6200083c60201b60201c565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620006cb919062000d9d565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000748576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073f9062000e16565b60405180910390fd5b6200075b5f8383620008cd60201b60201c565b8060025f8282546200076e919062000e36565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200081d919062000e81565b60405180910390a3620008385f8383620008d260201b60201c565b5050565b6200084c6200042760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000872620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c29062000eea565b60405180910390fd5b565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200095357607f821691505b6020821081036200096957620009686200090e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000990565b620009d9868362000990565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000a2362000a1d62000a1784620009f1565b620009fa565b620009f1565b9050919050565b5f819050919050565b62000a3e8362000a03565b62000a5662000a4d8262000a2a565b8484546200099c565b825550505050565b5f90565b62000a6c62000a5e565b62000a7981848462000a33565b505050565b5b8181101562000aa05762000a945f8262000a62565b60018101905062000a7f565b5050565b601f82111562000aef5762000ab9816200096f565b62000ac48462000981565b8101602085101562000ad4578190505b62000aec62000ae38562000981565b83018262000a7e565b50505b505050565b5f82821c905092915050565b5f62000b115f198460080262000af4565b1980831691505092915050565b5f62000b2b838362000b00565b9150826002028217905092915050565b62000b4682620008d7565b67ffffffffffffffff81111562000b625762000b61620008e1565b5b62000b6e82546200093b565b62000b7b82828562000aa4565b5f60209050601f83116001811462000bb1575f841562000b9c578287015190505b62000ba8858262000b1e565b86555062000c17565b601f19841662000bc1866200096f565b5f5b8281101562000bea5784890151825560018201915060208501945060208101905062000bc3565b8683101562000c0a578489015162000c06601f89168262000b00565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000c4e8262000c23565b9050919050565b62000c608162000c42565b811462000c6b575f80fd5b50565b5f8151905062000c7e8162000c55565b92915050565b5f6020828403121562000c9c5762000c9b62000c1f565b5b5f62000cab8482850162000c6e565b91505092915050565b62000cbf8162000c42565b82525050565b5f60408201905062000cda5f83018562000cb4565b62000ce9602083018462000cb4565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000d5682620009f1565b915062000d6383620009f1565b92508262000d765762000d7562000cf0565b5b828204905092915050565b5f8115159050919050565b62000d978162000d81565b82525050565b5f60208201905062000db25f83018462000d8c565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000dfe601f8362000db8565b915062000e0b8262000dc8565b602082019050919050565b5f6020820190508181035f83015262000e2f8162000df0565b9050919050565b5f62000e4282620009f1565b915062000e4f83620009f1565b925082820190508082111562000e6a5762000e6962000d1d565b5b92915050565b62000e7b81620009f1565b82525050565b5f60208201905062000e965f83018462000e70565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000ed260208362000db8565b915062000edf8262000e9c565b602082019050919050565b5f6020820190508181035f83015262000f038162000ec4565b9050919050565b60805160a051613ff462000f485f395f8181610c5d015261112701525f8181610b230152818161268c0152818161276b01526127920152613ff45ff3fe608060405260043610610275575f3560e01c8063881dce601161014e578063bbc0c742116100c0578063dd62ed3e11610079578063dd62ed3e14610948578063e2f4560514610984578063eba4c333146109ae578063f2fde38b146109d6578063f8b45b05146109fe578063fabb0b4f14610a285761027c565b8063bbc0c7421461083e578063c024666814610868578063c18bc19514610890578063c8c8ebe4146108b8578063d257b34f146108e2578063d85ba0631461091e5761027c565b80639a7a23d6116101125780639a7a23d614610712578063a457c2d71461073a578063a672990c14610776578063a9059cbb1461079e578063aacebbe3146107da578063b62496f5146108025761027c565b8063881dce60146106445780638da5cb5b1461066c5780639213691314610696578063924de9b7146106c057806395d89b41146106e85761027c565b80634a62bb65116101e757806370a08231116101ab57806370a0823114610550578063715018a61461058c57806371fc4688146105a2578063751039fc146105ca5780637571336a146105f457806382aa7c681461061c5761027c565b80634a62bb651461049457806367243482146104be5780636a486a8e146104e65780636ddd1713146105105780636fc3eaec1461053a5761027c565b8063203e727e11610239578063203e727e1461037657806323b872dd1461039e57806327c8f835146103da578063313ce56714610404578063395093511461042e57806349bd5a5e1461046a5761027c565b806306fdde0314610280578063095ea7b3146102aa57806310d5de53146102e65780631694505e1461032257806318160ddd1461034c5761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b50610294610a52565b6040516102a19190612cca565b60405180910390f35b3480156102b5575f80fd5b506102d060048036038101906102cb9190612d7f565b610ae2565b6040516102dd9190612dd7565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190612df0565b610b04565b6040516103199190612dd7565b60405180910390f35b34801561032d575f80fd5b50610336610b21565b6040516103439190612e76565b60405180910390f35b348015610357575f80fd5b50610360610b45565b60405161036d9190612e9e565b60405180910390f35b348015610381575f80fd5b5061039c60048036038101906103979190612eb7565b610b4e565b005b3480156103a9575f80fd5b506103c460048036038101906103bf9190612ee2565b610be9565b6040516103d19190612dd7565b60405180910390f35b3480156103e5575f80fd5b506103ee610c17565b6040516103fb9190612f41565b60405180910390f35b34801561040f575f80fd5b50610418610c1d565b6040516104259190612f75565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f9190612d7f565b610c25565b6040516104619190612dd7565b60405180910390f35b348015610475575f80fd5b5061047e610c5b565b60405161048b9190612f41565b60405180910390f35b34801561049f575f80fd5b506104a8610c7f565b6040516104b59190612dd7565b60405180910390f35b3480156104c9575f80fd5b506104e460048036038101906104df9190613044565b610c91565b005b3480156104f1575f80fd5b506104fa610d3a565b6040516105079190612e9e565b60405180910390f35b34801561051b575f80fd5b50610524610d40565b6040516105319190612dd7565b60405180910390f35b348015610545575f80fd5b5061054e610d53565b005b34801561055b575f80fd5b5061057660048036038101906105719190612df0565b610de1565b6040516105839190612e9e565b60405180910390f35b348015610597575f80fd5b506105a0610e26565b005b3480156105ad575f80fd5b506105c860048036038101906105c39190612eb7565b610e39565b005b3480156105d5575f80fd5b506105de610e9a565b6040516105eb9190612dd7565b60405180910390f35b3480156105ff575f80fd5b5061061a600480360381019061061591906130ec565b610ec3565b005b348015610627575f80fd5b50610642600480360381019061063d9190612eb7565b610f23565b005b34801561064f575f80fd5b5061066a60048036038101906106659190612eb7565b610f79565b005b348015610677575f80fd5b5061068061103a565b60405161068d9190612f41565b60405180910390f35b3480156106a1575f80fd5b506106aa611062565b6040516106b79190612e9e565b60405180910390f35b3480156106cb575f80fd5b506106e660048036038101906106e1919061312a565b611068565b005b3480156106f3575f80fd5b506106fc61108d565b6040516107099190612cca565b60405180910390f35b34801561071d575f80fd5b50610738600480360381019061073391906130ec565b61111d565b005b348015610745575f80fd5b50610760600480360381019061075b9190612d7f565b6111c1565b60405161076d9190612dd7565b60405180910390f35b348015610781575f80fd5b5061079c600480360381019061079791906130ec565b611236565b005b3480156107a9575f80fd5b506107c460048036038101906107bf9190612d7f565b6112ea565b6040516107d19190612dd7565b60405180910390f35b3480156107e5575f80fd5b5061080060048036038101906107fb9190612df0565b61130c565b005b34801561080d575f80fd5b5061082860048036038101906108239190612df0565b6113d2565b6040516108359190612dd7565b60405180910390f35b348015610849575f80fd5b506108526113ef565b60405161085f9190612dd7565b60405180910390f35b348015610873575f80fd5b5061088e600480360381019061088991906130ec565b611402565b005b34801561089b575f80fd5b506108b660048036038101906108b19190612eb7565b6114b0565b005b3480156108c3575f80fd5b506108cc61154b565b6040516108d99190612e9e565b60405180910390f35b3480156108ed575f80fd5b5061090860048036038101906109039190612eb7565b611551565b6040516109159190612dd7565b60405180910390f35b348015610929575f80fd5b50610932611631565b60405161093f9190612e9e565b60405180910390f35b348015610953575f80fd5b5061096e60048036038101906109699190613155565b611637565b60405161097b9190612e9e565b60405180910390f35b34801561098f575f80fd5b506109986116b9565b6040516109a59190612e9e565b60405180910390f35b3480156109b9575f80fd5b506109d460048036038101906109cf9190612eb7565b6116bf565b005b3480156109e1575f80fd5b506109fc60048036038101906109f79190612df0565b611720565b005b348015610a09575f80fd5b50610a126117a2565b604051610a1f9190612e9e565b60405180910390f35b348015610a33575f80fd5b50610a3c6117a8565b604051610a499190612e9e565b60405180910390f35b606060038054610a61906131c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d906131c0565b8015610ad85780601f10610aaf57610100808354040283529160200191610ad8565b820191905f5260205f20905b815481529060010190602001808311610abb57829003601f168201915b5050505050905090565b5f80610aec6117ae565b9050610af98185856117b5565b600191505092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610b56611978565b670de0b6b3a76400006103e86001610b6c610b45565b610b76919061321d565b610b80919061328b565b610b8a919061328b565b811015610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc39061332b565b60405180910390fd5b670de0b6b3a764000081610be0919061321d565b60078190555050565b5f80610bf36117ae565b9050610c008582856119f6565b610c0b858585611a81565b60019150509392505050565b61dead81565b5f6012905090565b5f80610c2f6117ae565b9050610c50818585610c418589611637565b610c4b9190613349565b6117b5565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5f9054906101000a900460ff1681565b5f84849050118015610ca857508383905082829050145b610cb0575f80fd5b5f3390505f5b85859050811015610d3257610d1f82878784818110610cd857610cd761337c565b5b9050602002016020810190610ced9190612df0565b670de0b6b3a7640000878786818110610d0957610d0861337c565b5b90506020020135610d1a919061321d565b611a81565b8080610d2a906133a9565b915050610cb6565b505050505050565b60105481565b600a60029054906101000a900460ff1681565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610d999061341d565b5f6040518083038185875af1925050503d805f8114610dd3576040519150601f19603f3d011682016040523d82523d5f602084013e610dd8565b606091505b50508091505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e2e611978565b610e375f61252c565b565b610e41611978565b80600f81905550600f54600e81905550600a600e541115610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e9061347b565b60405180910390fd5b50565b5f610ea3611978565b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b610ecb611978565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610f2b611978565b80600d819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff02191690831515021790555043600b8190555042600c8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610fb96117ae565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8575f80fd5b610fe130610de1565b8111158015610fef57505f81115b61102e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611025906134e3565b60405180910390fd5b611037816125ef565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b611070611978565b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461109c906131c0565b80601f01602080910402602001604051908101604052809291908181526020018280546110c8906131c0565b80156111135780601f106110ea57610100808354040283529160200191611113565b820191905f5260205f20905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b611125611978565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613571565b60405180910390fd5b6111bd8282612822565b5050565b5f806111cb6117ae565b90505f6111d88286611637565b90508381101561121d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611214906135ff565b60405180910390fd5b61122a82868684036117b5565b60019250505092915050565b61123e611978565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806112f46117ae565b9050611301818585611a81565b600191505092915050565b611314611978565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6015602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61140a611978565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114a49190612dd7565b60405180910390a25050565b6114b8611978565b670de0b6b3a76400006103e860056114ce610b45565b6114d8919061321d565b6114e2919061328b565b6114ec919061328b565b81101561152e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115259061368d565b60405180910390fd5b670de0b6b3a764000081611542919061321d565b60098190555050565b60075481565b5f61155a611978565b620186a06001611568610b45565b611572919061321d565b61157c919061328b565b8210156115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b59061371b565b60405180910390fd5b6103e860056115cb610b45565b6115d5919061321d565b6115df919061328b565b821115611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906137a9565b60405180910390fd5b8160088190555060019050919050565b600e5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6116c7611978565b80601181905550601154601081905550600a601054111561171d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117149061347b565b60405180910390fd5b50565b611728611978565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d90613837565b60405180910390fd5b61179f8161252c565b50565b60095481565b600d5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906138c5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890613953565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161196b9190612e9e565b60405180910390a3505050565b6119806117ae565b73ffffffffffffffffffffffffffffffffffffffff1661199e61103a565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906139bb565b60405180910390fd5b565b5f611a018484611637565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a7b5781811015611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490613a23565b60405180910390fd5b611a7a84848484036117b5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690613ab1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5490613b3f565b60405180910390fd5b5f8103611b7457611b6f83835f6128c0565b612527565b5f439050600a5f9054906101000a900460ff161561215d57611b9461103a565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611c025750611bd261103a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c3a57505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c74575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c8d5750600560149054906101000a900460ff16155b1561215c5780600d54600b54611ca39190613349565b10611ccf576046600f81905550600f54600e819055506046601181905550601154601081905550611d93565b600d54600b54611cdf9190613349565b81118015611cfb57506014600b54611cf79190613349565b8111155b15611d4b576a108b2a2c280290940000006007819055506a108b2a2c28029094000000600981905550601e600f81905550600f54600e81905550601e601181905550601154601081905550611d92565b6a108b2a2c280290940000006007819055506a108b2a2c280290940000006009819055506002600f81905550600f54600e8190555060026011819055506011546010819055505b5b600a60019054906101000a900460ff16611e825760125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611e42575060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890613ba7565b60405180910390fd5b5b60155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f1f575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611fc657600754821115611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613c35565b60405180910390fd5b600954611f7584610de1565b83611f809190613349565b1115611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890613c9d565b60405180910390fd5b61215b565b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612063575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120b2576007548211156120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490613d2b565b60405180910390fd5b61215a565b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166121595760095461210c84610de1565b836121179190613349565b1115612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90613c9d565b60405180910390fd5b5b5b5b5b5b5f61216730610de1565b90505f600854821015905080801561218b5750600a60029054906101000a900460ff165b80156121a45750600560149054906101000a900460ff16155b80156121c15750600260135f8581526020019081526020015f2054105b8015612214575060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612267575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156122ba575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612321576001600560146101000a81548160ff0219169083151502179055506122e2612b2c565b60135f8481526020019081526020015f205f81546122ff906133a9565b919050819055505f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060125f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806123d0575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156123d9575f90505b5f81156125165760155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561243757505f601054115b1561246b57612464606461245660105489612c0c90919063ffffffff16565b612c2190919063ffffffff16565b90506124f3565b60155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156124c257505f600e54115b156124f2576124ef60646124e1600e5489612c0c90919063ffffffff16565b612c2190919063ffffffff16565b90505b5b5f811115612507576125068830836128c0565b5b80866125139190613d49565b95505b6125218888886128c0565b50505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff81111561260b5761260a613d7c565b5b6040519080825280602002602001820160405280156126395781602001602082028036833780820191505090505b50905030815f815181106126505761264f61337c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127179190613dbd565b8160018151811061272b5761272a61337c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612790307f0000000000000000000000000000000000000000000000000000000000000000846117b5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016127f1959493929190613ed8565b5f604051808303815f87803b158015612808575f80fd5b505af115801561281a573d5f803e3d5ffd5b505050505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590613ab1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361299c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299390613b3f565b60405180910390fd5b6129a7838383612c36565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2190613fa0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b139190612e9e565b60405180910390a3612b26848484612c3b565b50505050565b5f612b3630610de1565b90505f808203612b47575050612c0a565b6014600854612b56919061321d565b821115612b6f576014600854612b6c919061321d565b91505b5f829050612b7c816125ef565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612bc19061341d565b5f6040518083038185875af1925050503d805f8114612bfb576040519150601f19603f3d011682016040523d82523d5f602084013e612c00565b606091505b5050809250505050505b565b5f8183612c19919061321d565b905092915050565b5f8183612c2e919061328b565b905092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612c77578082015181840152602081019050612c5c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612c9c82612c40565b612ca68185612c4a565b9350612cb6818560208601612c5a565b612cbf81612c82565b840191505092915050565b5f6020820190508181035f830152612ce28184612c92565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d1b82612cf2565b9050919050565b612d2b81612d11565b8114612d35575f80fd5b50565b5f81359050612d4681612d22565b92915050565b5f819050919050565b612d5e81612d4c565b8114612d68575f80fd5b50565b5f81359050612d7981612d55565b92915050565b5f8060408385031215612d9557612d94612cea565b5b5f612da285828601612d38565b9250506020612db385828601612d6b565b9150509250929050565b5f8115159050919050565b612dd181612dbd565b82525050565b5f602082019050612dea5f830184612dc8565b92915050565b5f60208284031215612e0557612e04612cea565b5b5f612e1284828501612d38565b91505092915050565b5f819050919050565b5f612e3e612e39612e3484612cf2565b612e1b565b612cf2565b9050919050565b5f612e4f82612e24565b9050919050565b5f612e6082612e45565b9050919050565b612e7081612e56565b82525050565b5f602082019050612e895f830184612e67565b92915050565b612e9881612d4c565b82525050565b5f602082019050612eb15f830184612e8f565b92915050565b5f60208284031215612ecc57612ecb612cea565b5b5f612ed984828501612d6b565b91505092915050565b5f805f60608486031215612ef957612ef8612cea565b5b5f612f0686828701612d38565b9350506020612f1786828701612d38565b9250506040612f2886828701612d6b565b9150509250925092565b612f3b81612d11565b82525050565b5f602082019050612f545f830184612f32565b92915050565b5f60ff82169050919050565b612f6f81612f5a565b82525050565b5f602082019050612f885f830184612f66565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612faf57612fae612f8e565b5b8235905067ffffffffffffffff811115612fcc57612fcb612f92565b5b602083019150836020820283011115612fe857612fe7612f96565b5b9250929050565b5f8083601f84011261300457613003612f8e565b5b8235905067ffffffffffffffff81111561302157613020612f92565b5b60208301915083602082028301111561303d5761303c612f96565b5b9250929050565b5f805f806040858703121561305c5761305b612cea565b5b5f85013567ffffffffffffffff81111561307957613078612cee565b5b61308587828801612f9a565b9450945050602085013567ffffffffffffffff8111156130a8576130a7612cee565b5b6130b487828801612fef565b925092505092959194509250565b6130cb81612dbd565b81146130d5575f80fd5b50565b5f813590506130e6816130c2565b92915050565b5f806040838503121561310257613101612cea565b5b5f61310f85828601612d38565b9250506020613120858286016130d8565b9150509250929050565b5f6020828403121561313f5761313e612cea565b5b5f61314c848285016130d8565b91505092915050565b5f806040838503121561316b5761316a612cea565b5b5f61317885828601612d38565b925050602061318985828601612d38565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806131d757607f821691505b6020821081036131ea576131e9613193565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61322782612d4c565b915061323283612d4c565b925082820261324081612d4c565b91508282048414831517613257576132566131f0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61329582612d4c565b91506132a083612d4c565b9250826132b0576132af61325e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f613315602f83612c4a565b9150613320826132bb565b604082019050919050565b5f6020820190508181035f83015261334281613309565b9050919050565b5f61335382612d4c565b915061335e83612d4c565b9250828201905080821115613376576133756131f0565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6133b382612d4c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133e5576133e46131f0565b5b600182019050919050565b5f81905092915050565b50565b5f6134085f836133f0565b9150613413826133fa565b5f82019050919050565b5f613427826133fd565b9150819050919050565b7f4d757374206b6565702066656573206174203525206f72206c657373000000005f82015250565b5f613465601c83612c4a565b915061347082613431565b602082019050919050565b5f6020820190508181035f83015261349281613459565b9050919050565b7f57726f6e6720616d6f756e7400000000000000000000000000000000000000005f82015250565b5f6134cd600c83612c4a565b91506134d882613499565b602082019050919050565b5f6020820190508181035f8301526134fa816134c1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f61355b603983612c4a565b915061356682613501565b604082019050919050565b5f6020820190508181035f8301526135888161354f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6135e9602583612c4a565b91506135f48261358f565b604082019050919050565b5f6020820190508181035f830152613616816135dd565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f613677602483612c4a565b91506136828261361d565b604082019050919050565b5f6020820190508181035f8301526136a48161366b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613705603583612c4a565b9150613710826136ab565b604082019050919050565b5f6020820190508181035f830152613732816136f9565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f613793603483612c4a565b915061379e82613739565b604082019050919050565b5f6020820190508181035f8301526137c081613787565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613821602683612c4a565b915061382c826137c7565b604082019050919050565b5f6020820190508181035f83015261384e81613815565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6138af602483612c4a565b91506138ba82613855565b604082019050919050565b5f6020820190508181035f8301526138dc816138a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61393d602283612c4a565b9150613948826138e3565b604082019050919050565b5f6020820190508181035f83015261396a81613931565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6139a5602083612c4a565b91506139b082613971565b602082019050919050565b5f6020820190508181035f8301526139d281613999565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613a0d601d83612c4a565b9150613a18826139d9565b602082019050919050565b5f6020820190508181035f830152613a3a81613a01565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613a9b602583612c4a565b9150613aa682613a41565b604082019050919050565b5f6020820190508181035f830152613ac881613a8f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613b29602383612c4a565b9150613b3482613acf565b604082019050919050565b5f6020820190508181035f830152613b5681613b1d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613b91601683612c4a565b9150613b9c82613b5d565b602082019050919050565b5f6020820190508181035f830152613bbe81613b85565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613c1f603583612c4a565b9150613c2a82613bc5565b604082019050919050565b5f6020820190508181035f830152613c4c81613c13565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613c87601383612c4a565b9150613c9282613c53565b602082019050919050565b5f6020820190508181035f830152613cb481613c7b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613d15603683612c4a565b9150613d2082613cbb565b604082019050919050565b5f6020820190508181035f830152613d4281613d09565b9050919050565b5f613d5382612d4c565b9150613d5e83612d4c565b9250828203905081811115613d7657613d756131f0565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f81519050613db781612d22565b92915050565b5f60208284031215613dd257613dd1612cea565b5b5f613ddf84828501613da9565b91505092915050565b5f819050919050565b5f613e0b613e06613e0184613de8565b612e1b565b612d4c565b9050919050565b613e1b81613df1565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613e5381612d11565b82525050565b5f613e648383613e4a565b60208301905092915050565b5f602082019050919050565b5f613e8682613e21565b613e908185613e2b565b9350613e9b83613e3b565b805f5b83811015613ecb578151613eb28882613e59565b9750613ebd83613e70565b925050600181019050613e9e565b5085935050505092915050565b5f60a082019050613eeb5f830188612e8f565b613ef86020830187613e12565b8181036040830152613f0a8186613e7c565b9050613f196060830185612f32565b613f266080830184612e8f565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613f8a602683612c4a565b9150613f9582613f30565b604082019050919050565b5f6020820190508181035f830152613fb781613f7e565b905091905056fea2646970667358221220c4d98cf44564fbd7364ad4c33e9fd2100b87417e617e063b6c309ea001b6b4d364736f6c63430008140033
Deployed Bytecode
0x608060405260043610610275575f3560e01c8063881dce601161014e578063bbc0c742116100c0578063dd62ed3e11610079578063dd62ed3e14610948578063e2f4560514610984578063eba4c333146109ae578063f2fde38b146109d6578063f8b45b05146109fe578063fabb0b4f14610a285761027c565b8063bbc0c7421461083e578063c024666814610868578063c18bc19514610890578063c8c8ebe4146108b8578063d257b34f146108e2578063d85ba0631461091e5761027c565b80639a7a23d6116101125780639a7a23d614610712578063a457c2d71461073a578063a672990c14610776578063a9059cbb1461079e578063aacebbe3146107da578063b62496f5146108025761027c565b8063881dce60146106445780638da5cb5b1461066c5780639213691314610696578063924de9b7146106c057806395d89b41146106e85761027c565b80634a62bb65116101e757806370a08231116101ab57806370a0823114610550578063715018a61461058c57806371fc4688146105a2578063751039fc146105ca5780637571336a146105f457806382aa7c681461061c5761027c565b80634a62bb651461049457806367243482146104be5780636a486a8e146104e65780636ddd1713146105105780636fc3eaec1461053a5761027c565b8063203e727e11610239578063203e727e1461037657806323b872dd1461039e57806327c8f835146103da578063313ce56714610404578063395093511461042e57806349bd5a5e1461046a5761027c565b806306fdde0314610280578063095ea7b3146102aa57806310d5de53146102e65780631694505e1461032257806318160ddd1461034c5761027c565b3661027c57005b5f80fd5b34801561028b575f80fd5b50610294610a52565b6040516102a19190612cca565b60405180910390f35b3480156102b5575f80fd5b506102d060048036038101906102cb9190612d7f565b610ae2565b6040516102dd9190612dd7565b60405180910390f35b3480156102f1575f80fd5b5061030c60048036038101906103079190612df0565b610b04565b6040516103199190612dd7565b60405180910390f35b34801561032d575f80fd5b50610336610b21565b6040516103439190612e76565b60405180910390f35b348015610357575f80fd5b50610360610b45565b60405161036d9190612e9e565b60405180910390f35b348015610381575f80fd5b5061039c60048036038101906103979190612eb7565b610b4e565b005b3480156103a9575f80fd5b506103c460048036038101906103bf9190612ee2565b610be9565b6040516103d19190612dd7565b60405180910390f35b3480156103e5575f80fd5b506103ee610c17565b6040516103fb9190612f41565b60405180910390f35b34801561040f575f80fd5b50610418610c1d565b6040516104259190612f75565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f9190612d7f565b610c25565b6040516104619190612dd7565b60405180910390f35b348015610475575f80fd5b5061047e610c5b565b60405161048b9190612f41565b60405180910390f35b34801561049f575f80fd5b506104a8610c7f565b6040516104b59190612dd7565b60405180910390f35b3480156104c9575f80fd5b506104e460048036038101906104df9190613044565b610c91565b005b3480156104f1575f80fd5b506104fa610d3a565b6040516105079190612e9e565b60405180910390f35b34801561051b575f80fd5b50610524610d40565b6040516105319190612dd7565b60405180910390f35b348015610545575f80fd5b5061054e610d53565b005b34801561055b575f80fd5b5061057660048036038101906105719190612df0565b610de1565b6040516105839190612e9e565b60405180910390f35b348015610597575f80fd5b506105a0610e26565b005b3480156105ad575f80fd5b506105c860048036038101906105c39190612eb7565b610e39565b005b3480156105d5575f80fd5b506105de610e9a565b6040516105eb9190612dd7565b60405180910390f35b3480156105ff575f80fd5b5061061a600480360381019061061591906130ec565b610ec3565b005b348015610627575f80fd5b50610642600480360381019061063d9190612eb7565b610f23565b005b34801561064f575f80fd5b5061066a60048036038101906106659190612eb7565b610f79565b005b348015610677575f80fd5b5061068061103a565b60405161068d9190612f41565b60405180910390f35b3480156106a1575f80fd5b506106aa611062565b6040516106b79190612e9e565b60405180910390f35b3480156106cb575f80fd5b506106e660048036038101906106e1919061312a565b611068565b005b3480156106f3575f80fd5b506106fc61108d565b6040516107099190612cca565b60405180910390f35b34801561071d575f80fd5b50610738600480360381019061073391906130ec565b61111d565b005b348015610745575f80fd5b50610760600480360381019061075b9190612d7f565b6111c1565b60405161076d9190612dd7565b60405180910390f35b348015610781575f80fd5b5061079c600480360381019061079791906130ec565b611236565b005b3480156107a9575f80fd5b506107c460048036038101906107bf9190612d7f565b6112ea565b6040516107d19190612dd7565b60405180910390f35b3480156107e5575f80fd5b5061080060048036038101906107fb9190612df0565b61130c565b005b34801561080d575f80fd5b5061082860048036038101906108239190612df0565b6113d2565b6040516108359190612dd7565b60405180910390f35b348015610849575f80fd5b506108526113ef565b60405161085f9190612dd7565b60405180910390f35b348015610873575f80fd5b5061088e600480360381019061088991906130ec565b611402565b005b34801561089b575f80fd5b506108b660048036038101906108b19190612eb7565b6114b0565b005b3480156108c3575f80fd5b506108cc61154b565b6040516108d99190612e9e565b60405180910390f35b3480156108ed575f80fd5b5061090860048036038101906109039190612eb7565b611551565b6040516109159190612dd7565b60405180910390f35b348015610929575f80fd5b50610932611631565b60405161093f9190612e9e565b60405180910390f35b348015610953575f80fd5b5061096e60048036038101906109699190613155565b611637565b60405161097b9190612e9e565b60405180910390f35b34801561098f575f80fd5b506109986116b9565b6040516109a59190612e9e565b60405180910390f35b3480156109b9575f80fd5b506109d460048036038101906109cf9190612eb7565b6116bf565b005b3480156109e1575f80fd5b506109fc60048036038101906109f79190612df0565b611720565b005b348015610a09575f80fd5b50610a126117a2565b604051610a1f9190612e9e565b60405180910390f35b348015610a33575f80fd5b50610a3c6117a8565b604051610a499190612e9e565b60405180910390f35b606060038054610a61906131c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d906131c0565b8015610ad85780601f10610aaf57610100808354040283529160200191610ad8565b820191905f5260205f20905b815481529060010190602001808311610abb57829003601f168201915b5050505050905090565b5f80610aec6117ae565b9050610af98185856117b5565b600191505092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610b56611978565b670de0b6b3a76400006103e86001610b6c610b45565b610b76919061321d565b610b80919061328b565b610b8a919061328b565b811015610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc39061332b565b60405180910390fd5b670de0b6b3a764000081610be0919061321d565b60078190555050565b5f80610bf36117ae565b9050610c008582856119f6565b610c0b858585611a81565b60019150509392505050565b61dead81565b5f6012905090565b5f80610c2f6117ae565b9050610c50818585610c418589611637565b610c4b9190613349565b6117b5565b600191505092915050565b7f0000000000000000000000001b84719f9176f761750c46d8a8e8e84e3d5ce41481565b600a5f9054906101000a900460ff1681565b5f84849050118015610ca857508383905082829050145b610cb0575f80fd5b5f3390505f5b85859050811015610d3257610d1f82878784818110610cd857610cd761337c565b5b9050602002016020810190610ced9190612df0565b670de0b6b3a7640000878786818110610d0957610d0861337c565b5b90506020020135610d1a919061321d565b611a81565b8080610d2a906133a9565b915050610cb6565b505050505050565b60105481565b600a60029054906101000a900460ff1681565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610d999061341d565b5f6040518083038185875af1925050503d805f8114610dd3576040519150601f19603f3d011682016040523d82523d5f602084013e610dd8565b606091505b50508091505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e2e611978565b610e375f61252c565b565b610e41611978565b80600f81905550600f54600e81905550600a600e541115610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e9061347b565b60405180910390fd5b50565b5f610ea3611978565b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b610ecb611978565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610f2b611978565b80600d819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff02191690831515021790555043600b8190555042600c8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610fb96117ae565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8575f80fd5b610fe130610de1565b8111158015610fef57505f81115b61102e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611025906134e3565b60405180910390fd5b611037816125ef565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b611070611978565b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461109c906131c0565b80601f01602080910402602001604051908101604052809291908181526020018280546110c8906131c0565b80156111135780601f106110ea57610100808354040283529160200191611113565b820191905f5260205f20905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b611125611978565b7f0000000000000000000000001b84719f9176f761750c46d8a8e8e84e3d5ce41473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613571565b60405180910390fd5b6111bd8282612822565b5050565b5f806111cb6117ae565b90505f6111d88286611637565b90508381101561121d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611214906135ff565b60405180910390fd5b61122a82868684036117b5565b60019250505092915050565b61123e611978565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806112f46117ae565b9050611301818585611a81565b600191505092915050565b611314611978565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6015602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61140a611978565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114a49190612dd7565b60405180910390a25050565b6114b8611978565b670de0b6b3a76400006103e860056114ce610b45565b6114d8919061321d565b6114e2919061328b565b6114ec919061328b565b81101561152e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115259061368d565b60405180910390fd5b670de0b6b3a764000081611542919061321d565b60098190555050565b60075481565b5f61155a611978565b620186a06001611568610b45565b611572919061321d565b61157c919061328b565b8210156115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b59061371b565b60405180910390fd5b6103e860056115cb610b45565b6115d5919061321d565b6115df919061328b565b821115611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906137a9565b60405180910390fd5b8160088190555060019050919050565b600e5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6116c7611978565b80601181905550601154601081905550600a601054111561171d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117149061347b565b60405180910390fd5b50565b611728611978565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178d90613837565b60405180910390fd5b61179f8161252c565b50565b60095481565b600d5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906138c5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890613953565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161196b9190612e9e565b60405180910390a3505050565b6119806117ae565b73ffffffffffffffffffffffffffffffffffffffff1661199e61103a565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906139bb565b60405180910390fd5b565b5f611a018484611637565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a7b5781811015611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490613a23565b60405180910390fd5b611a7a84848484036117b5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690613ab1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5490613b3f565b60405180910390fd5b5f8103611b7457611b6f83835f6128c0565b612527565b5f439050600a5f9054906101000a900460ff161561215d57611b9461103a565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611c025750611bd261103a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c3a57505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c74575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611c8d5750600560149054906101000a900460ff16155b1561215c5780600d54600b54611ca39190613349565b10611ccf576046600f81905550600f54600e819055506046601181905550601154601081905550611d93565b600d54600b54611cdf9190613349565b81118015611cfb57506014600b54611cf79190613349565b8111155b15611d4b576a108b2a2c280290940000006007819055506a108b2a2c28029094000000600981905550601e600f81905550600f54600e81905550601e601181905550601154601081905550611d92565b6a108b2a2c280290940000006007819055506a108b2a2c280290940000006009819055506002600f81905550600f54600e8190555060026011819055506011546010819055505b5b600a60019054906101000a900460ff16611e825760125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611e42575060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890613ba7565b60405180910390fd5b5b60155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f1f575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611fc657600754821115611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613c35565b60405180910390fd5b600954611f7584610de1565b83611f809190613349565b1115611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890613c9d565b60405180910390fd5b61215b565b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612063575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120b2576007548211156120ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a490613d2b565b60405180910390fd5b61215a565b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166121595760095461210c84610de1565b836121179190613349565b1115612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90613c9d565b60405180910390fd5b5b5b5b5b5b5f61216730610de1565b90505f600854821015905080801561218b5750600a60029054906101000a900460ff165b80156121a45750600560149054906101000a900460ff16155b80156121c15750600260135f8581526020019081526020015f2054105b8015612214575060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612267575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156122ba575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612321576001600560146101000a81548160ff0219169083151502179055506122e2612b2c565b60135f8481526020019081526020015f205f81546122ff906133a9565b919050819055505f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060125f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806123d0575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156123d9575f90505b5f81156125165760155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561243757505f601054115b1561246b57612464606461245660105489612c0c90919063ffffffff16565b612c2190919063ffffffff16565b90506124f3565b60155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156124c257505f600e54115b156124f2576124ef60646124e1600e5489612c0c90919063ffffffff16565b612c2190919063ffffffff16565b90505b5b5f811115612507576125068830836128c0565b5b80866125139190613d49565b95505b6125218888886128c0565b50505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff81111561260b5761260a613d7c565b5b6040519080825280602002602001820160405280156126395781602001602082028036833780820191505090505b50905030815f815181106126505761264f61337c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127179190613dbd565b8160018151811061272b5761272a61337c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612790307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117b5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016127f1959493929190613ed8565b5f604051808303815f87803b158015612808575f80fd5b505af115801561281a573d5f803e3d5ffd5b505050505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590613ab1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361299c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299390613b3f565b60405180910390fd5b6129a7838383612c36565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2190613fa0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b139190612e9e565b60405180910390a3612b26848484612c3b565b50505050565b5f612b3630610de1565b90505f808203612b47575050612c0a565b6014600854612b56919061321d565b821115612b6f576014600854612b6c919061321d565b91505b5f829050612b7c816125ef565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612bc19061341d565b5f6040518083038185875af1925050503d805f8114612bfb576040519150601f19603f3d011682016040523d82523d5f602084013e612c00565b606091505b5050809250505050505b565b5f8183612c19919061321d565b905092915050565b5f8183612c2e919061328b565b905092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612c77578082015181840152602081019050612c5c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612c9c82612c40565b612ca68185612c4a565b9350612cb6818560208601612c5a565b612cbf81612c82565b840191505092915050565b5f6020820190508181035f830152612ce28184612c92565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d1b82612cf2565b9050919050565b612d2b81612d11565b8114612d35575f80fd5b50565b5f81359050612d4681612d22565b92915050565b5f819050919050565b612d5e81612d4c565b8114612d68575f80fd5b50565b5f81359050612d7981612d55565b92915050565b5f8060408385031215612d9557612d94612cea565b5b5f612da285828601612d38565b9250506020612db385828601612d6b565b9150509250929050565b5f8115159050919050565b612dd181612dbd565b82525050565b5f602082019050612dea5f830184612dc8565b92915050565b5f60208284031215612e0557612e04612cea565b5b5f612e1284828501612d38565b91505092915050565b5f819050919050565b5f612e3e612e39612e3484612cf2565b612e1b565b612cf2565b9050919050565b5f612e4f82612e24565b9050919050565b5f612e6082612e45565b9050919050565b612e7081612e56565b82525050565b5f602082019050612e895f830184612e67565b92915050565b612e9881612d4c565b82525050565b5f602082019050612eb15f830184612e8f565b92915050565b5f60208284031215612ecc57612ecb612cea565b5b5f612ed984828501612d6b565b91505092915050565b5f805f60608486031215612ef957612ef8612cea565b5b5f612f0686828701612d38565b9350506020612f1786828701612d38565b9250506040612f2886828701612d6b565b9150509250925092565b612f3b81612d11565b82525050565b5f602082019050612f545f830184612f32565b92915050565b5f60ff82169050919050565b612f6f81612f5a565b82525050565b5f602082019050612f885f830184612f66565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612faf57612fae612f8e565b5b8235905067ffffffffffffffff811115612fcc57612fcb612f92565b5b602083019150836020820283011115612fe857612fe7612f96565b5b9250929050565b5f8083601f84011261300457613003612f8e565b5b8235905067ffffffffffffffff81111561302157613020612f92565b5b60208301915083602082028301111561303d5761303c612f96565b5b9250929050565b5f805f806040858703121561305c5761305b612cea565b5b5f85013567ffffffffffffffff81111561307957613078612cee565b5b61308587828801612f9a565b9450945050602085013567ffffffffffffffff8111156130a8576130a7612cee565b5b6130b487828801612fef565b925092505092959194509250565b6130cb81612dbd565b81146130d5575f80fd5b50565b5f813590506130e6816130c2565b92915050565b5f806040838503121561310257613101612cea565b5b5f61310f85828601612d38565b9250506020613120858286016130d8565b9150509250929050565b5f6020828403121561313f5761313e612cea565b5b5f61314c848285016130d8565b91505092915050565b5f806040838503121561316b5761316a612cea565b5b5f61317885828601612d38565b925050602061318985828601612d38565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806131d757607f821691505b6020821081036131ea576131e9613193565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61322782612d4c565b915061323283612d4c565b925082820261324081612d4c565b91508282048414831517613257576132566131f0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61329582612d4c565b91506132a083612d4c565b9250826132b0576132af61325e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f613315602f83612c4a565b9150613320826132bb565b604082019050919050565b5f6020820190508181035f83015261334281613309565b9050919050565b5f61335382612d4c565b915061335e83612d4c565b9250828201905080821115613376576133756131f0565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6133b382612d4c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133e5576133e46131f0565b5b600182019050919050565b5f81905092915050565b50565b5f6134085f836133f0565b9150613413826133fa565b5f82019050919050565b5f613427826133fd565b9150819050919050565b7f4d757374206b6565702066656573206174203525206f72206c657373000000005f82015250565b5f613465601c83612c4a565b915061347082613431565b602082019050919050565b5f6020820190508181035f83015261349281613459565b9050919050565b7f57726f6e6720616d6f756e7400000000000000000000000000000000000000005f82015250565b5f6134cd600c83612c4a565b91506134d882613499565b602082019050919050565b5f6020820190508181035f8301526134fa816134c1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f61355b603983612c4a565b915061356682613501565b604082019050919050565b5f6020820190508181035f8301526135888161354f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6135e9602583612c4a565b91506135f48261358f565b604082019050919050565b5f6020820190508181035f830152613616816135dd565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f613677602483612c4a565b91506136828261361d565b604082019050919050565b5f6020820190508181035f8301526136a48161366b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613705603583612c4a565b9150613710826136ab565b604082019050919050565b5f6020820190508181035f830152613732816136f9565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f613793603483612c4a565b915061379e82613739565b604082019050919050565b5f6020820190508181035f8301526137c081613787565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613821602683612c4a565b915061382c826137c7565b604082019050919050565b5f6020820190508181035f83015261384e81613815565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6138af602483612c4a565b91506138ba82613855565b604082019050919050565b5f6020820190508181035f8301526138dc816138a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61393d602283612c4a565b9150613948826138e3565b604082019050919050565b5f6020820190508181035f83015261396a81613931565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6139a5602083612c4a565b91506139b082613971565b602082019050919050565b5f6020820190508181035f8301526139d281613999565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613a0d601d83612c4a565b9150613a18826139d9565b602082019050919050565b5f6020820190508181035f830152613a3a81613a01565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613a9b602583612c4a565b9150613aa682613a41565b604082019050919050565b5f6020820190508181035f830152613ac881613a8f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613b29602383612c4a565b9150613b3482613acf565b604082019050919050565b5f6020820190508181035f830152613b5681613b1d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613b91601683612c4a565b9150613b9c82613b5d565b602082019050919050565b5f6020820190508181035f830152613bbe81613b85565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613c1f603583612c4a565b9150613c2a82613bc5565b604082019050919050565b5f6020820190508181035f830152613c4c81613c13565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613c87601383612c4a565b9150613c9282613c53565b602082019050919050565b5f6020820190508181035f830152613cb481613c7b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613d15603683612c4a565b9150613d2082613cbb565b604082019050919050565b5f6020820190508181035f830152613d4281613d09565b9050919050565b5f613d5382612d4c565b9150613d5e83612d4c565b9250828203905081811115613d7657613d756131f0565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f81519050613db781612d22565b92915050565b5f60208284031215613dd257613dd1612cea565b5b5f613ddf84828501613da9565b91505092915050565b5f819050919050565b5f613e0b613e06613e0184613de8565b612e1b565b612d4c565b9050919050565b613e1b81613df1565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613e5381612d11565b82525050565b5f613e648383613e4a565b60208301905092915050565b5f602082019050919050565b5f613e8682613e21565b613e908185613e2b565b9350613e9b83613e3b565b805f5b83811015613ecb578151613eb28882613e59565b9750613ebd83613e70565b925050600181019050613e9e565b5085935050505092915050565b5f60a082019050613eeb5f830188612e8f565b613ef86020830187613e12565b8181036040830152613f0a8186613e7c565b9050613f196060830185612f32565b613f266080830184612e8f565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613f8a602683612c4a565b9150613f9582613f30565b604082019050919050565b5f6020820190508181035f830152613fb781613f7e565b905091905056fea2646970667358221220c4d98cf44564fbd7364ad4c33e9fd2100b87417e617e063b6c309ea001b6b4d364736f6c63430008140033
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.