More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 278 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20883389 | 30 days ago | IN | 0 ETH | 0.00021032 | ||||
Approve | 20860895 | 33 days ago | IN | 0 ETH | 0.00023357 | ||||
Approve | 20848937 | 34 days ago | IN | 0 ETH | 0.00034187 | ||||
Approve | 20834434 | 36 days ago | IN | 0 ETH | 0.00078764 | ||||
Approve | 20827068 | 38 days ago | IN | 0 ETH | 0.00163754 | ||||
Approve | 20827008 | 38 days ago | IN | 0 ETH | 0.00083694 | ||||
Approve | 20826997 | 38 days ago | IN | 0 ETH | 0.00087607 | ||||
Approve | 20826996 | 38 days ago | IN | 0 ETH | 0.00087178 | ||||
Approve | 20826994 | 38 days ago | IN | 0 ETH | 0.00093019 | ||||
Approve | 20826994 | 38 days ago | IN | 0 ETH | 0.00093019 | ||||
Approve | 20826993 | 38 days ago | IN | 0 ETH | 0.00109896 | ||||
Approve | 20826989 | 38 days ago | IN | 0 ETH | 0.00094167 | ||||
Approve | 20826988 | 38 days ago | IN | 0 ETH | 0.00088985 | ||||
Approve | 20826984 | 38 days ago | IN | 0 ETH | 0.00092959 | ||||
Approve | 20826982 | 38 days ago | IN | 0 ETH | 0.00091059 | ||||
Approve | 20826982 | 38 days ago | IN | 0 ETH | 0.00103932 | ||||
Approve | 20826127 | 38 days ago | IN | 0 ETH | 0.00091866 | ||||
Approve | 20826126 | 38 days ago | IN | 0 ETH | 0.00078336 | ||||
Approve | 20826122 | 38 days ago | IN | 0 ETH | 0.00116786 | ||||
Approve | 20826117 | 38 days ago | IN | 0 ETH | 0.00080036 | ||||
Approve | 20805709 | 41 days ago | IN | 0 ETH | 0.00056937 | ||||
Approve | 20805404 | 41 days ago | IN | 0 ETH | 0.00082934 | ||||
Approve | 20805348 | 41 days ago | IN | 0 ETH | 0.0008248 | ||||
Approve | 20805340 | 41 days ago | IN | 0 ETH | 0.00085122 | ||||
Approve | 20805339 | 41 days ago | IN | 0 ETH | 0.0008405 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20658107 | 61 days ago | 0.02994573 ETH | ||||
20658107 | 61 days ago | 0.02994573 ETH | ||||
20658085 | 61 days ago | 0.03282423 ETH | ||||
20658085 | 61 days ago | 0.03282423 ETH | ||||
20658083 | 61 days ago | 0.03527102 ETH | ||||
20658083 | 61 days ago | 0.03527102 ETH | ||||
20658081 | 61 days ago | 0.03715464 ETH | ||||
20658081 | 61 days ago | 0.03715464 ETH | ||||
20658040 | 61 days ago | 0.03073877 ETH | ||||
20658040 | 61 days ago | 0.03073877 ETH | ||||
20658040 | 61 days ago | 0.03106056 ETH | ||||
20658040 | 61 days ago | 0.03106056 ETH | ||||
20658040 | 61 days ago | 0.03338368 ETH | ||||
20658040 | 61 days ago | 0.03338368 ETH | ||||
20658040 | 61 days ago | 0.03373315 ETH | ||||
20658040 | 61 days ago | 0.03373315 ETH | ||||
20658022 | 61 days ago | 0.03555249 ETH | ||||
20658022 | 61 days ago | 0.03555249 ETH | ||||
20657886 | 61 days ago | 0.03599167 ETH | ||||
20657886 | 61 days ago | 0.03599167 ETH | ||||
20657788 | 61 days ago | 0.02774806 ETH | ||||
20657788 | 61 days ago | 0.02774806 ETH | ||||
20657787 | 61 days ago | 0.02962836 ETH | ||||
20657787 | 61 days ago | 0.02962836 ETH | ||||
20657787 | 61 days ago | 0.02993852 ETH |
Loading...
Loading
Contract Name:
Leagueoflegends
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-08-31 */ /* League Of Legends, $LOL, Promoting Free speech in the world. $ELON , $TRUMP AND $DUROV FANCLUB. Join us TG: https://t.me/lolErcPoratl X: https://twitter.com/LolTokenErc */ 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); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // 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; } } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 {} } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides 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} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } } 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.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, 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; 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; } pragma solidity 0.8.11; contract Leagueoflegends is ERC20, ERC20Burnable, Ownable2Step { uint16 public swapThresholdRatio; uint256 private _taxwalletPending; address public taxwalletAddress; uint16[3] public taxwalletFees; mapping (address => bool) public isExcludedFromFees; uint16[3] public totalFees; bool private _swapping; IUniswapV2Router02 public routerV2; address public pairV2; mapping (address => bool) public AMMPairs; mapping (address => bool) public isExcludedFromLimits; uint256 public maxWalletAmount; uint256 public maxBuyAmount; event SwapThresholdUpdated(uint16 swapThresholdRatio); event taxwalletAddressUpdated(address taxwalletAddress); event taxwalletFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event taxwalletFeeSent(address recipient, uint256 amount); event ExcludeFromFees(address indexed account, bool isExcluded); event RouterV2Updated(address indexed routerV2); event AMMPairsUpdated(address indexed AMMPair, bool isPair); event ExcludeFromLimits(address indexed account, bool isExcluded); event MaxWalletAmountUpdated(uint256 maxWalletAmount); event MaxBuyAmountUpdated(uint256 maxBuyAmount); constructor() ERC20(unicode"League Of Legends", unicode"LOL") { address supplyRecipient = 0xB02538579f39f429742C4a5e2a51c23B1c35d514; updateSwapThreshold(50); taxwalletAddressSetup(0xB02538579f39f429742C4a5e2a51c23B1c35d514); taxwalletFeesSetup(3000, 3000, 3000); excludeFromFees(supplyRecipient, true); excludeFromFees(address(this), true); _excludeFromLimits(supplyRecipient, true); _excludeFromLimits(address(this), true); _excludeFromLimits(address(0), true); updateMaxWalletAmount(208262083000000000000000000); updateMaxBuyAmount(208262083000000000000000000); _mint(supplyRecipient, 6942069420000000000000000000); _transferOwnership(0xB02538579f39f429742C4a5e2a51c23B1c35d514); _updateRouterV2(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); } receive() external payable {} function decimals() public pure override returns (uint8) { return 18; } function _swapTokensForCoin(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = routerV2.WETH(); _approve(address(this), address(routerV2), tokenAmount); routerV2.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } function updateSwapThreshold(uint16 _swapThresholdRatio) public onlyOwner { require(_swapThresholdRatio > 0 && _swapThresholdRatio <= 500, "SwapThreshold: Cannot exceed limits from 0.01% to 5% for new swap threshold"); swapThresholdRatio = _swapThresholdRatio; emit SwapThresholdUpdated(_swapThresholdRatio); } function getSwapThresholdAmount() public view returns (uint256) { return balanceOf(pairV2) * swapThresholdRatio / 10000; } function getAllPending() public view returns (uint256) { return 0 + _taxwalletPending; } function taxwalletAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); taxwalletAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit taxwalletAddressUpdated(_newAddress); } function taxwalletFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - taxwalletFees[0] + _buyFee; totalFees[1] = totalFees[1] - taxwalletFees[1] + _sellFee; totalFees[2] = totalFees[2] - taxwalletFees[2] + _transferFee; require(totalFees[0] <= 5000 && totalFees[1] <= 5000 && totalFees[2] <= 5000, "TaxesDefaultRouter: Cannot exceed max total fee of 50%"); taxwalletFees = [_buyFee, _sellFee, _transferFee]; emit taxwalletFeesUpdated(_buyFee, _sellFee, _transferFee); } function excludeFromFees(address account, bool isExcluded) public onlyOwner { isExcludedFromFees[account] = isExcluded; emit ExcludeFromFees(account, isExcluded); } function _transfer( address from, address to, uint256 amount ) internal override { if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) { uint256 fees = 0; uint8 txType = 3; if (AMMPairs[from]) { if (totalFees[0] > 0) txType = 0; } else if (AMMPairs[to]) { if (totalFees[1] > 0) txType = 1; } else if (totalFees[2] > 0) txType = 2; if (txType < 3) { fees = amount * totalFees[txType] / 10000; amount -= fees; _taxwalletPending += fees * taxwalletFees[txType] / totalFees[txType]; } if (fees > 0) { super._transfer(from, address(this), fees); } } uint256 swapThresholdAmount = getSwapThresholdAmount(); bool canSwap = getAllPending() >= swapThresholdAmount && balanceOf(pairV2) > 0; if (!_swapping && !AMMPairs[from] && from != address(routerV2) && canSwap) { _swapping = true; if (false || swapThresholdAmount > 0) { uint256 token2Swap = 0 + swapThresholdAmount; bool success = false; _swapTokensForCoin(token2Swap); uint256 coinsReceived = address(this).balance; uint256 taxwalletPortion = coinsReceived * swapThresholdAmount / token2Swap; if (taxwalletPortion > 0) { success = payable(taxwalletAddress).send(taxwalletPortion); if (success) { emit taxwalletFeeSent(taxwalletAddress, taxwalletPortion); } } _taxwalletPending -= swapThresholdAmount; } _swapping = false; } super._transfer(from, to, amount); } function _updateRouterV2(address router) private { routerV2 = IUniswapV2Router02(router); pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH()); _excludeFromLimits(router, true); _setAMMPair(pairV2, true); emit RouterV2Updated(router); } function setAMMPair(address pair, bool isPair) external onlyOwner { require(pair != pairV2, "DefaultRouter: Cannot remove initial pair from list"); _setAMMPair(pair, isPair); } function _setAMMPair(address pair, bool isPair) private { AMMPairs[pair] = isPair; if (isPair) { _excludeFromLimits(pair, true); } emit AMMPairsUpdated(pair, isPair); } function excludeFromLimits(address account, bool isExcluded) external onlyOwner { _excludeFromLimits(account, isExcluded); } function _excludeFromLimits(address account, bool isExcluded) internal { isExcludedFromLimits[account] = isExcluded; emit ExcludeFromLimits(account, isExcluded); } function updateMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner { require(_maxWalletAmount >= _maxWalletSafeLimit(), "MaxWallet: Limit too low"); maxWalletAmount = _maxWalletAmount; emit MaxWalletAmountUpdated(_maxWalletAmount); } function _maxWalletSafeLimit() private view returns (uint256) { return totalSupply() / 1000; } function _maxTxSafeLimit() private view returns (uint256) { return totalSupply() * 5 / 10000; } function updateMaxBuyAmount(uint256 _maxBuyAmount) public onlyOwner { require(_maxBuyAmount >= _maxTxSafeLimit(), "MaxTx: Limit too low"); maxBuyAmount = _maxBuyAmount; emit MaxBuyAmountUpdated(_maxBuyAmount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { if (AMMPairs[from] && !isExcludedFromLimits[to]) { // BUY require(amount <= maxBuyAmount, "MaxTx: Cannot exceed max buy limit"); } super._beforeTokenTransfer(from, to, amount); } function _afterTokenTransfer(address from, address to, uint256 amount) internal override { if (!isExcludedFromLimits[to]) { require(balanceOf(to) <= maxWalletAmount, "MaxWallet: Cannot exceed max wallet limit"); } super._afterTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"AMMPairsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"MaxBuyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"swapThresholdRatio","type":"uint16"}],"name":"SwapThresholdUpdated","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":false,"internalType":"address","name":"taxwalletAddress","type":"address"}],"name":"taxwalletAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"taxwalletFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"taxwalletFeesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllPending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSwapThresholdAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThresholdRatio","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxwalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"taxwalletAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxwalletFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"taxwalletFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_swapThresholdRatio","type":"uint16"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601181526020017f4c6561677565204f66204c6567656e64730000000000000000000000000000008152506040518060400160405280600381526020017f4c4f4c0000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620013ee565b508060049080519060200190620000af929190620013ee565b505050620000d2620000c66200024060201b60201c565b6200024860201b60201c565b600073b02538579f39f429742c4a5e2a51c23b1c35d5149050620000fd60326200028660201b60201c565b6200012273b02538579f39f429742c4a5e2a51c23b1c35d5146200034c60201b60201c565b62000139610bb880610bb86200047260201b60201c565b6200014c8160016200083d60201b60201c565b6200015f3060016200083d60201b60201c565b62000172816001620008f860201b60201c565b62000185306001620008f860201b60201c565b6200019960006001620008f860201b60201c565b620001b56aac4536244995d3ed2c0000620009a360201b60201c565b620001d16aac4536244995d3ed2c000062000a4b60201b60201c565b620001ef816b166e586155e0a8e77f30000062000af360201b60201c565b6200021473b02538579f39f429742c4a5e2a51c23b1c35d5146200024860201b60201c565b62000239737a250d5630b4cf539739df2c5dacb4c659f2488d62000c6160201b60201c565b5062001ea3565b600033905090565b600660006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055620002838162000f1960201b620018071760201c565b50565b6200029662000fdf60201b60201c565b60008161ffff16118015620002b157506101f48161ffff1611155b620002f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ea90620015ef565b60405180910390fd5b80600660146101000a81548161ffff021916908361ffff1602179055507fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f17208160405162000341919062001630565b60405180910390a150565b6200035c62000fdf60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620003cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c690620016e9565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004238160016200083d60201b60201c565b62000436816001620008f860201b60201c565b7f6e25174a1c60e9d62c82eed735a7d443dd0b6ea68bc2d0d936273e08fb532cac8160405162000467919062001750565b60405180910390a150565b6200048262000fdf60201b60201c565b8260096000600381106200049b576200049a6200176d565b5b601091828204019190066002029054906101000a900461ffff16600b600060038110620004cd57620004cc6200176d565b5b601091828204019190066002029054906101000a900461ffff16620004f39190620017cb565b620004ff919062001806565b600b6000600381106200051757620005166200176d565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508160096001600381106200055557620005546200176d565b5b601091828204019190066002029054906101000a900461ffff16600b6001600381106200058757620005866200176d565b5b601091828204019190066002029054906101000a900461ffff16620005ad9190620017cb565b620005b9919062001806565b600b600160038110620005d157620005d06200176d565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508060096002600381106200060f576200060e6200176d565b5b601091828204019190066002029054906101000a900461ffff16600b6002600381106200064157620006406200176d565b5b601091828204019190066002029054906101000a900461ffff16620006679190620017cb565b62000673919062001806565b600b6002600381106200068b576200068a6200176d565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550611388600b600060038110620006cb57620006ca6200176d565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156200072f5750611388600b6001600381106200070e576200070d6200176d565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b8015620007735750611388600b6002600381106200075257620007516200176d565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b620007b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ac90620018bb565b60405180910390fd5b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003620007fa9291906200147f565b507f4963431b187ee291501376bba89c8c815c04c831b33839c8b2ec099899153df48383836040516200083093929190620018dd565b60405180910390a1505050565b6200084d62000fdf60201b60201c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008ec919062001937565b60405180910390a25050565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405162000997919062001937565b60405180910390a25050565b620009b362000fdf60201b60201c565b620009c36200107060201b60201c565b81101562000a08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ff90620019a4565b60405180910390fd5b806010819055507f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e0018160405162000a409190620019e1565b60405180910390a150565b62000a5b62000fdf60201b60201c565b62000a6b6200109660201b60201c565b81101562000ab0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aa79062001a4e565b60405180910390fd5b806011819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d8160405162000ae89190620019e1565b60405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b5d9062001ac0565b60405180910390fd5b62000b7a60008383620010ca60201b60201c565b806002600082825462000b8e919062001ae2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c419190620019e1565b60405180910390a362000c5d60008383620011da60201b60201c565b5050565b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d10573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d36919062001b75565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000dc0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000de6919062001b75565b6040518363ffffffff1660e01b815260040162000e0592919062001ba7565b6020604051808303816000875af115801562000e25573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e4b919062001b75565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000e9e816001620008f860201b60201c565b62000ed3600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620012a260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff167fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60260405160405180910390a250565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000fef6200024060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620010156200136860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200106e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010659062001c24565b60405180910390fd5b565b60006103e8620010856200139260201b60201c565b62001091919062001c75565b905090565b60006127106005620010ad6200139260201b60201c565b620010b9919062001cad565b620010c5919062001c75565b905090565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156200116e5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15620011bd57601154811115620011bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011b39062001d84565b60405180910390fd5b5b620011d58383836200139c60201b620018cd1760201c565b505050565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1662001285576010546200124083620013a160201b60201c565b111562001284576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200127b9062001e1c565b60405180910390fd5b5b6200129d838383620013e960201b620018d21760201c565b505050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015620013145762001313826001620008f860201b60201c565b5b8173ffffffffffffffffffffffffffffffffffffffff167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a8455826040516200135c919062001937565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b505050565b828054620013fc9062001e6d565b90600052602060002090601f0160209004810192826200142057600085556200146c565b82601f106200143b57805160ff19168380011785556200146c565b828001600101855582156200146c579182015b828111156200146b5782518255916020019190600101906200144e565b5b5090506200147b919062001523565b5090565b826003600f01601090048101928215620015105791602002820160005b83821115620014de57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026200149c565b80156200150e5782816101000a81549061ffff0219169055600201602081600101049283019260010302620014de565b505b5090506200151f919062001523565b5090565b5b808211156200153e57600081600090555060010162001524565b5090565b600082825260208201905092915050565b7f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60008201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160208201527f70207468726573686f6c64000000000000000000000000000000000000000000604082015250565b6000620015d7604b8362001542565b9150620015e48262001553565b606082019050919050565b600060208201905081810360008301526200160a81620015c8565b9050919050565b600061ffff82169050919050565b6200162a8162001611565b82525050565b60006020820190506200164760008301846200161f565b92915050565b7f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460008201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015250565b6000620016d160468362001542565b9150620016de826200164d565b606082019050919050565b600060208201905081810360008301526200170481620016c2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062001738826200170b565b9050919050565b6200174a816200172b565b82525050565b60006020820190506200176760008301846200173f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620017d88262001611565b9150620017e58362001611565b925082821015620017fb57620017fa6200179c565b5b828203905092915050565b6000620018138262001611565b9150620018208362001611565b92508261ffff038211156200183a57620018396200179c565b5b828201905092915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b6000620018a360368362001542565b9150620018b08262001845565b604082019050919050565b60006020820190508181036000830152620018d68162001894565b9050919050565b6000606082019050620018f460008301866200161f565b6200190360208301856200161f565b6200191260408301846200161f565b949350505050565b60008115159050919050565b62001931816200191a565b82525050565b60006020820190506200194e600083018462001926565b92915050565b7f4d617857616c6c65743a204c696d697420746f6f206c6f770000000000000000600082015250565b60006200198c60188362001542565b9150620019998262001954565b602082019050919050565b60006020820190508181036000830152620019bf816200197d565b9050919050565b6000819050919050565b620019db81620019c6565b82525050565b6000602082019050620019f86000830184620019d0565b92915050565b7f4d617854783a204c696d697420746f6f206c6f77000000000000000000000000600082015250565b600062001a3660148362001542565b915062001a4382620019fe565b602082019050919050565b6000602082019050818103600083015262001a698162001a27565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001aa8601f8362001542565b915062001ab58262001a70565b602082019050919050565b6000602082019050818103600083015262001adb8162001a99565b9050919050565b600062001aef82620019c6565b915062001afc83620019c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001b345762001b336200179c565b5b828201905092915050565b600080fd5b62001b4f816200172b565b811462001b5b57600080fd5b50565b60008151905062001b6f8162001b44565b92915050565b60006020828403121562001b8e5762001b8d62001b3f565b5b600062001b9e8482850162001b5e565b91505092915050565b600060408201905062001bbe60008301856200173f565b62001bcd60208301846200173f565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001c0c60208362001542565b915062001c198262001bd4565b602082019050919050565b6000602082019050818103600083015262001c3f8162001bfd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062001c8282620019c6565b915062001c8f83620019c6565b92508262001ca25762001ca162001c46565b5b828204905092915050565b600062001cba82620019c6565b915062001cc783620019c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001d035762001d026200179c565b5b828202905092915050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600062001d6c60228362001542565b915062001d798262001d0e565b604082019050919050565b6000602082019050818103600083015262001d9f8162001d5d565b9050919050565b7f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c60008201527f6c6574206c696d69740000000000000000000000000000000000000000000000602082015250565b600062001e0460298362001542565b915062001e118262001da6565b604082019050919050565b6000602082019050818103600083015262001e378162001df5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062001e8657607f821691505b6020821081141562001e9d5762001e9c62001e3e565b5b50919050565b61412e8062001eb36000396000f3fe6080604052600436106102345760003560e01c8063768565571161012e578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e14610882578063e30c3978146108bf578063f112ba72146108ea578063f2fde38b14610915578063f7d3eca51461093e5761023b565b8063c0246668146107b1578063c0a904a2146107da578063c18bc19514610803578063c1d4212d1461082c578063d9477526146108575761023b565b80638fffabed116100f25780638fffabed146106b657806395d89b41146106e1578063a457c2d71461070c578063a9059cbb14610749578063aa4bde28146107865761023b565b806376856557146105e357806379ba50971461062057806379cc67901461063757806388e765ff146106605780638da5cb5b1461068b5761023b565b8063408ccbdf116101bc57806356417fef1161018057806356417fef146104ec5780635cce86cd1461051557806370a0823114610552578063715018a61461058f57806375c211e0146105a65761023b565b8063408ccbdf146103f357806342966c68146104305780634f011b83146104595780634fbee19314610484578063502f7446146104c15761023b565b806323b872dd1161020357806323b872dd146102fc5780632be32b61146103395780632d99d32e14610362578063313ce5671461038b57806339509351146103b65761023b565b806306fdde0314610240578063095ea7b31461026b57806318160ddd146102a85780631a0e718c146102d35761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610967565b6040516102629190612d68565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612e23565b6109f9565b60405161029f9190612e7e565b60405180910390f35b3480156102b457600080fd5b506102bd610a1c565b6040516102ca9190612ea8565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190612efd565b610a26565b005b34801561030857600080fd5b50610323600480360381019061031e9190612f2a565b610ade565b6040516103309190612e7e565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612f7d565b610b0d565b005b34801561036e57600080fd5b5061038960048036038101906103849190612fd6565b610ba0565b005b34801561039757600080fd5b506103a0610c47565b6040516103ad9190613032565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612e23565b610c50565b6040516103ea9190612e7e565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190612f7d565b610c87565b604051610427919061305c565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612f7d565b610cb5565b005b34801561046557600080fd5b5061046e610cc9565b60405161047b919061305c565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190613077565b610cdd565b6040516104b89190612e7e565b60405180910390f35b3480156104cd57600080fd5b506104d6610cfd565b6040516104e39190613103565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190613077565b610d23565b005b34801561052157600080fd5b5061053c60048036038101906105379190613077565b610e2c565b6040516105499190612e7e565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613077565b610e4c565b6040516105869190612ea8565b60405180910390f35b34801561059b57600080fd5b506105a4610e94565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612f7d565b610ea8565b6040516105da919061305c565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613077565b610ed6565b6040516106179190612e7e565b60405180910390f35b34801561062c57600080fd5b50610635610ef6565b005b34801561064357600080fd5b5061065e60048036038101906106599190612e23565b610f83565b005b34801561066c57600080fd5b50610675610fa3565b6040516106829190612ea8565b60405180910390f35b34801561069757600080fd5b506106a0610fa9565b6040516106ad919061312d565b60405180910390f35b3480156106c257600080fd5b506106cb610fd3565b6040516106d8919061312d565b60405180910390f35b3480156106ed57600080fd5b506106f6610ff9565b6040516107039190612d68565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190612e23565b61108b565b6040516107409190612e7e565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612e23565b611102565b60405161077d9190612e7e565b60405180910390f35b34801561079257600080fd5b5061079b611125565b6040516107a89190612ea8565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190612fd6565b61112b565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190612fd6565b6111dc565b005b34801561080f57600080fd5b5061082a60048036038101906108259190612f7d565b6111f2565b005b34801561083857600080fd5b50610841611285565b60405161084e919061312d565b60405180910390f35b34801561086357600080fd5b5061086c6112ab565b6040516108799190612ea8565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190613148565b611309565b6040516108b69190612ea8565b60405180910390f35b3480156108cb57600080fd5b506108d4611390565b6040516108e1919061312d565b60405180910390f35b3480156108f657600080fd5b506108ff6113ba565b60405161090c9190612ea8565b60405180910390f35b34801561092157600080fd5b5061093c60048036038101906109379190613077565b6113d0565b005b34801561094a57600080fd5b5061096560048036038101906109609190613188565b61147d565b005b6060600380546109769061320a565b80601f01602080910402602001604051908101604052809291908181526020018280546109a29061320a565b80156109ef5780601f106109c4576101008083540402835291602001916109ef565b820191906000526020600020905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b600080610a046118d7565b9050610a118185856118df565b600191505092915050565b6000600254905090565b610a2e611aaa565b60008161ffff16118015610a4857506101f48161ffff1611155b610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e906132d4565b60405180910390fd5b80600660146101000a81548161ffff021916908361ffff1602179055507fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f172081604051610ad3919061305c565b60405180910390a150565b600080610ae96118d7565b9050610af6858285611b28565b610b01858585611bb4565b60019150509392505050565b610b15611aaa565b610b1d612206565b811015610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690613340565b60405180910390fd5b806011819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d81604051610b959190612ea8565b60405180910390a150565b610ba8611aaa565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c30906133d2565b60405180910390fd5b610c43828261222e565b5050565b60006012905090565b600080610c5b6118d7565b9050610c7c818585610c6d8589611309565b610c779190613421565b6118df565b600191505092915050565b600b8160038110610c9757600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b610cc6610cc06118d7565b826122e9565b50565b600660149054906101000a900461ffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d2b611aaa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d929061350f565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610de781600161112b565b610df28160016124b7565b7f6e25174a1c60e9d62c82eed735a7d443dd0b6ea68bc2d0d936273e08fb532cac81604051610e21919061312d565b60405180910390a150565b600f6020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9c611aaa565b610ea66000612560565b565b60098160038110610eb857600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000610f006118d7565b90508073ffffffffffffffffffffffffffffffffffffffff16610f21611390565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e906135a1565b60405180910390fd5b610f8081612560565b50565b610f9582610f8f6118d7565b83611b28565b610f9f82826122e9565b5050565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546110089061320a565b80601f01602080910402602001604051908101604052809291908181526020018280546110349061320a565b80156110815780601f1061105657610100808354040283529160200191611081565b820191906000526020600020905b81548152906001019060200180831161106457829003601f168201915b5050505050905090565b6000806110966118d7565b905060006110a48286611309565b9050838110156110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090613633565b60405180910390fd5b6110f682868684036118df565b60019250505092915050565b60008061110d6118d7565b905061111a818585611bb4565b600191505092915050565b60105481565b611133611aaa565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516111d09190612e7e565b60405180910390a25050565b6111e4611aaa565b6111ee82826124b7565b5050565b6111fa611aaa565b611202612591565b811015611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b9061369f565b60405180910390fd5b806010819055507f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e0018160405161127a9190612ea8565b60405180910390a150565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000612710600660149054906101000a900461ffff1661ffff166112f0600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e4c565b6112fa91906136bf565b6113049190613748565b905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060075460006113cb9190613421565b905090565b6113d8611aaa565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611438610fa9565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b611485611aaa565b82600960006003811061149b5761149a613779565b5b601091828204019190066002029054906101000a900461ffff16600b6000600381106114ca576114c9613779565b5b601091828204019190066002029054906101000a900461ffff166114ee91906137a8565b6114f891906137dc565b600b60006003811061150d5761150c613779565b5b601091828204019190066002026101000a81548161ffff021916908361ffff16021790555081600960016003811061154857611547613779565b5b601091828204019190066002029054906101000a900461ffff16600b60016003811061157757611576613779565b5b601091828204019190066002029054906101000a900461ffff1661159b91906137a8565b6115a591906137dc565b600b6001600381106115ba576115b9613779565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508060096002600381106115f5576115f4613779565b5b601091828204019190066002029054906101000a900461ffff16600b60026003811061162457611623613779565b5b601091828204019190066002029054906101000a900461ffff1661164891906137a8565b61165291906137dc565b600b60026003811061166757611666613779565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550611388600b6000600381106116a4576116a3613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156117045750611388600b6001600381106116e3576116e2613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156117445750611388600b60026003811061172357611722613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a90613886565b60405180910390fd5b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff1681525060099060036117c6929190612c15565b507f4963431b187ee291501376bba89c8c815c04c831b33839c8b2ec099899153df48383836040516117fa939291906138a6565b60405180910390a1505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561194f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119469061394f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906139e1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a9d9190612ea8565b60405180910390a3505050565b611ab26118d7565b73ffffffffffffffffffffffffffffffffffffffff16611ad0610fa9565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613a4d565b60405180910390fd5b565b6000611b348484611309565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611bae5781811015611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790613ab9565b60405180910390fd5b611bad84848484036118df565b5b50505050565b600c60009054906101000a900460ff16158015611bd15750600081115b8015611c2b5750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c815750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611cd75750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f6c5760008060039050600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d7a576000600b600060038110611d4c57611d4b613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611d7557600090505b611e53565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e11576000600b600160038110611de357611de2613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611e0c57600190505b611e52565b6000600b600260038110611e2857611e27613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611e5157600290505b5b5b60038160ff161015611f5457612710600b8260ff1660038110611e7957611e78613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff1684611ea291906136bf565b611eac9190613748565b91508183611eba9190613ad9565b9250600b8160ff1660038110611ed357611ed2613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff1660038110611f0857611f07613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff1683611f3191906136bf565b611f3b9190613748565b60076000828254611f4c9190613421565b925050819055505b6000821115611f6957611f688530846125ad565b5b50505b6000611f766112ab565b9050600081611f836113ba565b10158015611fbb57506000611fb9600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e4c565b115b9050600c60009054906101000a900460ff161580156120245750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561207e5750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156120875750805b156121f4576001600c60006101000a81548160ff0219169083151502179055506000806120b45750600082115b156121d85760008260006120c89190613421565b905060006120d582612825565b600047905060008386836120e991906136bf565b6120f39190613748565b905060008111156121ba57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050925082156121b9577ff7a420e2cb7d3033ead185c897359ebf9011c07c771221fe5dbc21ca43cb684a600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516121b0929190613b0d565b60405180910390a15b5b85600760008282546121cc9190613ad9565b92505081905550505050505b6000600c60006101000a81548160ff0219169083151502179055505b6121ff8585856125ad565b5050505050565b60006127106005612215610a1c565b61221f91906136bf565b6122299190613748565b905090565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015612297576122968260016124b7565b5b8173ffffffffffffffffffffffffffffffffffffffff167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a8455826040516122dd9190612e7e565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090613ba8565b60405180910390fd5b61236582600083612a68565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e290613c3a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161249e9190612ea8565b60405180910390a36124b283600084612b66565b505050565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516125549190612e7e565b60405180910390a25050565b600660006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561258e81611807565b50565b60006103e861259e610a1c565b6125a89190613748565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561261d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261490613ccc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490613d5e565b60405180910390fd5b612698838383612a68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590613df0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161280c9190612ea8565b60405180910390a361281f848484612b66565b50505050565b6000600267ffffffffffffffff81111561284257612841613e10565b5b6040519080825280602002602001820160405280156128705781602001602082028036833780820191505090505b509050308160008151811061288857612887613779565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561292f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129539190613e54565b8160018151811061296757612966613779565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129ce30600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846118df565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a32959493929190613f7a565b600060405180830381600087803b158015612a4c57600080fd5b505af1158015612a60573d6000803e3d6000fd5b505050505050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b0b5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b5657601154811115612b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4c90614046565b60405180910390fd5b5b612b618383836118cd565b505050565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c0557601054612bc383610e4c565b1115612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb906140d8565b60405180910390fd5b5b612c108383836118d2565b505050565b826003600f01601090048101928215612ca15791602002820160005b83821115612c7157835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302612c31565b8015612c9f5782816101000a81549061ffff0219169055600201602081600101049283019260010302612c71565b505b509050612cae9190612cb2565b5090565b5b80821115612ccb576000816000905550600101612cb3565b5090565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d09578082015181840152602081019050612cee565b83811115612d18576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d3a82612ccf565b612d448185612cda565b9350612d54818560208601612ceb565b612d5d81612d1e565b840191505092915050565b60006020820190508181036000830152612d828184612d2f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dba82612d8f565b9050919050565b612dca81612daf565b8114612dd557600080fd5b50565b600081359050612de781612dc1565b92915050565b6000819050919050565b612e0081612ded565b8114612e0b57600080fd5b50565b600081359050612e1d81612df7565b92915050565b60008060408385031215612e3a57612e39612d8a565b5b6000612e4885828601612dd8565b9250506020612e5985828601612e0e565b9150509250929050565b60008115159050919050565b612e7881612e63565b82525050565b6000602082019050612e936000830184612e6f565b92915050565b612ea281612ded565b82525050565b6000602082019050612ebd6000830184612e99565b92915050565b600061ffff82169050919050565b612eda81612ec3565b8114612ee557600080fd5b50565b600081359050612ef781612ed1565b92915050565b600060208284031215612f1357612f12612d8a565b5b6000612f2184828501612ee8565b91505092915050565b600080600060608486031215612f4357612f42612d8a565b5b6000612f5186828701612dd8565b9350506020612f6286828701612dd8565b9250506040612f7386828701612e0e565b9150509250925092565b600060208284031215612f9357612f92612d8a565b5b6000612fa184828501612e0e565b91505092915050565b612fb381612e63565b8114612fbe57600080fd5b50565b600081359050612fd081612faa565b92915050565b60008060408385031215612fed57612fec612d8a565b5b6000612ffb85828601612dd8565b925050602061300c85828601612fc1565b9150509250929050565b600060ff82169050919050565b61302c81613016565b82525050565b60006020820190506130476000830184613023565b92915050565b61305681612ec3565b82525050565b6000602082019050613071600083018461304d565b92915050565b60006020828403121561308d5761308c612d8a565b5b600061309b84828501612dd8565b91505092915050565b6000819050919050565b60006130c96130c46130bf84612d8f565b6130a4565b612d8f565b9050919050565b60006130db826130ae565b9050919050565b60006130ed826130d0565b9050919050565b6130fd816130e2565b82525050565b600060208201905061311860008301846130f4565b92915050565b61312781612daf565b82525050565b6000602082019050613142600083018461311e565b92915050565b6000806040838503121561315f5761315e612d8a565b5b600061316d85828601612dd8565b925050602061317e85828601612dd8565b9150509250929050565b6000806000606084860312156131a1576131a0612d8a565b5b60006131af86828701612ee8565b93505060206131c086828701612ee8565b92505060406131d186828701612ee8565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061322257607f821691505b60208210811415613236576132356131db565b5b50919050565b7f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60008201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160208201527f70207468726573686f6c64000000000000000000000000000000000000000000604082015250565b60006132be604b83612cda565b91506132c98261323c565b606082019050919050565b600060208201905081810360008301526132ed816132b1565b9050919050565b7f4d617854783a204c696d697420746f6f206c6f77000000000000000000000000600082015250565b600061332a601483612cda565b9150613335826132f4565b602082019050919050565b600060208201905081810360008301526133598161331d565b9050919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e6960008201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b60006133bc603383612cda565b91506133c782613360565b604082019050919050565b600060208201905081810360008301526133eb816133af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061342c82612ded565b915061343783612ded565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561346c5761346b6133f2565b5b828201905092915050565b7f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460008201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015250565b60006134f9604683612cda565b915061350482613477565b606082019050919050565b60006020820190508181036000830152613528816134ec565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b600061358b602983612cda565b91506135968261352f565b604082019050919050565b600060208201905081810360008301526135ba8161357e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061361d602583612cda565b9150613628826135c1565b604082019050919050565b6000602082019050818103600083015261364c81613610565b9050919050565b7f4d617857616c6c65743a204c696d697420746f6f206c6f770000000000000000600082015250565b6000613689601883612cda565b915061369482613653565b602082019050919050565b600060208201905081810360008301526136b88161367c565b9050919050565b60006136ca82612ded565b91506136d583612ded565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561370e5761370d6133f2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061375382612ded565b915061375e83612ded565b92508261376e5761376d613719565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006137b382612ec3565b91506137be83612ec3565b9250828210156137d1576137d06133f2565b5b828203905092915050565b60006137e782612ec3565b91506137f283612ec3565b92508261ffff03821115613809576138086133f2565b5b828201905092915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b6000613870603683612cda565b915061387b82613814565b604082019050919050565b6000602082019050818103600083015261389f81613863565b9050919050565b60006060820190506138bb600083018661304d565b6138c8602083018561304d565b6138d5604083018461304d565b949350505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613939602483612cda565b9150613944826138dd565b604082019050919050565b600060208201905081810360008301526139688161392c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006139cb602283612cda565b91506139d68261396f565b604082019050919050565b600060208201905081810360008301526139fa816139be565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a37602083612cda565b9150613a4282613a01565b602082019050919050565b60006020820190508181036000830152613a6681613a2a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613aa3601d83612cda565b9150613aae82613a6d565b602082019050919050565b60006020820190508181036000830152613ad281613a96565b9050919050565b6000613ae482612ded565b9150613aef83612ded565b925082821015613b0257613b016133f2565b5b828203905092915050565b6000604082019050613b22600083018561311e565b613b2f6020830184612e99565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b92602183612cda565b9150613b9d82613b36565b604082019050919050565b60006020820190508181036000830152613bc181613b85565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c24602283612cda565b9150613c2f82613bc8565b604082019050919050565b60006020820190508181036000830152613c5381613c17565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613cb6602583612cda565b9150613cc182613c5a565b604082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d48602383612cda565b9150613d5382613cec565b604082019050919050565b60006020820190508181036000830152613d7781613d3b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613dda602683612cda565b9150613de582613d7e565b604082019050919050565b60006020820190508181036000830152613e0981613dcd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050613e4e81612dc1565b92915050565b600060208284031215613e6a57613e69612d8a565b5b6000613e7884828501613e3f565b91505092915050565b6000819050919050565b6000613ea6613ea1613e9c84613e81565b6130a4565b612ded565b9050919050565b613eb681613e8b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ef181612daf565b82525050565b6000613f038383613ee8565b60208301905092915050565b6000602082019050919050565b6000613f2782613ebc565b613f318185613ec7565b9350613f3c83613ed8565b8060005b83811015613f6d578151613f548882613ef7565b9750613f5f83613f0f565b925050600181019050613f40565b5085935050505092915050565b600060a082019050613f8f6000830188612e99565b613f9c6020830187613ead565b8181036040830152613fae8186613f1c565b9050613fbd606083018561311e565b613fca6080830184612e99565b9695505050505050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b6000614030602283612cda565b915061403b82613fd4565b604082019050919050565b6000602082019050818103600083015261405f81614023565b9050919050565b7f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c60008201527f6c6574206c696d69740000000000000000000000000000000000000000000000602082015250565b60006140c2602983612cda565b91506140cd82614066565b604082019050919050565b600060208201905081810360008301526140f1816140b5565b905091905056fea2646970667358221220f784d2b38f560aec23a8c3b4538b5994f0131d4ec8951fe84879e07d302133a764736f6c634300080b0033
Deployed Bytecode
0x6080604052600436106102345760003560e01c8063768565571161012e578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e14610882578063e30c3978146108bf578063f112ba72146108ea578063f2fde38b14610915578063f7d3eca51461093e5761023b565b8063c0246668146107b1578063c0a904a2146107da578063c18bc19514610803578063c1d4212d1461082c578063d9477526146108575761023b565b80638fffabed116100f25780638fffabed146106b657806395d89b41146106e1578063a457c2d71461070c578063a9059cbb14610749578063aa4bde28146107865761023b565b806376856557146105e357806379ba50971461062057806379cc67901461063757806388e765ff146106605780638da5cb5b1461068b5761023b565b8063408ccbdf116101bc57806356417fef1161018057806356417fef146104ec5780635cce86cd1461051557806370a0823114610552578063715018a61461058f57806375c211e0146105a65761023b565b8063408ccbdf146103f357806342966c68146104305780634f011b83146104595780634fbee19314610484578063502f7446146104c15761023b565b806323b872dd1161020357806323b872dd146102fc5780632be32b61146103395780632d99d32e14610362578063313ce5671461038b57806339509351146103b65761023b565b806306fdde0314610240578063095ea7b31461026b57806318160ddd146102a85780631a0e718c146102d35761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610967565b6040516102629190612d68565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612e23565b6109f9565b60405161029f9190612e7e565b60405180910390f35b3480156102b457600080fd5b506102bd610a1c565b6040516102ca9190612ea8565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190612efd565b610a26565b005b34801561030857600080fd5b50610323600480360381019061031e9190612f2a565b610ade565b6040516103309190612e7e565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612f7d565b610b0d565b005b34801561036e57600080fd5b5061038960048036038101906103849190612fd6565b610ba0565b005b34801561039757600080fd5b506103a0610c47565b6040516103ad9190613032565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612e23565b610c50565b6040516103ea9190612e7e565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190612f7d565b610c87565b604051610427919061305c565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612f7d565b610cb5565b005b34801561046557600080fd5b5061046e610cc9565b60405161047b919061305c565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190613077565b610cdd565b6040516104b89190612e7e565b60405180910390f35b3480156104cd57600080fd5b506104d6610cfd565b6040516104e39190613103565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190613077565b610d23565b005b34801561052157600080fd5b5061053c60048036038101906105379190613077565b610e2c565b6040516105499190612e7e565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613077565b610e4c565b6040516105869190612ea8565b60405180910390f35b34801561059b57600080fd5b506105a4610e94565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612f7d565b610ea8565b6040516105da919061305c565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613077565b610ed6565b6040516106179190612e7e565b60405180910390f35b34801561062c57600080fd5b50610635610ef6565b005b34801561064357600080fd5b5061065e60048036038101906106599190612e23565b610f83565b005b34801561066c57600080fd5b50610675610fa3565b6040516106829190612ea8565b60405180910390f35b34801561069757600080fd5b506106a0610fa9565b6040516106ad919061312d565b60405180910390f35b3480156106c257600080fd5b506106cb610fd3565b6040516106d8919061312d565b60405180910390f35b3480156106ed57600080fd5b506106f6610ff9565b6040516107039190612d68565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190612e23565b61108b565b6040516107409190612e7e565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612e23565b611102565b60405161077d9190612e7e565b60405180910390f35b34801561079257600080fd5b5061079b611125565b6040516107a89190612ea8565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190612fd6565b61112b565b005b3480156107e657600080fd5b5061080160048036038101906107fc9190612fd6565b6111dc565b005b34801561080f57600080fd5b5061082a60048036038101906108259190612f7d565b6111f2565b005b34801561083857600080fd5b50610841611285565b60405161084e919061312d565b60405180910390f35b34801561086357600080fd5b5061086c6112ab565b6040516108799190612ea8565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190613148565b611309565b6040516108b69190612ea8565b60405180910390f35b3480156108cb57600080fd5b506108d4611390565b6040516108e1919061312d565b60405180910390f35b3480156108f657600080fd5b506108ff6113ba565b60405161090c9190612ea8565b60405180910390f35b34801561092157600080fd5b5061093c60048036038101906109379190613077565b6113d0565b005b34801561094a57600080fd5b5061096560048036038101906109609190613188565b61147d565b005b6060600380546109769061320a565b80601f01602080910402602001604051908101604052809291908181526020018280546109a29061320a565b80156109ef5780601f106109c4576101008083540402835291602001916109ef565b820191906000526020600020905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b600080610a046118d7565b9050610a118185856118df565b600191505092915050565b6000600254905090565b610a2e611aaa565b60008161ffff16118015610a4857506101f48161ffff1611155b610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e906132d4565b60405180910390fd5b80600660146101000a81548161ffff021916908361ffff1602179055507fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f172081604051610ad3919061305c565b60405180910390a150565b600080610ae96118d7565b9050610af6858285611b28565b610b01858585611bb4565b60019150509392505050565b610b15611aaa565b610b1d612206565b811015610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690613340565b60405180910390fd5b806011819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d81604051610b959190612ea8565b60405180910390a150565b610ba8611aaa565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c30906133d2565b60405180910390fd5b610c43828261222e565b5050565b60006012905090565b600080610c5b6118d7565b9050610c7c818585610c6d8589611309565b610c779190613421565b6118df565b600191505092915050565b600b8160038110610c9757600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b610cc6610cc06118d7565b826122e9565b50565b600660149054906101000a900461ffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d2b611aaa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d929061350f565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610de781600161112b565b610df28160016124b7565b7f6e25174a1c60e9d62c82eed735a7d443dd0b6ea68bc2d0d936273e08fb532cac81604051610e21919061312d565b60405180910390a150565b600f6020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9c611aaa565b610ea66000612560565b565b60098160038110610eb857600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000610f006118d7565b90508073ffffffffffffffffffffffffffffffffffffffff16610f21611390565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e906135a1565b60405180910390fd5b610f8081612560565b50565b610f9582610f8f6118d7565b83611b28565b610f9f82826122e9565b5050565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546110089061320a565b80601f01602080910402602001604051908101604052809291908181526020018280546110349061320a565b80156110815780601f1061105657610100808354040283529160200191611081565b820191906000526020600020905b81548152906001019060200180831161106457829003601f168201915b5050505050905090565b6000806110966118d7565b905060006110a48286611309565b9050838110156110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090613633565b60405180910390fd5b6110f682868684036118df565b60019250505092915050565b60008061110d6118d7565b905061111a818585611bb4565b600191505092915050565b60105481565b611133611aaa565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516111d09190612e7e565b60405180910390a25050565b6111e4611aaa565b6111ee82826124b7565b5050565b6111fa611aaa565b611202612591565b811015611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b9061369f565b60405180910390fd5b806010819055507f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e0018160405161127a9190612ea8565b60405180910390a150565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000612710600660149054906101000a900461ffff1661ffff166112f0600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e4c565b6112fa91906136bf565b6113049190613748565b905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060075460006113cb9190613421565b905090565b6113d8611aaa565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611438610fa9565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b611485611aaa565b82600960006003811061149b5761149a613779565b5b601091828204019190066002029054906101000a900461ffff16600b6000600381106114ca576114c9613779565b5b601091828204019190066002029054906101000a900461ffff166114ee91906137a8565b6114f891906137dc565b600b60006003811061150d5761150c613779565b5b601091828204019190066002026101000a81548161ffff021916908361ffff16021790555081600960016003811061154857611547613779565b5b601091828204019190066002029054906101000a900461ffff16600b60016003811061157757611576613779565b5b601091828204019190066002029054906101000a900461ffff1661159b91906137a8565b6115a591906137dc565b600b6001600381106115ba576115b9613779565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508060096002600381106115f5576115f4613779565b5b601091828204019190066002029054906101000a900461ffff16600b60026003811061162457611623613779565b5b601091828204019190066002029054906101000a900461ffff1661164891906137a8565b61165291906137dc565b600b60026003811061166757611666613779565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550611388600b6000600381106116a4576116a3613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156117045750611388600b6001600381106116e3576116e2613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156117445750611388600b60026003811061172357611722613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a90613886565b60405180910390fd5b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff1681525060099060036117c6929190612c15565b507f4963431b187ee291501376bba89c8c815c04c831b33839c8b2ec099899153df48383836040516117fa939291906138a6565b60405180910390a1505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561194f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119469061394f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906139e1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a9d9190612ea8565b60405180910390a3505050565b611ab26118d7565b73ffffffffffffffffffffffffffffffffffffffff16611ad0610fa9565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613a4d565b60405180910390fd5b565b6000611b348484611309565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611bae5781811015611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790613ab9565b60405180910390fd5b611bad84848484036118df565b5b50505050565b600c60009054906101000a900460ff16158015611bd15750600081115b8015611c2b5750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c815750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611cd75750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f6c5760008060039050600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d7a576000600b600060038110611d4c57611d4b613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611d7557600090505b611e53565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e11576000600b600160038110611de357611de2613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611e0c57600190505b611e52565b6000600b600260038110611e2857611e27613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611e5157600290505b5b5b60038160ff161015611f5457612710600b8260ff1660038110611e7957611e78613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff1684611ea291906136bf565b611eac9190613748565b91508183611eba9190613ad9565b9250600b8160ff1660038110611ed357611ed2613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff1660038110611f0857611f07613779565b5b601091828204019190066002029054906101000a900461ffff1661ffff1683611f3191906136bf565b611f3b9190613748565b60076000828254611f4c9190613421565b925050819055505b6000821115611f6957611f688530846125ad565b5b50505b6000611f766112ab565b9050600081611f836113ba565b10158015611fbb57506000611fb9600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e4c565b115b9050600c60009054906101000a900460ff161580156120245750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561207e5750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156120875750805b156121f4576001600c60006101000a81548160ff0219169083151502179055506000806120b45750600082115b156121d85760008260006120c89190613421565b905060006120d582612825565b600047905060008386836120e991906136bf565b6120f39190613748565b905060008111156121ba57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050925082156121b9577ff7a420e2cb7d3033ead185c897359ebf9011c07c771221fe5dbc21ca43cb684a600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516121b0929190613b0d565b60405180910390a15b5b85600760008282546121cc9190613ad9565b92505081905550505050505b6000600c60006101000a81548160ff0219169083151502179055505b6121ff8585856125ad565b5050505050565b60006127106005612215610a1c565b61221f91906136bf565b6122299190613748565b905090565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015612297576122968260016124b7565b5b8173ffffffffffffffffffffffffffffffffffffffff167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a8455826040516122dd9190612e7e565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090613ba8565b60405180910390fd5b61236582600083612a68565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e290613c3a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161249e9190612ea8565b60405180910390a36124b283600084612b66565b505050565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516125549190612e7e565b60405180910390a25050565b600660006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561258e81611807565b50565b60006103e861259e610a1c565b6125a89190613748565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561261d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261490613ccc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490613d5e565b60405180910390fd5b612698838383612a68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590613df0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161280c9190612ea8565b60405180910390a361281f848484612b66565b50505050565b6000600267ffffffffffffffff81111561284257612841613e10565b5b6040519080825280602002602001820160405280156128705781602001602082028036833780820191505090505b509050308160008151811061288857612887613779565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561292f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129539190613e54565b8160018151811061296757612966613779565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129ce30600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846118df565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a32959493929190613f7a565b600060405180830381600087803b158015612a4c57600080fd5b505af1158015612a60573d6000803e3d6000fd5b505050505050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b0b5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b5657601154811115612b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4c90614046565b60405180910390fd5b5b612b618383836118cd565b505050565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c0557601054612bc383610e4c565b1115612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb906140d8565b60405180910390fd5b5b612c108383836118d2565b505050565b826003600f01601090048101928215612ca15791602002820160005b83821115612c7157835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302612c31565b8015612c9f5782816101000a81549061ffff0219169055600201602081600101049283019260010302612c71565b505b509050612cae9190612cb2565b5090565b5b80821115612ccb576000816000905550600101612cb3565b5090565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d09578082015181840152602081019050612cee565b83811115612d18576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d3a82612ccf565b612d448185612cda565b9350612d54818560208601612ceb565b612d5d81612d1e565b840191505092915050565b60006020820190508181036000830152612d828184612d2f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dba82612d8f565b9050919050565b612dca81612daf565b8114612dd557600080fd5b50565b600081359050612de781612dc1565b92915050565b6000819050919050565b612e0081612ded565b8114612e0b57600080fd5b50565b600081359050612e1d81612df7565b92915050565b60008060408385031215612e3a57612e39612d8a565b5b6000612e4885828601612dd8565b9250506020612e5985828601612e0e565b9150509250929050565b60008115159050919050565b612e7881612e63565b82525050565b6000602082019050612e936000830184612e6f565b92915050565b612ea281612ded565b82525050565b6000602082019050612ebd6000830184612e99565b92915050565b600061ffff82169050919050565b612eda81612ec3565b8114612ee557600080fd5b50565b600081359050612ef781612ed1565b92915050565b600060208284031215612f1357612f12612d8a565b5b6000612f2184828501612ee8565b91505092915050565b600080600060608486031215612f4357612f42612d8a565b5b6000612f5186828701612dd8565b9350506020612f6286828701612dd8565b9250506040612f7386828701612e0e565b9150509250925092565b600060208284031215612f9357612f92612d8a565b5b6000612fa184828501612e0e565b91505092915050565b612fb381612e63565b8114612fbe57600080fd5b50565b600081359050612fd081612faa565b92915050565b60008060408385031215612fed57612fec612d8a565b5b6000612ffb85828601612dd8565b925050602061300c85828601612fc1565b9150509250929050565b600060ff82169050919050565b61302c81613016565b82525050565b60006020820190506130476000830184613023565b92915050565b61305681612ec3565b82525050565b6000602082019050613071600083018461304d565b92915050565b60006020828403121561308d5761308c612d8a565b5b600061309b84828501612dd8565b91505092915050565b6000819050919050565b60006130c96130c46130bf84612d8f565b6130a4565b612d8f565b9050919050565b60006130db826130ae565b9050919050565b60006130ed826130d0565b9050919050565b6130fd816130e2565b82525050565b600060208201905061311860008301846130f4565b92915050565b61312781612daf565b82525050565b6000602082019050613142600083018461311e565b92915050565b6000806040838503121561315f5761315e612d8a565b5b600061316d85828601612dd8565b925050602061317e85828601612dd8565b9150509250929050565b6000806000606084860312156131a1576131a0612d8a565b5b60006131af86828701612ee8565b93505060206131c086828701612ee8565b92505060406131d186828701612ee8565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061322257607f821691505b60208210811415613236576132356131db565b5b50919050565b7f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60008201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160208201527f70207468726573686f6c64000000000000000000000000000000000000000000604082015250565b60006132be604b83612cda565b91506132c98261323c565b606082019050919050565b600060208201905081810360008301526132ed816132b1565b9050919050565b7f4d617854783a204c696d697420746f6f206c6f77000000000000000000000000600082015250565b600061332a601483612cda565b9150613335826132f4565b602082019050919050565b600060208201905081810360008301526133598161331d565b9050919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e6960008201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b60006133bc603383612cda565b91506133c782613360565b604082019050919050565b600060208201905081810360008301526133eb816133af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061342c82612ded565b915061343783612ded565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561346c5761346b6133f2565b5b828201905092915050565b7f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460008201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015250565b60006134f9604683612cda565b915061350482613477565b606082019050919050565b60006020820190508181036000830152613528816134ec565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b600061358b602983612cda565b91506135968261352f565b604082019050919050565b600060208201905081810360008301526135ba8161357e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061361d602583612cda565b9150613628826135c1565b604082019050919050565b6000602082019050818103600083015261364c81613610565b9050919050565b7f4d617857616c6c65743a204c696d697420746f6f206c6f770000000000000000600082015250565b6000613689601883612cda565b915061369482613653565b602082019050919050565b600060208201905081810360008301526136b88161367c565b9050919050565b60006136ca82612ded565b91506136d583612ded565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561370e5761370d6133f2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061375382612ded565b915061375e83612ded565b92508261376e5761376d613719565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006137b382612ec3565b91506137be83612ec3565b9250828210156137d1576137d06133f2565b5b828203905092915050565b60006137e782612ec3565b91506137f283612ec3565b92508261ffff03821115613809576138086133f2565b5b828201905092915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b6000613870603683612cda565b915061387b82613814565b604082019050919050565b6000602082019050818103600083015261389f81613863565b9050919050565b60006060820190506138bb600083018661304d565b6138c8602083018561304d565b6138d5604083018461304d565b949350505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613939602483612cda565b9150613944826138dd565b604082019050919050565b600060208201905081810360008301526139688161392c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006139cb602283612cda565b91506139d68261396f565b604082019050919050565b600060208201905081810360008301526139fa816139be565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a37602083612cda565b9150613a4282613a01565b602082019050919050565b60006020820190508181036000830152613a6681613a2a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613aa3601d83612cda565b9150613aae82613a6d565b602082019050919050565b60006020820190508181036000830152613ad281613a96565b9050919050565b6000613ae482612ded565b9150613aef83612ded565b925082821015613b0257613b016133f2565b5b828203905092915050565b6000604082019050613b22600083018561311e565b613b2f6020830184612e99565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b92602183612cda565b9150613b9d82613b36565b604082019050919050565b60006020820190508181036000830152613bc181613b85565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c24602283612cda565b9150613c2f82613bc8565b604082019050919050565b60006020820190508181036000830152613c5381613c17565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613cb6602583612cda565b9150613cc182613c5a565b604082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613d48602383612cda565b9150613d5382613cec565b604082019050919050565b60006020820190508181036000830152613d7781613d3b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613dda602683612cda565b9150613de582613d7e565b604082019050919050565b60006020820190508181036000830152613e0981613dcd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050613e4e81612dc1565b92915050565b600060208284031215613e6a57613e69612d8a565b5b6000613e7884828501613e3f565b91505092915050565b6000819050919050565b6000613ea6613ea1613e9c84613e81565b6130a4565b612ded565b9050919050565b613eb681613e8b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ef181612daf565b82525050565b6000613f038383613ee8565b60208301905092915050565b6000602082019050919050565b6000613f2782613ebc565b613f318185613ec7565b9350613f3c83613ed8565b8060005b83811015613f6d578151613f548882613ef7565b9750613f5f83613f0f565b925050600181019050613f40565b5085935050505092915050565b600060a082019050613f8f6000830188612e99565b613f9c6020830187613ead565b8181036040830152613fae8186613f1c565b9050613fbd606083018561311e565b613fca6080830184612e99565b9695505050505050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b6000614030602283612cda565b915061403b82613fd4565b604082019050919050565b6000602082019050818103600083015261405f81614023565b9050919050565b7f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c60008201527f6c6574206c696d69740000000000000000000000000000000000000000000000602082015250565b60006140c2602983612cda565b91506140cd82614066565b604082019050919050565b600060208201905081810360008301526140f1816140b5565b905091905056fea2646970667358221220f784d2b38f560aec23a8c3b4538b5994f0131d4ec8951fe84879e07d302133a764736f6c634300080b0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.