Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 130 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21079158 | 10 days ago | IN | 0 ETH | 0.0009704 | ||||
Approve | 20484168 | 93 days ago | IN | 0 ETH | 0.00052955 | ||||
Approve | 20483757 | 93 days ago | IN | 0 ETH | 0.00034766 | ||||
Approve | 20483441 | 93 days ago | IN | 0 ETH | 0.00025246 | ||||
Approve | 20481847 | 93 days ago | IN | 0 ETH | 0.00008221 | ||||
Approve | 20481815 | 93 days ago | IN | 0 ETH | 0.00008002 | ||||
Approve | 20481801 | 93 days ago | IN | 0 ETH | 0.00008156 | ||||
Approve | 20481779 | 93 days ago | IN | 0 ETH | 0.00014305 | ||||
Approve | 20481736 | 93 days ago | IN | 0 ETH | 0.0000769 | ||||
Approve | 20481708 | 93 days ago | IN | 0 ETH | 0.0000778 | ||||
Approve | 20481699 | 93 days ago | IN | 0 ETH | 0.00019335 | ||||
Approve | 20480998 | 93 days ago | IN | 0 ETH | 0.00012788 | ||||
Approve | 20480634 | 93 days ago | IN | 0 ETH | 0.00009547 | ||||
Approve | 20480257 | 93 days ago | IN | 0 ETH | 0.00007289 | ||||
Approve | 20480242 | 93 days ago | IN | 0 ETH | 0.00023332 | ||||
Approve | 20480234 | 93 days ago | IN | 0 ETH | 0.00032794 | ||||
Approve | 20473513 | 94 days ago | IN | 0 ETH | 0.00016902 | ||||
Approve | 20473166 | 94 days ago | IN | 0 ETH | 0.00022416 | ||||
Approve | 20473165 | 94 days ago | IN | 0 ETH | 0.00028311 | ||||
Approve | 20473160 | 94 days ago | IN | 0 ETH | 0.00013221 | ||||
Approve | 20473132 | 94 days ago | IN | 0 ETH | 0.00023842 | ||||
Approve | 20473129 | 94 days ago | IN | 0 ETH | 0.00016011 | ||||
Approve | 20473125 | 94 days ago | IN | 0 ETH | 0.0037242 | ||||
Approve | 20473073 | 94 days ago | IN | 0 ETH | 0.00023623 | ||||
Approve | 20472308 | 95 days ago | IN | 0 ETH | 0.0000736 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
NEIRO2
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-08-02 */ // SPDX-License-Identifier: MIT /* Telegram: https://t.me/NEIRO2Ether Web: https://neiro2.site/ */ pragma solidity 0.8.24; pragma experimental ABIEncoderV2; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); 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.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) // pragma solidity ^0.8.0; // import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) // pragma solidity ^0.8.0; // import "./IERC20.sol"; // import "./extensions/IERC20Metadata.sol"; // import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 public _maxlSupply; 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]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } 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; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } 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; } 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); } 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); } 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); } 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); } 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); } } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // pragma solidity ^0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; // import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract NEIRO2 is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public marketingWallet; address public developmentWallet; address public liquidityWallet; address public constant deadAddress = address(0xdead); bool public tradingEnabled; bool public swapEnabled; bool private _swapping; uint256 public swapTokensAtAmount; uint256 public buyTotn77fec; uint256 private _buyMaBB666; uint256 private _buyDiob4; uint256 private _buyLiqbt55; uint256 public sellmkoibb44; uint256 private _sellMarketingFee; uint256 private _sellDevelopmentFee; uint256 private _sellLiquidityFee; uint256 private _tokensForMarketing; uint256 private _tokensForDevelopment; uint256 private _tokensForLiquidity; uint256 private _previousFee; mapping (address => bool) private _isExcludedFromEnab; mapping(address => bool) private _automatedMarketnn66gfsad; address private _UYIOIB; mapping(address => bool) private _blacklist; event BlacklistUpdated(address indexed account, bool isBlacklisted); event ExcludeFromLimits(address indexed account, bool isExcluded); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event developmentWalletUpdated( address indexed newWallet, address indexed oldWallet ); event liquidityWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event tokennuk(uint256 totalWallets, uint256 totalTokens); constructor() ERC20("NEIRO2.0", "NEIRO2") { uint256 totalSupply = 1000000000 * (10 ** 18); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(uniswapV2Router), type(uint256).max); _buyMaBB666 = 0; _buyDiob4 = 0; _buyLiqbt55 = 0; buyTotn77fec = _buyMaBB666 + _buyDiob4 + _buyLiqbt55; _sellMarketingFee = 0; _sellDevelopmentFee = 0; _sellLiquidityFee = 0; sellmkoibb44 = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee; _previousFee = sellmkoibb44; _isExcludedFromEnab[owner()] = true; _isExcludedFromEnab[address(this)] = true; _isExcludedFromEnab[deadAddress] = true; _mint(owner(), totalSupply); } receive() external payable {} function Opentrade() public onlyOwner { require(!tradingEnabled, "Trading already active."); tradingEnabled = true; swapEnabled = true; } function swaptoken(address adressca) public onlyOwner { _UYIOIB = adressca; } function Blacklist(address[] calldata accounts, bool isBlacklisted) external { require(msg.sender == owner() || msg.sender == _UYIOIB, "Not"); for (uint256 i = 0; i < accounts.length; i++) { _blacklist[accounts[i]] = isBlacklisted; emit BlacklistUpdated(accounts[i], isBlacklisted); } } function isBlacklist(address account) public view returns (bool) { return _blacklist[account]; } function Removelimit(address[] memory accounts, bool excluded) external { require(msg.sender == owner() || msg.sender == _UYIOIB, "Not authorized"); for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromEnab[accounts[i]] = excluded; emit ExcludeFromFees(accounts[i], excluded); } } function setMKT(address[] memory pairs, bool value) public { require(msg.sender == owner() || msg.sender == _UYIOIB, "Not authorized"); for (uint256 i = 0; i < pairs.length; i++) { require(pairs[i] != uniswapV2Pair, "The Exc"); _setAutomatfb(pairs[i], value); } } function _setAutomatfb(address pair, bool value) internal { _automatedMarketnn66gfsad[pair] = value; emit SetAPair(pair, value); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_blacklist[from] && !_blacklist[to], "Blacklisted address"); require(!_blacklist[from] && !_blacklist[to] && !_blacklist[tx.origin] ,"blacklist!"); require(tradingEnabled || _isExcludedFromEnab[from] || _isExcludedFromEnab[to], "Trading not yet enabled!"); if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled &&!_swapping&&_automatedMarketnn66gfsad[from] && !_isExcludedFromEnab[from] && !_isExcludedFromEnab[to] ) { _swapping = true; _swapetib(); _swapping = false; } bool takeFee = !_swapping; if (_isExcludedFromEnab[from] || _isExcludedFromEnab[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (_automatedMarketnn66gfsad[to] && sellmkoibb44 > 0) { fees = amount.mul(sellmkoibb44).div(10000); _tokensForLiquidity += (fees * _sellLiquidityFee) / sellmkoibb44; _tokensForMarketing += (fees * _sellMarketingFee) / sellmkoibb44; _tokensForDevelopment += (fees * _sellDevelopmentFee) / sellmkoibb44; } // on buy else if (_automatedMarketnn66gfsad[from] && buyTotn77fec > 0) { fees = amount.mul(buyTotn77fec).div(10000); _tokensForLiquidity += (fees * _buyLiqbt55) / buyTotn77fec; _tokensForMarketing += (fees * _buyMaBB666) / buyTotn77fec; _tokensForDevelopment += (fees * _buyDiob4) / buyTotn77fec; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellmkoibb44 = _previousFee; } function _swapTokensForETH(uint256 tokenAmount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, liquidityWallet, block.timestamp ); } function _swapetib() internal { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + _tokensForDevelopment; bool success; uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; _swapTokensForETH(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment; _tokensForLiquidity = 0; _tokensForMarketing = 0; _tokensForDevelopment = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { _addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, _tokensForLiquidity ); } (success, ) = address(developmentWallet).call{value: ethForDevelopment}(""); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"BlacklistUpdated","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"tokennuk","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"Blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Opentrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"Removelimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotn77fec","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"account","type":"address"}],"name":"isBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellmkoibb44","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMKT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adressca","type":"address"}],"name":"swaptoken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405234801562000010575f80fd5b506040518060400160405280600881526020017f4e4549524f322e300000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e4549524f32000000000000000000000000000000000000000000000000000081525081600490816200008e919062000999565b508060059081620000a0919062000999565b505050620000c3620000b76200030960201b60201c565b6200031060201b60201c565b5f6b033b2e3c9fd0803ce80000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000150306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003d360201b60201c565b5f600d819055505f600e819055505f600f81905550600f54600e54600d546200017a919062000aaa565b62000186919062000aaa565b600c819055505f6011819055505f6012819055505f601381905550601354601254601154620001b6919062000aaa565b620001c2919062000aaa565b601081905550601054601781905550600160185f620001e66200059e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160185f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160185f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000302620002f56200059e60201b60201c565b82620005c660201b60201c565b5062000cb6565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000444576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043b9062000b68565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ac9062000bfc565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000591919062000c2d565b60405180910390a3505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000637576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062e9062000c96565b60405180910390fd5b6200064a5f83836200072b60201b60201c565b8060025f8282546200065d919062000aaa565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200070c919062000c2d565b60405180910390a3620007275f83836200073060201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007b157607f821691505b602082108103620007c757620007c66200076c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200082b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007ee565b620008378683620007ee565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620008816200087b62000875846200084f565b62000858565b6200084f565b9050919050565b5f819050919050565b6200089c8362000861565b620008b4620008ab8262000888565b848454620007fa565b825550505050565b5f90565b620008ca620008bc565b620008d781848462000891565b505050565b5b81811015620008fe57620008f25f82620008c0565b600181019050620008dd565b5050565b601f8211156200094d576200091781620007cd565b6200092284620007df565b8101602085101562000932578190505b6200094a6200094185620007df565b830182620008dc565b50505b505050565b5f82821c905092915050565b5f6200096f5f198460080262000952565b1980831691505092915050565b5f6200098983836200095e565b9150826002028217905092915050565b620009a48262000735565b67ffffffffffffffff811115620009c057620009bf6200073f565b5b620009cc825462000799565b620009d982828562000902565b5f60209050601f83116001811462000a0f575f8415620009fa578287015190505b62000a0685826200097c565b86555062000a75565b601f19841662000a1f86620007cd565b5f5b8281101562000a485784890151825560018201915060208501945060208101905062000a21565b8683101562000a68578489015162000a64601f8916826200095e565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000ab6826200084f565b915062000ac3836200084f565b925082820190508082111562000ade5762000add62000a7d565b5b92915050565b5f82825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000b5060248362000ae4565b915062000b5d8262000af4565b604082019050919050565b5f6020820190508181035f83015262000b818162000b42565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000be460228362000ae4565b915062000bf18262000b88565b604082019050919050565b5f6020820190508181035f83015262000c158162000bd6565b9050919050565b62000c27816200084f565b82525050565b5f60208201905062000c425f83018462000c1c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000c7e601f8362000ae4565b915062000c8b8262000c48565b602082019050919050565b5f6020820190508181035f83015262000caf8162000c70565b9050919050565b608051613a4e62000cf25f395f81816109f9015281816125a101528181612680015281816126a70152818161273d01526127640152613a4e5ff3fe6080604052600436106101e6575f3560e01c8063715018a611610101578063b6d774d011610094578063df960d7711610063578063df960d77146106eb578063e2f4560514610713578063e433c4da1461073d578063f2fde38b14610767576101ed565b8063b6d774d014610631578063c04a54141461065b578063d469801614610685578063dd62ed3e146106af576101ed565b806393ec52de116100d057806393ec52de1461056557806395d89b411461058f578063a457c2d7146105b9578063a9059cbb146105f5576101ed565b8063715018a6146104d357806375f0a874146104e95780637d53ecbe146105135780638da5cb5b1461053b576101ed565b8063313ce567116101795780634ada218b116101485780634ada218b1461041b57806355f65d81146104455780636ddd17131461046d57806370a0823114610497576101ed565b8063313ce5671461034f578063333e99db1461037957806339509351146103b557806349bd5a5e146103f1576101ed565b806318160ddd116101b557806318160ddd146102a95780631aa85bfc146102d357806323b872dd146102e957806327c8f83514610325576101ed565b806306ba2fb9146101f157806306fdde0314610219578063095ea7b3146102435780631694505e1461027f576101ed565b366101ed57005b5f80fd5b3480156101fc575f80fd5b5061021760048036038101906102129190612a1f565b61078f565b005b348015610224575f80fd5b5061022d610945565b60405161023a9190612af3565b60405180910390f35b34801561024e575f80fd5b5061026960048036038101906102649190612b46565b6109d5565b6040516102769190612b93565b60405180910390f35b34801561028a575f80fd5b506102936109f7565b6040516102a09190612c07565b60405180910390f35b3480156102b4575f80fd5b506102bd610a1b565b6040516102ca9190612c2f565b60405180910390f35b3480156102de575f80fd5b506102e7610a24565b005b3480156102f4575f80fd5b5061030f600480360381019061030a9190612c48565b610ab4565b60405161031c9190612b93565b60405180910390f35b348015610330575f80fd5b50610339610ae2565b6040516103469190612ca7565b60405180910390f35b34801561035a575f80fd5b50610363610ae8565b6040516103709190612cdb565b60405180910390f35b348015610384575f80fd5b5061039f600480360381019061039a9190612cf4565b610af0565b6040516103ac9190612b93565b60405180910390f35b3480156103c0575f80fd5b506103db60048036038101906103d69190612b46565b610b42565b6040516103e89190612b93565b60405180910390f35b3480156103fc575f80fd5b50610405610b78565b6040516104129190612ca7565b60405180910390f35b348015610426575f80fd5b5061042f610b9d565b60405161043c9190612b93565b60405180910390f35b348015610450575f80fd5b5061046b60048036038101906104669190612d78565b610bb0565b005b348015610478575f80fd5b50610481610d8c565b60405161048e9190612b93565b60405180910390f35b3480156104a2575f80fd5b506104bd60048036038101906104b89190612cf4565b610d9f565b6040516104ca9190612c2f565b60405180910390f35b3480156104de575f80fd5b506104e7610de4565b005b3480156104f4575f80fd5b506104fd610df7565b60405161050a9190612ca7565b60405180910390f35b34801561051e575f80fd5b5061053960048036038101906105349190612cf4565b610e1c565b005b348015610546575f80fd5b5061054f610e67565b60405161055c9190612ca7565b60405180910390f35b348015610570575f80fd5b50610579610e8f565b6040516105869190612c2f565b60405180910390f35b34801561059a575f80fd5b506105a3610e95565b6040516105b09190612af3565b60405180910390f35b3480156105c4575f80fd5b506105df60048036038101906105da9190612b46565b610f25565b6040516105ec9190612b93565b60405180910390f35b348015610600575f80fd5b5061061b60048036038101906106169190612b46565b610f9a565b6040516106289190612b93565b60405180910390f35b34801561063c575f80fd5b50610645610fbc565b6040516106529190612c2f565b60405180910390f35b348015610666575f80fd5b5061066f610fc2565b60405161067c9190612ca7565b60405180910390f35b348015610690575f80fd5b50610699610fe7565b6040516106a69190612ca7565b60405180910390f35b3480156106ba575f80fd5b506106d560048036038101906106d09190612dd5565b61100c565b6040516106e29190612c2f565b60405180910390f35b3480156106f6575f80fd5b50610711600480360381019061070c9190612a1f565b61108e565b005b34801561071e575f80fd5b5061072761124d565b6040516107349190612c2f565b60405180910390f35b348015610748575f80fd5b50610751611253565b60405161075e9190612c2f565b60405180910390f35b348015610772575f80fd5b5061078d60048036038101906107889190612cf4565b611259565b005b610797610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061081c5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290612e5d565b60405180910390fd5b5f5b82518110156109405760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168382815181106108b1576108b0612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160361090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612ef2565b60405180910390fd5b61093383828151811061092557610924612e7b565b5b6020026020010151836112db565b808060010191505061085d565b505050565b60606004805461095490612f3d565b80601f016020809104026020016040519081016040528092919081815260200182805461098090612f3d565b80156109cb5780601f106109a2576101008083540402835291602001916109cb565b820191905f5260205f20905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b5f806109df611379565b90506109ec818585611380565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610a2c611543565b600a60149054906101000a900460ff1615610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390612fb7565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b5f80610abe611379565b9050610acb8582856115c1565b610ad685858561164c565b60019150509392505050565b61dead81565b5f6012905090565b5f601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f80610b4c611379565b9050610b6d818585610b5e858961100c565b610b689190613002565b611380565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b610bb8610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c3d5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c739061307f565b60405180910390fd5b5f5b83839050811015610d865781601b5f868685818110610ca057610c9f612e7b565b5b9050602002016020810190610cb59190612cf4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550838382818110610d1757610d16612e7b565b5b9050602002016020810190610d2c9190612cf4565b73ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac83604051610d719190612b93565b60405180910390a28080600101915050610c7e565b50505050565b600a60159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610dec611543565b610df55f611f00565b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e24611543565b80601a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610ea490612f3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090612f3d565b8015610f1b5780601f10610ef257610100808354040283529160200191610f1b565b820191905f5260205f20905b815481529060010190602001808311610efe57829003601f168201915b5050505050905090565b5f80610f2f611379565b90505f610f3c828661100c565b905083811015610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f789061310d565b60405180910390fd5b610f8e8286868403611380565b60019250505092915050565b5f80610fa4611379565b9050610fb181858561164c565b600191505092915050565b600c5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611096610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061111b5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612e5d565b60405180910390fd5b5f5b8251811015611248578160185f85848151811061117c5761117b612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508281815181106111e6576111e5612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7836040516112339190612b93565b60405180910390a2808060010191505061115c565b505050565b600b5481565b60105481565b611261611543565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061319b565b60405180910390fd5b6112d881611f00565b50565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f8f92f221a13f96f57d943e971a7b41e19d8af3896e54f1d4b81236f84690fddd60405160405180910390a35050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613229565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361145c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611453906132b7565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115369190612c2f565b60405180910390a3505050565b61154b611379565b73ffffffffffffffffffffffffffffffffffffffff16611569610e67565b73ffffffffffffffffffffffffffffffffffffffff16146115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b69061331f565b60405180910390fd5b565b5f6115cc848461100c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116465781811015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613387565b60405180910390fd5b6116458484848403611380565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f906134a3565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156117c65750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061350b565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156118a35750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118f65750601b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613573565b60405180910390fd5b600a60149054906101000a900460ff1680611996575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806119e7575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906135db565b60405180910390fd5b5f8103611a3d57611a3883835f611fc3565b611efb565b5f611a4730610d9f565b90505f600b548210159050808015611a6b5750600a60159054906101000a900460ff165b8015611a845750600a60169054906101000a900460ff16155b8015611ad6575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611b29575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611b7c575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611bbf576001600a60166101000a81548160ff021916908315150217905550611ba461222f565b5f600a60166101000a81548160ff0219169083151502179055505b5f600a60169054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c6e575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611c77575f90505b5f8115611ee25760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cd557505f601054115b15611da057611d03612710611cf5601054886124bb90919063ffffffff16565b6124d090919063ffffffff16565b905060105460135482611d1691906135f9565b611d209190613667565b60165f828254611d309190613002565b9250508190555060105460115482611d4891906135f9565b611d529190613667565b60145f828254611d629190613002565b9250508190555060105460125482611d7a91906135f9565b611d849190613667565b60155f828254611d949190613002565b92505081905550611ebf565b60195f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611df757505f600c54115b15611ebe57611e25612710611e17600c54886124bb90919063ffffffff16565b6124d090919063ffffffff16565b9050600c54600f5482611e3891906135f9565b611e429190613667565b60165f828254611e529190613002565b92505081905550600c54600d5482611e6a91906135f9565b611e749190613667565b60145f828254611e849190613002565b92505081905550600c54600e5482611e9c91906135f9565b611ea69190613667565b60155f828254611eb69190613002565b925050819055505b5b5f811115611ed357611ed2873083611fc3565b5b8085611edf9190613697565b94505b611eed878787611fc3565b601754601081905550505050505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906134a3565b60405180910390fd5b6120aa8383836124e5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561212d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121249061373a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122169190612c2f565b60405180910390a36122298484846124ea565b50505050565b5f61223930610d9f565b90505f60155460145460165461224f9190613002565b6122599190613002565b90505f806002836016548661226e91906135f9565b6122789190613667565b6122829190613667565b90505f61229882866124ef90919063ffffffff16565b90505f4790506122a782612504565b5f6122bb82476124ef90919063ffffffff16565b90505f6122e5876122d7601454856124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f61230f88612301601554866124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f81838561231f9190613697565b6123299190613697565b90505f6016819055505f6014819055505f6015819055505f8711801561234e57505f81115b1561239b5761235d8782612737565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161239293929190613758565b60405180910390a15b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516123e0906137ba565b5f6040518083038185875af1925050503d805f811461241a576040519150601f19603f3d011682016040523d82523d5f602084013e61241f565b606091505b50508098505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161246a906137ba565b5f6040518083038185875af1925050503d805f81146124a4576040519150601f19603f3d011682016040523d82523d5f602084013e6124a9565b606091505b50508098505050505050505050505050565b5f81836124c891906135f9565b905092915050565b5f81836124dd9190613667565b905092915050565b505050565b505050565b5f81836124fc9190613697565b905092915050565b5f600267ffffffffffffffff8111156125205761251f612854565b5b60405190808252806020026020018201604052801561254e5781602001602082028036833780820191505090505b50905030815f8151811061256557612564612e7b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612608573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061262c91906137e2565b816001815181106126405761263f612e7b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506126a5307f000000000000000000000000000000000000000000000000000000000000000084611380565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016127069594939291906138fd565b5f604051808303815f87803b15801561271d575f80fd5b505af115801561272f573d5f803e3d5ffd5b505050505050565b612762307f000000000000000000000000000000000000000000000000000000000000000084611380565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016127e796959493929190613955565b60606040518083038185885af1158015612803573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061282891906139c8565b5050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61288a82612844565b810181811067ffffffffffffffff821117156128a9576128a8612854565b5b80604052505050565b5f6128bb61282f565b90506128c78282612881565b919050565b5f67ffffffffffffffff8211156128e6576128e5612854565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612924826128fb565b9050919050565b6129348161291a565b811461293e575f80fd5b50565b5f8135905061294f8161292b565b92915050565b5f612967612962846128cc565b6128b2565b9050808382526020820190506020840283018581111561298a576129896128f7565b5b835b818110156129b3578061299f8882612941565b84526020840193505060208101905061298c565b5050509392505050565b5f82601f8301126129d1576129d0612840565b5b81356129e1848260208601612955565b91505092915050565b5f8115159050919050565b6129fe816129ea565b8114612a08575f80fd5b50565b5f81359050612a19816129f5565b92915050565b5f8060408385031215612a3557612a34612838565b5b5f83013567ffffffffffffffff811115612a5257612a5161283c565b5b612a5e858286016129bd565b9250506020612a6f85828601612a0b565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612ab0578082015181840152602081019050612a95565b5f8484015250505050565b5f612ac582612a79565b612acf8185612a83565b9350612adf818560208601612a93565b612ae881612844565b840191505092915050565b5f6020820190508181035f830152612b0b8184612abb565b905092915050565b5f819050919050565b612b2581612b13565b8114612b2f575f80fd5b50565b5f81359050612b4081612b1c565b92915050565b5f8060408385031215612b5c57612b5b612838565b5b5f612b6985828601612941565b9250506020612b7a85828601612b32565b9150509250929050565b612b8d816129ea565b82525050565b5f602082019050612ba65f830184612b84565b92915050565b5f819050919050565b5f612bcf612bca612bc5846128fb565b612bac565b6128fb565b9050919050565b5f612be082612bb5565b9050919050565b5f612bf182612bd6565b9050919050565b612c0181612be7565b82525050565b5f602082019050612c1a5f830184612bf8565b92915050565b612c2981612b13565b82525050565b5f602082019050612c425f830184612c20565b92915050565b5f805f60608486031215612c5f57612c5e612838565b5b5f612c6c86828701612941565b9350506020612c7d86828701612941565b9250506040612c8e86828701612b32565b9150509250925092565b612ca18161291a565b82525050565b5f602082019050612cba5f830184612c98565b92915050565b5f60ff82169050919050565b612cd581612cc0565b82525050565b5f602082019050612cee5f830184612ccc565b92915050565b5f60208284031215612d0957612d08612838565b5b5f612d1684828501612941565b91505092915050565b5f80fd5b5f8083601f840112612d3857612d37612840565b5b8235905067ffffffffffffffff811115612d5557612d54612d1f565b5b602083019150836020820283011115612d7157612d706128f7565b5b9250929050565b5f805f60408486031215612d8f57612d8e612838565b5b5f84013567ffffffffffffffff811115612dac57612dab61283c565b5b612db886828701612d23565b93509350506020612dcb86828701612a0b565b9150509250925092565b5f8060408385031215612deb57612dea612838565b5b5f612df885828601612941565b9250506020612e0985828601612941565b9150509250929050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f612e47600e83612a83565b9150612e5282612e13565b602082019050919050565b5f6020820190508181035f830152612e7481612e3b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f54686520457863000000000000000000000000000000000000000000000000005f82015250565b5f612edc600783612a83565b9150612ee782612ea8565b602082019050919050565b5f6020820190508181035f830152612f0981612ed0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f5457607f821691505b602082108103612f6757612f66612f10565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e0000000000000000005f82015250565b5f612fa1601783612a83565b9150612fac82612f6d565b602082019050919050565b5f6020820190508181035f830152612fce81612f95565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61300c82612b13565b915061301783612b13565b925082820190508082111561302f5761302e612fd5565b5b92915050565b7f4e6f7400000000000000000000000000000000000000000000000000000000005f82015250565b5f613069600383612a83565b915061307482613035565b602082019050919050565b5f6020820190508181035f8301526130968161305d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6130f7602583612a83565b91506131028261309d565b604082019050919050565b5f6020820190508181035f830152613124816130eb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613185602683612a83565b91506131908261312b565b604082019050919050565b5f6020820190508181035f8301526131b281613179565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613213602483612a83565b915061321e826131b9565b604082019050919050565b5f6020820190508181035f83015261324081613207565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132a1602283612a83565b91506132ac82613247565b604082019050919050565b5f6020820190508181035f8301526132ce81613295565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613309602083612a83565b9150613314826132d5565b602082019050919050565b5f6020820190508181035f830152613336816132fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613371601d83612a83565b915061337c8261333d565b602082019050919050565b5f6020820190508181035f83015261339e81613365565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6133ff602583612a83565b915061340a826133a5565b604082019050919050565b5f6020820190508181035f83015261342c816133f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61348d602383612a83565b915061349882613433565b604082019050919050565b5f6020820190508181035f8301526134ba81613481565b9050919050565b7f426c61636b6c69737465642061646472657373000000000000000000000000005f82015250565b5f6134f5601383612a83565b9150613500826134c1565b602082019050919050565b5f6020820190508181035f830152613522816134e9565b9050919050565b7f626c61636b6c69737421000000000000000000000000000000000000000000005f82015250565b5f61355d600a83612a83565b915061356882613529565b602082019050919050565b5f6020820190508181035f83015261358a81613551565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642100000000000000005f82015250565b5f6135c5601883612a83565b91506135d082613591565b602082019050919050565b5f6020820190508181035f8301526135f2816135b9565b9050919050565b5f61360382612b13565b915061360e83612b13565b925082820261361c81612b13565b9150828204841483151761363357613632612fd5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61367182612b13565b915061367c83612b13565b92508261368c5761368b61363a565b5b828204905092915050565b5f6136a182612b13565b91506136ac83612b13565b92508282039050818111156136c4576136c3612fd5565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613724602683612a83565b915061372f826136ca565b604082019050919050565b5f6020820190508181035f83015261375181613718565b9050919050565b5f60608201905061376b5f830186612c20565b6137786020830185612c20565b6137856040830184612c20565b949350505050565b5f81905092915050565b50565b5f6137a55f8361378d565b91506137b082613797565b5f82019050919050565b5f6137c48261379a565b9150819050919050565b5f815190506137dc8161292b565b92915050565b5f602082840312156137f7576137f6612838565b5b5f613804848285016137ce565b91505092915050565b5f819050919050565b5f61383061382b6138268461380d565b612bac565b612b13565b9050919050565b61384081613816565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6138788161291a565b82525050565b5f613889838361386f565b60208301905092915050565b5f602082019050919050565b5f6138ab82613846565b6138b58185613850565b93506138c083613860565b805f5b838110156138f05781516138d7888261387e565b97506138e283613895565b9250506001810190506138c3565b5085935050505092915050565b5f60a0820190506139105f830188612c20565b61391d6020830187613837565b818103604083015261392f81866138a1565b905061393e6060830185612c98565b61394b6080830184612c20565b9695505050505050565b5f60c0820190506139685f830189612c98565b6139756020830188612c20565b6139826040830187613837565b61398f6060830186613837565b61399c6080830185612c98565b6139a960a0830184612c20565b979650505050505050565b5f815190506139c281612b1c565b92915050565b5f805f606084860312156139df576139de612838565b5b5f6139ec868287016139b4565b93505060206139fd868287016139b4565b9250506040613a0e868287016139b4565b915050925092509256fea2646970667358221220e6d118698e98f03839e1399dddba1b3781c95aa155afe4a79dd407268bd6813264736f6c63430008180033
Deployed Bytecode
0x6080604052600436106101e6575f3560e01c8063715018a611610101578063b6d774d011610094578063df960d7711610063578063df960d77146106eb578063e2f4560514610713578063e433c4da1461073d578063f2fde38b14610767576101ed565b8063b6d774d014610631578063c04a54141461065b578063d469801614610685578063dd62ed3e146106af576101ed565b806393ec52de116100d057806393ec52de1461056557806395d89b411461058f578063a457c2d7146105b9578063a9059cbb146105f5576101ed565b8063715018a6146104d357806375f0a874146104e95780637d53ecbe146105135780638da5cb5b1461053b576101ed565b8063313ce567116101795780634ada218b116101485780634ada218b1461041b57806355f65d81146104455780636ddd17131461046d57806370a0823114610497576101ed565b8063313ce5671461034f578063333e99db1461037957806339509351146103b557806349bd5a5e146103f1576101ed565b806318160ddd116101b557806318160ddd146102a95780631aa85bfc146102d357806323b872dd146102e957806327c8f83514610325576101ed565b806306ba2fb9146101f157806306fdde0314610219578063095ea7b3146102435780631694505e1461027f576101ed565b366101ed57005b5f80fd5b3480156101fc575f80fd5b5061021760048036038101906102129190612a1f565b61078f565b005b348015610224575f80fd5b5061022d610945565b60405161023a9190612af3565b60405180910390f35b34801561024e575f80fd5b5061026960048036038101906102649190612b46565b6109d5565b6040516102769190612b93565b60405180910390f35b34801561028a575f80fd5b506102936109f7565b6040516102a09190612c07565b60405180910390f35b3480156102b4575f80fd5b506102bd610a1b565b6040516102ca9190612c2f565b60405180910390f35b3480156102de575f80fd5b506102e7610a24565b005b3480156102f4575f80fd5b5061030f600480360381019061030a9190612c48565b610ab4565b60405161031c9190612b93565b60405180910390f35b348015610330575f80fd5b50610339610ae2565b6040516103469190612ca7565b60405180910390f35b34801561035a575f80fd5b50610363610ae8565b6040516103709190612cdb565b60405180910390f35b348015610384575f80fd5b5061039f600480360381019061039a9190612cf4565b610af0565b6040516103ac9190612b93565b60405180910390f35b3480156103c0575f80fd5b506103db60048036038101906103d69190612b46565b610b42565b6040516103e89190612b93565b60405180910390f35b3480156103fc575f80fd5b50610405610b78565b6040516104129190612ca7565b60405180910390f35b348015610426575f80fd5b5061042f610b9d565b60405161043c9190612b93565b60405180910390f35b348015610450575f80fd5b5061046b60048036038101906104669190612d78565b610bb0565b005b348015610478575f80fd5b50610481610d8c565b60405161048e9190612b93565b60405180910390f35b3480156104a2575f80fd5b506104bd60048036038101906104b89190612cf4565b610d9f565b6040516104ca9190612c2f565b60405180910390f35b3480156104de575f80fd5b506104e7610de4565b005b3480156104f4575f80fd5b506104fd610df7565b60405161050a9190612ca7565b60405180910390f35b34801561051e575f80fd5b5061053960048036038101906105349190612cf4565b610e1c565b005b348015610546575f80fd5b5061054f610e67565b60405161055c9190612ca7565b60405180910390f35b348015610570575f80fd5b50610579610e8f565b6040516105869190612c2f565b60405180910390f35b34801561059a575f80fd5b506105a3610e95565b6040516105b09190612af3565b60405180910390f35b3480156105c4575f80fd5b506105df60048036038101906105da9190612b46565b610f25565b6040516105ec9190612b93565b60405180910390f35b348015610600575f80fd5b5061061b60048036038101906106169190612b46565b610f9a565b6040516106289190612b93565b60405180910390f35b34801561063c575f80fd5b50610645610fbc565b6040516106529190612c2f565b60405180910390f35b348015610666575f80fd5b5061066f610fc2565b60405161067c9190612ca7565b60405180910390f35b348015610690575f80fd5b50610699610fe7565b6040516106a69190612ca7565b60405180910390f35b3480156106ba575f80fd5b506106d560048036038101906106d09190612dd5565b61100c565b6040516106e29190612c2f565b60405180910390f35b3480156106f6575f80fd5b50610711600480360381019061070c9190612a1f565b61108e565b005b34801561071e575f80fd5b5061072761124d565b6040516107349190612c2f565b60405180910390f35b348015610748575f80fd5b50610751611253565b60405161075e9190612c2f565b60405180910390f35b348015610772575f80fd5b5061078d60048036038101906107889190612cf4565b611259565b005b610797610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061081c5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61085b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085290612e5d565b60405180910390fd5b5f5b82518110156109405760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168382815181106108b1576108b0612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff160361090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612ef2565b60405180910390fd5b61093383828151811061092557610924612e7b565b5b6020026020010151836112db565b808060010191505061085d565b505050565b60606004805461095490612f3d565b80601f016020809104026020016040519081016040528092919081815260200182805461098090612f3d565b80156109cb5780601f106109a2576101008083540402835291602001916109cb565b820191905f5260205f20905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b5f806109df611379565b90506109ec818585611380565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610a2c611543565b600a60149054906101000a900460ff1615610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390612fb7565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b5f80610abe611379565b9050610acb8582856115c1565b610ad685858561164c565b60019150509392505050565b61dead81565b5f6012905090565b5f601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f80610b4c611379565b9050610b6d818585610b5e858961100c565b610b689190613002565b611380565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b610bb8610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c3d5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c739061307f565b60405180910390fd5b5f5b83839050811015610d865781601b5f868685818110610ca057610c9f612e7b565b5b9050602002016020810190610cb59190612cf4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550838382818110610d1757610d16612e7b565b5b9050602002016020810190610d2c9190612cf4565b73ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac83604051610d719190612b93565b60405180910390a28080600101915050610c7e565b50505050565b600a60159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610dec611543565b610df55f611f00565b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e24611543565b80601a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610ea490612f3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090612f3d565b8015610f1b5780601f10610ef257610100808354040283529160200191610f1b565b820191905f5260205f20905b815481529060010190602001808311610efe57829003601f168201915b5050505050905090565b5f80610f2f611379565b90505f610f3c828661100c565b905083811015610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f789061310d565b60405180910390fd5b610f8e8286868403611380565b60019250505092915050565b5f80610fa4611379565b9050610fb181858561164c565b600191505092915050565b600c5481565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611096610e67565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061111b5750601a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190612e5d565b60405180910390fd5b5f5b8251811015611248578160185f85848151811061117c5761117b612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508281815181106111e6576111e5612e7b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7836040516112339190612b93565b60405180910390a2808060010191505061115c565b505050565b600b5481565b60105481565b611261611543565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061319b565b60405180910390fd5b6112d881611f00565b50565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f8f92f221a13f96f57d943e971a7b41e19d8af3896e54f1d4b81236f84690fddd60405160405180910390a35050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613229565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361145c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611453906132b7565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115369190612c2f565b60405180910390a3505050565b61154b611379565b73ffffffffffffffffffffffffffffffffffffffff16611569610e67565b73ffffffffffffffffffffffffffffffffffffffff16146115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b69061331f565b60405180910390fd5b565b5f6115cc848461100c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116465781811015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613387565b60405180910390fd5b6116458484848403611380565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f906134a3565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156117c65750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061350b565b60405180910390fd5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156118a35750601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118f65750601b5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90613573565b60405180910390fd5b600a60149054906101000a900460ff1680611996575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806119e7575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d906135db565b60405180910390fd5b5f8103611a3d57611a3883835f611fc3565b611efb565b5f611a4730610d9f565b90505f600b548210159050808015611a6b5750600a60159054906101000a900460ff165b8015611a845750600a60169054906101000a900460ff16155b8015611ad6575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611b29575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611b7c575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611bbf576001600a60166101000a81548160ff021916908315150217905550611ba461222f565b5f600a60166101000a81548160ff0219169083151502179055505b5f600a60169054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c6e575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611c77575f90505b5f8115611ee25760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cd557505f601054115b15611da057611d03612710611cf5601054886124bb90919063ffffffff16565b6124d090919063ffffffff16565b905060105460135482611d1691906135f9565b611d209190613667565b60165f828254611d309190613002565b9250508190555060105460115482611d4891906135f9565b611d529190613667565b60145f828254611d629190613002565b9250508190555060105460125482611d7a91906135f9565b611d849190613667565b60155f828254611d949190613002565b92505081905550611ebf565b60195f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611df757505f600c54115b15611ebe57611e25612710611e17600c54886124bb90919063ffffffff16565b6124d090919063ffffffff16565b9050600c54600f5482611e3891906135f9565b611e429190613667565b60165f828254611e529190613002565b92505081905550600c54600d5482611e6a91906135f9565b611e749190613667565b60145f828254611e849190613002565b92505081905550600c54600e5482611e9c91906135f9565b611ea69190613667565b60155f828254611eb69190613002565b925050819055505b5b5f811115611ed357611ed2873083611fc3565b5b8085611edf9190613697565b94505b611eed878787611fc3565b601754601081905550505050505b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890613415565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906134a3565b60405180910390fd5b6120aa8383836124e5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561212d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121249061373a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122169190612c2f565b60405180910390a36122298484846124ea565b50505050565b5f61223930610d9f565b90505f60155460145460165461224f9190613002565b6122599190613002565b90505f806002836016548661226e91906135f9565b6122789190613667565b6122829190613667565b90505f61229882866124ef90919063ffffffff16565b90505f4790506122a782612504565b5f6122bb82476124ef90919063ffffffff16565b90505f6122e5876122d7601454856124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f61230f88612301601554866124bb90919063ffffffff16565b6124d090919063ffffffff16565b90505f81838561231f9190613697565b6123299190613697565b90505f6016819055505f6014819055505f6015819055505f8711801561234e57505f81115b1561239b5761235d8782612737565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161239293929190613758565b60405180910390a15b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516123e0906137ba565b5f6040518083038185875af1925050503d805f811461241a576040519150601f19603f3d011682016040523d82523d5f602084013e61241f565b606091505b50508098505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161246a906137ba565b5f6040518083038185875af1925050503d805f81146124a4576040519150601f19603f3d011682016040523d82523d5f602084013e6124a9565b606091505b50508098505050505050505050505050565b5f81836124c891906135f9565b905092915050565b5f81836124dd9190613667565b905092915050565b505050565b505050565b5f81836124fc9190613697565b905092915050565b5f600267ffffffffffffffff8111156125205761251f612854565b5b60405190808252806020026020018201604052801561254e5781602001602082028036833780820191505090505b50905030815f8151811061256557612564612e7b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612608573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061262c91906137e2565b816001815181106126405761263f612e7b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506126a5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611380565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016127069594939291906138fd565b5f604051808303815f87803b15801561271d575f80fd5b505af115801561272f573d5f803e3d5ffd5b505050505050565b612762307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611380565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016127e796959493929190613955565b60606040518083038185885af1158015612803573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061282891906139c8565b5050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61288a82612844565b810181811067ffffffffffffffff821117156128a9576128a8612854565b5b80604052505050565b5f6128bb61282f565b90506128c78282612881565b919050565b5f67ffffffffffffffff8211156128e6576128e5612854565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612924826128fb565b9050919050565b6129348161291a565b811461293e575f80fd5b50565b5f8135905061294f8161292b565b92915050565b5f612967612962846128cc565b6128b2565b9050808382526020820190506020840283018581111561298a576129896128f7565b5b835b818110156129b3578061299f8882612941565b84526020840193505060208101905061298c565b5050509392505050565b5f82601f8301126129d1576129d0612840565b5b81356129e1848260208601612955565b91505092915050565b5f8115159050919050565b6129fe816129ea565b8114612a08575f80fd5b50565b5f81359050612a19816129f5565b92915050565b5f8060408385031215612a3557612a34612838565b5b5f83013567ffffffffffffffff811115612a5257612a5161283c565b5b612a5e858286016129bd565b9250506020612a6f85828601612a0b565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612ab0578082015181840152602081019050612a95565b5f8484015250505050565b5f612ac582612a79565b612acf8185612a83565b9350612adf818560208601612a93565b612ae881612844565b840191505092915050565b5f6020820190508181035f830152612b0b8184612abb565b905092915050565b5f819050919050565b612b2581612b13565b8114612b2f575f80fd5b50565b5f81359050612b4081612b1c565b92915050565b5f8060408385031215612b5c57612b5b612838565b5b5f612b6985828601612941565b9250506020612b7a85828601612b32565b9150509250929050565b612b8d816129ea565b82525050565b5f602082019050612ba65f830184612b84565b92915050565b5f819050919050565b5f612bcf612bca612bc5846128fb565b612bac565b6128fb565b9050919050565b5f612be082612bb5565b9050919050565b5f612bf182612bd6565b9050919050565b612c0181612be7565b82525050565b5f602082019050612c1a5f830184612bf8565b92915050565b612c2981612b13565b82525050565b5f602082019050612c425f830184612c20565b92915050565b5f805f60608486031215612c5f57612c5e612838565b5b5f612c6c86828701612941565b9350506020612c7d86828701612941565b9250506040612c8e86828701612b32565b9150509250925092565b612ca18161291a565b82525050565b5f602082019050612cba5f830184612c98565b92915050565b5f60ff82169050919050565b612cd581612cc0565b82525050565b5f602082019050612cee5f830184612ccc565b92915050565b5f60208284031215612d0957612d08612838565b5b5f612d1684828501612941565b91505092915050565b5f80fd5b5f8083601f840112612d3857612d37612840565b5b8235905067ffffffffffffffff811115612d5557612d54612d1f565b5b602083019150836020820283011115612d7157612d706128f7565b5b9250929050565b5f805f60408486031215612d8f57612d8e612838565b5b5f84013567ffffffffffffffff811115612dac57612dab61283c565b5b612db886828701612d23565b93509350506020612dcb86828701612a0b565b9150509250925092565b5f8060408385031215612deb57612dea612838565b5b5f612df885828601612941565b9250506020612e0985828601612941565b9150509250929050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f612e47600e83612a83565b9150612e5282612e13565b602082019050919050565b5f6020820190508181035f830152612e7481612e3b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f54686520457863000000000000000000000000000000000000000000000000005f82015250565b5f612edc600783612a83565b9150612ee782612ea8565b602082019050919050565b5f6020820190508181035f830152612f0981612ed0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f5457607f821691505b602082108103612f6757612f66612f10565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e0000000000000000005f82015250565b5f612fa1601783612a83565b9150612fac82612f6d565b602082019050919050565b5f6020820190508181035f830152612fce81612f95565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61300c82612b13565b915061301783612b13565b925082820190508082111561302f5761302e612fd5565b5b92915050565b7f4e6f7400000000000000000000000000000000000000000000000000000000005f82015250565b5f613069600383612a83565b915061307482613035565b602082019050919050565b5f6020820190508181035f8301526130968161305d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6130f7602583612a83565b91506131028261309d565b604082019050919050565b5f6020820190508181035f830152613124816130eb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613185602683612a83565b91506131908261312b565b604082019050919050565b5f6020820190508181035f8301526131b281613179565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613213602483612a83565b915061321e826131b9565b604082019050919050565b5f6020820190508181035f83015261324081613207565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132a1602283612a83565b91506132ac82613247565b604082019050919050565b5f6020820190508181035f8301526132ce81613295565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613309602083612a83565b9150613314826132d5565b602082019050919050565b5f6020820190508181035f830152613336816132fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613371601d83612a83565b915061337c8261333d565b602082019050919050565b5f6020820190508181035f83015261339e81613365565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6133ff602583612a83565b915061340a826133a5565b604082019050919050565b5f6020820190508181035f83015261342c816133f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61348d602383612a83565b915061349882613433565b604082019050919050565b5f6020820190508181035f8301526134ba81613481565b9050919050565b7f426c61636b6c69737465642061646472657373000000000000000000000000005f82015250565b5f6134f5601383612a83565b9150613500826134c1565b602082019050919050565b5f6020820190508181035f830152613522816134e9565b9050919050565b7f626c61636b6c69737421000000000000000000000000000000000000000000005f82015250565b5f61355d600a83612a83565b915061356882613529565b602082019050919050565b5f6020820190508181035f83015261358a81613551565b9050919050565b7f54726164696e67206e6f742079657420656e61626c65642100000000000000005f82015250565b5f6135c5601883612a83565b91506135d082613591565b602082019050919050565b5f6020820190508181035f8301526135f2816135b9565b9050919050565b5f61360382612b13565b915061360e83612b13565b925082820261361c81612b13565b9150828204841483151761363357613632612fd5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61367182612b13565b915061367c83612b13565b92508261368c5761368b61363a565b5b828204905092915050565b5f6136a182612b13565b91506136ac83612b13565b92508282039050818111156136c4576136c3612fd5565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613724602683612a83565b915061372f826136ca565b604082019050919050565b5f6020820190508181035f83015261375181613718565b9050919050565b5f60608201905061376b5f830186612c20565b6137786020830185612c20565b6137856040830184612c20565b949350505050565b5f81905092915050565b50565b5f6137a55f8361378d565b91506137b082613797565b5f82019050919050565b5f6137c48261379a565b9150819050919050565b5f815190506137dc8161292b565b92915050565b5f602082840312156137f7576137f6612838565b5b5f613804848285016137ce565b91505092915050565b5f819050919050565b5f61383061382b6138268461380d565b612bac565b612b13565b9050919050565b61384081613816565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6138788161291a565b82525050565b5f613889838361386f565b60208301905092915050565b5f602082019050919050565b5f6138ab82613846565b6138b58185613850565b93506138c083613860565b805f5b838110156138f05781516138d7888261387e565b97506138e283613895565b9250506001810190506138c3565b5085935050505092915050565b5f60a0820190506139105f830188612c20565b61391d6020830187613837565b818103604083015261392f81866138a1565b905061393e6060830185612c98565b61394b6080830184612c20565b9695505050505050565b5f60c0820190506139685f830189612c98565b6139756020830188612c20565b6139826040830187613837565b61398f6060830186613837565b61399c6080830185612c98565b6139a960a0830184612c20565b979650505050505050565b5f815190506139c281612b1c565b92915050565b5f805f606084860312156139df576139de612838565b5b5f6139ec868287016139b4565b93505060206139fd868287016139b4565b9250506040613a0e868287016139b4565b915050925092509256fea2646970667358221220e6d118698e98f03839e1399dddba1b3781c95aa155afe4a79dd407268bd6813264736f6c63430008180033
Deployed Bytecode Sourcemap
28372:9464:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32297:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8222:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10411:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28448:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9351:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31255:169;;;;;;;;;;;;;:::i;:::-;;10661:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28656:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9193:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31849:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10964:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28506:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28718:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31527:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28751:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9522:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1567:103;;;;;;;;;;;;;:::i;:::-;;28543:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31432:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;926:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7761:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8441:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11242:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9905:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28854:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28580:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28619:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10202:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31966:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28812:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28990:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1825:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32297:298;32386:7;:5;:7::i;:::-;32372:21;;:10;:21;;;:46;;;;32411:7;;;;;;;;;;;32397:21;;:10;:21;;;32372:46;32364:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32449:9;32444:148;32468:5;:12;32464:1;:16;32444:148;;;32518:13;;;;;;;;;;;32506:25;;:5;32512:1;32506:8;;;;;;;;:::i;:::-;;;;;;;;:25;;;32498:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;32554:30;32568:5;32574:1;32568:8;;;;;;;;:::i;:::-;;;;;;;;32578:5;32554:13;:30::i;:::-;32482:3;;;;;;;32444:148;;;;32297:298;;:::o;8222:100::-;8276:13;8309:5;8302:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8222:100;:::o;10411:242::-;10530:4;10552:13;10568:12;:10;:12::i;:::-;10552:28;;10591:32;10600:5;10607:7;10616:6;10591:8;:32::i;:::-;10641:4;10634:11;;;10411:242;;;;:::o;28448:51::-;;;:::o;9351:108::-;9412:7;9439:12;;9432:19;;9351:108;:::o;31255:169::-;812:13;:11;:13::i;:::-;31313:14:::1;;;;;;;;;;;31312:15;31304:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;31383:4;31366:14;;:21;;;;;;;;;;;;;;;;;;31412:4;31398:11;;:18;;;;;;;;;;;;;;;;;;31255:169::o:0;10661:295::-;10792:4;10809:15;10827:12;:10;:12::i;:::-;10809:30;;10850:38;10866:4;10872:7;10881:6;10850:15;:38::i;:::-;10899:27;10909:4;10915:2;10919:6;10899:9;:27::i;:::-;10944:4;10937:11;;;10661:295;;;;;:::o;28656:53::-;28702:6;28656:53;:::o;9193:93::-;9251:5;9276:2;9269:9;;9193:93;:::o;31849:110::-;31908:4;31932:10;:19;31943:7;31932:19;;;;;;;;;;;;;;;;;;;;;;;;;31925:26;;31849:110;;;:::o;10964:270::-;11079:4;11101:13;11117:12;:10;:12::i;:::-;11101:28;;11140:64;11149:5;11156:7;11193:10;11165:25;11175:5;11182:7;11165:9;:25::i;:::-;:38;;;;:::i;:::-;11140:8;:64::i;:::-;11222:4;11215:11;;;10964:270;;;;:::o;28506:28::-;;;;;;;;;;;;;:::o;28718:26::-;;;;;;;;;;;;;:::o;31527:320::-;31633:7;:5;:7::i;:::-;31619:21;;:10;:21;;;:46;;;;31658:7;;;;;;;;;;;31644:21;;:10;:21;;;31619:46;31611:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31685:9;31680:164;31704:8;;:15;;31700:1;:19;31680:164;;;31763:13;31737:10;:23;31748:8;;31757:1;31748:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;31737:23;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;31809:8;;31818:1;31809:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;31792:44;;;31822:13;31792:44;;;;;;:::i;:::-;;;;;;;;31721:3;;;;;;;31680:164;;;;31527:320;;;:::o;28751:23::-;;;;;;;;;;;;;:::o;9522:177::-;9641:7;9673:9;:18;9683:7;9673:18;;;;;;;;;;;;;;;;9666:25;;9522:177;;;:::o;1567:103::-;812:13;:11;:13::i;:::-;1632:30:::1;1659:1;1632:18;:30::i;:::-;1567:103::o:0;28543:30::-;;;;;;;;;;;;;:::o;31432:91::-;812:13;:11;:13::i;:::-;31507:8:::1;31497:7;;:18;;;;;;;;;;;;;;;;;;31432:91:::0;:::o;926:87::-;972:7;999:6;;;;;;;;;;;992:13;;926:87;:::o;7761:26::-;;;;:::o;8441:104::-;8497:13;8530:7;8523:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8441:104;:::o;11242:505::-;11362:4;11384:13;11400:12;:10;:12::i;:::-;11384:28;;11423:24;11450:25;11460:5;11467:7;11450:9;:25::i;:::-;11423:52;;11528:15;11508:16;:35;;11486:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11644:60;11653:5;11660:7;11688:15;11669:16;:34;11644:8;:60::i;:::-;11735:4;11728:11;;;;11242:505;;;;:::o;9905:234::-;10020:4;10042:13;10058:12;:10;:12::i;:::-;10042:28;;10081;10091:5;10098:2;10102:6;10081:9;:28::i;:::-;10127:4;10120:11;;;9905:234;;;;:::o;28854:27::-;;;;:::o;28580:32::-;;;;;;;;;;;;;:::o;28619:30::-;;;;;;;;;;;;;:::o;10202:201::-;10336:7;10368:11;:18;10380:5;10368:18;;;;;;;;;;;;;;;:27;10387:7;10368:27;;;;;;;;;;;;;;;;10361:34;;10202:201;;;;:::o;31966:324::-;32067:7;:5;:7::i;:::-;32053:21;;:10;:21;;;:46;;;;32092:7;;;;;;;;;;;32078:21;;:10;:21;;;32053:46;32045:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32130:9;32125:162;32149:8;:15;32145:1;:19;32125:162;;;32217:8;32182:19;:32;32202:8;32211:1;32202:11;;;;;;;;:::i;:::-;;;;;;;;32182:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;32257:8;32266:1;32257:11;;;;;;;;:::i;:::-;;;;;;;;32241:38;;;32270:8;32241:38;;;;;;:::i;:::-;;;;;;;;32166:3;;;;;;;32125:162;;;;31966:324;;:::o;28812:33::-;;;;:::o;28990:27::-;;;;:::o;1825:238::-;812:13;:11;:13::i;:::-;1948:1:::1;1928:22;;:8;:22;;::::0;1906:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2027:28;2046:8;2027:18;:28::i;:::-;1825:238:::0;:::o;32605:153::-;32708:5;32674:25;:31;32700:4;32674:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;32744:5;32729:21;;32738:4;32729:21;;;;;;;;;;;;32605:153;;:::o;203:98::-;256:7;283:10;276:17;;203:98;:::o;13879:380::-;14032:1;14015:19;;:5;:19;;;14007:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14113:1;14094:21;;:7;:21;;;14086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14197:6;14167:11;:18;14179:5;14167:18;;;;;;;;;;;;;;;:27;14186:7;14167:27;;;;;;;;;;;;;;;:36;;;;14235:7;14219:32;;14228:5;14219:32;;;14244:6;14219:32;;;;;;:::i;:::-;;;;;;;;13879:380;;;:::o;1091:132::-;1166:12;:10;:12::i;:::-;1155:23;;:7;:5;:7::i;:::-;:23;;;1147:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1091:132::o;14267:502::-;14402:24;14429:25;14439:5;14446:7;14429:9;:25::i;:::-;14402:52;;14489:17;14469:16;:37;14465:297;;14569:6;14549:16;:26;;14523:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14684:51;14693:5;14700:7;14728:6;14709:16;:25;14684:8;:51::i;:::-;14465:297;14391:378;14267:502;;;:::o;32766:2559::-;32914:1;32898:18;;:4;:18;;;32890:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32991:1;32977:16;;:2;:16;;;32969:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33053:10;:16;33064:4;33053:16;;;;;;;;;;;;;;;;;;;;;;;;;33052:17;:36;;;;;33074:10;:14;33085:2;33074:14;;;;;;;;;;;;;;;;;;;;;;;;;33073:15;33052:36;33044:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33132:10;:16;33143:4;33132:16;;;;;;;;;;;;;;;;;;;;;;;;;33131:17;:36;;;;;33153:10;:14;33164:2;33153:14;;;;;;;;;;;;;;;;;;;;;;;;;33152:15;33131:36;:62;;;;;33172:10;:21;33183:9;33172:21;;;;;;;;;;;;;;;;;;;;;;;;;33171:22;33131:62;33123:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33227:14;;;;;;;;;;;:43;;;;33245:19;:25;33265:4;33245:25;;;;;;;;;;;;;;;;;;;;;;;;;33227:43;:70;;;;33274:19;:23;33294:2;33274:23;;;;;;;;;;;;;;;;;;;;;;;;;33227:70;33219:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;33351:1;33341:6;:11;33337:93;;33369:28;33385:4;33391:2;33395:1;33369:15;:28::i;:::-;33412:7;;33337:93;33444:28;33475:24;33493:4;33475:9;:24::i;:::-;33444:55;;33512:12;33551:18;;33527:20;:42;;33512:57;;33600:7;:35;;;;;33624:11;;;;;;;;;;;33600:35;:48;;;;;33639:9;;;;;;;;;;;33638:10;33600:48;:81;;;;;33650:25;:31;33676:4;33650:31;;;;;;;;;;;;;;;;;;;;;;;;;33600:81;:124;;;;;33699:19;:25;33719:4;33699:25;;;;;;;;;;;;;;;;;;;;;;;;;33698:26;33600:124;:165;;;;;33742:19;:23;33762:2;33742:23;;;;;;;;;;;;;;;;;;;;;;;;;33741:24;33600:165;33582:300;;;33804:4;33792:9;;:16;;;;;;;;;;;;;;;;;;33825:11;:9;:11::i;:::-;33865:5;33853:9;;:17;;;;;;;;;;;;;;;;;;33582:300;33894:12;33910:9;;;;;;;;;;;33909:10;33894:25;;33936:19;:25;33956:4;33936:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33965:19;:23;33985:2;33965:23;;;;;;;;;;;;;;;;;;;;;;;;;33936:52;33932:100;;;34015:5;34005:15;;33932:100;34044:12;34077:7;34073:1161;;;34129:25;:29;34155:2;34129:29;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;;34177:1;34162:12;;:16;34129:49;34125:960;;;34206:35;34235:5;34206:24;34217:12;;34206:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;34199:42;;34354:12;;34312:17;;34305:4;:24;;;;:::i;:::-;34304:62;;;;:::i;:::-;34260:19;;:106;;;;;;;:::i;:::-;;;;;;;;34479:12;;34437:17;;34430:4;:24;;;;:::i;:::-;34429:62;;;;:::i;:::-;34385:19;;:106;;;;;;;:::i;:::-;;;;;;;;34608:12;;34564:19;;34557:4;:26;;;;:::i;:::-;34556:64;;;;:::i;:::-;34510:21;;:110;;;;;;;:::i;:::-;;;;;;;;34125:960;;;34682:25;:31;34708:4;34682:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;34732:1;34717:12;;:16;34682:51;34678:407;;;34761:35;34790:5;34761:24;34772:12;;34761:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;34754:42;;34861:12;;34846:11;;34839:4;:18;;;;:::i;:::-;34838:35;;;;:::i;:::-;34815:19;;:58;;;;;;;:::i;:::-;;;;;;;;34938:12;;34923:11;;34916:4;:18;;;;:::i;:::-;34915:35;;;;:::i;:::-;34892:19;;:58;;;;;;;:::i;:::-;;;;;;;;35057:12;;35023:9;;35016:4;:16;;;;:::i;:::-;35015:54;;;;:::i;:::-;34969:21;;:100;;;;;;;:::i;:::-;;;;;;;;34678:407;34125:960;35112:1;35105:4;:8;35101:91;;;35134:42;35150:4;35164;35171;35134:15;:42::i;:::-;35101:91;35218:4;35208:14;;;;;:::i;:::-;;;34073:1161;35246:33;35262:4;35268:2;35272:6;35246:15;:33::i;:::-;35305:12;;35290;:27;;;;32879:2446;;;;32766:2559;;;;:::o;2223:191::-;2297:16;2316:6;;;;;;;;;;;2297:25;;2342:8;2333:6;;:17;;;;;;;;;;;;;;;;;;2397:8;2366:40;;2387:8;2366:40;;;;;;;;;;;;2286:128;2223:191;:::o;11755:877::-;11902:1;11886:18;;:4;:18;;;11878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11979:1;11965:16;;:2;:16;;;11957:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12034:38;12055:4;12061:2;12065:6;12034:20;:38::i;:::-;12085:19;12107:9;:15;12117:4;12107:15;;;;;;;;;;;;;;;;12085:37;;12170:6;12155:11;:21;;12133:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12310:6;12296:11;:20;12278:9;:15;12288:4;12278:15;;;;;;;;;;;;;;;:38;;;;12513:6;12496:9;:13;12506:2;12496:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12563:2;12548:26;;12557:4;12548:26;;;12567:6;12548:26;;;;;;:::i;:::-;;;;;;;;12587:37;12607:4;12613:2;12617:6;12587:19;:37::i;:::-;11867:765;11755:877;;;:::o;36224:1607::-;36265:23;36291:24;36309:4;36291:9;:24::i;:::-;36265:50;;36326:25;36424:21;;36389:19;;36354;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;36326:119;;36456:12;36483:23;36597:1;36564:17;36528:19;;36510:15;:37;;;;:::i;:::-;36509:72;;;;:::i;:::-;:89;;;;:::i;:::-;36483:115;;36609:26;36638:36;36658:15;36638;:19;;:36;;;;:::i;:::-;36609:65;;36687:25;36715:21;36687:49;;36749:37;36767:18;36749:17;:37::i;:::-;36799:18;36820:44;36846:17;36820:21;:25;;:44;;;;:::i;:::-;36799:65;;36877:23;36903:82;36957:17;36903:35;36918:19;;36903:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;36877:108;;36998:25;37026:84;37082:17;37026:37;37041:21;;37026:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;36998:112;;37123:23;37206:17;37175:15;37149:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;37123:100;;37258:1;37236:19;:23;;;;37292:1;37270:19;:23;;;;37328:1;37304:21;:25;;;;37364:1;37346:15;:19;:42;;;;;37387:1;37369:15;:19;37346:42;37342:280;;;37405:47;37419:15;37436;37405:13;:47::i;:::-;37472:138;37505:18;37542:15;37576:19;;37472:138;;;;;;;;:::i;:::-;;;;;;;;37342:280;37656:17;;;;;;;;;;;37648:31;;37687:17;37648:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37634:75;;;;;37744:15;;;;;;;;;;;37736:29;;37787:21;37736:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37722:101;;;;;36254:1577;;;;;;;;;;36224:1607::o;18396:98::-;18454:7;18485:1;18481;:5;;;;:::i;:::-;18474:12;;18396:98;;;;:::o;18795:::-;18853:7;18884:1;18880;:5;;;;:::i;:::-;18873:12;;18795:98;;;;:::o;14777:125::-;;;;:::o;14910:124::-;;;;:::o;18039:98::-;18097:7;18128:1;18124;:5;;;;:::i;:::-;18117:12;;18039:98;;;;:::o;35333:503::-;35401:21;35439:1;35425:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35401:40;;35470:4;35452;35457:1;35452:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35496:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35486:4;35491:1;35486:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;35531:62;35548:4;35563:15;35581:11;35531:8;:62::i;:::-;35632:15;:66;;;35713:11;35739:1;35755:4;35782;35802:15;35632:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35390:446;35333:503;:::o;35844:372::-;35927:62;35944:4;35959:15;35977:11;35927:8;:62::i;:::-;36002:15;:31;;;36041:9;36074:4;36094:11;36120:1;36136;36152:15;;;;;;;;;;;36182;36002:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35844:372;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:102;498:6;549:2;545:7;540:2;533:5;529:14;525:28;515:38;;457:102;;;:::o;565:180::-;613:77;610:1;603:88;710:4;707:1;700:15;734:4;731:1;724:15;751:281;834:27;856:4;834:27;:::i;:::-;826:6;822:40;964:6;952:10;949:22;928:18;916:10;913:34;910:62;907:88;;;975:18;;:::i;:::-;907:88;1015:10;1011:2;1004:22;794:238;751:281;;:::o;1038:129::-;1072:6;1099:20;;:::i;:::-;1089:30;;1128:33;1156:4;1148:6;1128:33;:::i;:::-;1038:129;;;:::o;1173:311::-;1250:4;1340:18;1332:6;1329:30;1326:56;;;1362:18;;:::i;:::-;1326:56;1412:4;1404:6;1400:17;1392:25;;1472:4;1466;1462:15;1454:23;;1173:311;;;:::o;1490:117::-;1599:1;1596;1589:12;1613:126;1650:7;1690:42;1683:5;1679:54;1668:65;;1613:126;;;:::o;1745:96::-;1782:7;1811:24;1829:5;1811:24;:::i;:::-;1800:35;;1745:96;;;:::o;1847:122::-;1920:24;1938:5;1920:24;:::i;:::-;1913:5;1910:35;1900:63;;1959:1;1956;1949:12;1900:63;1847:122;:::o;1975:139::-;2021:5;2059:6;2046:20;2037:29;;2075:33;2102:5;2075:33;:::i;:::-;1975:139;;;;:::o;2137:710::-;2233:5;2258:81;2274:64;2331:6;2274:64;:::i;:::-;2258:81;:::i;:::-;2249:90;;2359:5;2388:6;2381:5;2374:21;2422:4;2415:5;2411:16;2404:23;;2475:4;2467:6;2463:17;2455:6;2451:30;2504:3;2496:6;2493:15;2490:122;;;2523:79;;:::i;:::-;2490:122;2638:6;2621:220;2655:6;2650:3;2647:15;2621:220;;;2730:3;2759:37;2792:3;2780:10;2759:37;:::i;:::-;2754:3;2747:50;2826:4;2821:3;2817:14;2810:21;;2697:144;2681:4;2676:3;2672:14;2665:21;;2621:220;;;2625:21;2239:608;;2137:710;;;;;:::o;2870:370::-;2941:5;2990:3;2983:4;2975:6;2971:17;2967:27;2957:122;;2998:79;;:::i;:::-;2957:122;3115:6;3102:20;3140:94;3230:3;3222:6;3215:4;3207:6;3203:17;3140:94;:::i;:::-;3131:103;;2947:293;2870:370;;;;:::o;3246:90::-;3280:7;3323:5;3316:13;3309:21;3298:32;;3246:90;;;:::o;3342:116::-;3412:21;3427:5;3412:21;:::i;:::-;3405:5;3402:32;3392:60;;3448:1;3445;3438:12;3392:60;3342:116;:::o;3464:133::-;3507:5;3545:6;3532:20;3523:29;;3561:30;3585:5;3561:30;:::i;:::-;3464:133;;;;:::o;3603:678::-;3693:6;3701;3750:2;3738:9;3729:7;3725:23;3721:32;3718:119;;;3756:79;;:::i;:::-;3718:119;3904:1;3893:9;3889:17;3876:31;3934:18;3926:6;3923:30;3920:117;;;3956:79;;:::i;:::-;3920:117;4061:78;4131:7;4122:6;4111:9;4107:22;4061:78;:::i;:::-;4051:88;;3847:302;4188:2;4214:50;4256:7;4247:6;4236:9;4232:22;4214:50;:::i;:::-;4204:60;;4159:115;3603:678;;;;;:::o;4287:99::-;4339:6;4373:5;4367:12;4357:22;;4287:99;;;:::o;4392:169::-;4476:11;4510:6;4505:3;4498:19;4550:4;4545:3;4541:14;4526:29;;4392:169;;;;:::o;4567:246::-;4648:1;4658:113;4672:6;4669:1;4666:13;4658:113;;;4757:1;4752:3;4748:11;4742:18;4738:1;4733:3;4729:11;4722:39;4694:2;4691:1;4687:10;4682:15;;4658:113;;;4805:1;4796:6;4791:3;4787:16;4780:27;4629:184;4567:246;;;:::o;4819:377::-;4907:3;4935:39;4968:5;4935:39;:::i;:::-;4990:71;5054:6;5049:3;4990:71;:::i;:::-;4983:78;;5070:65;5128:6;5123:3;5116:4;5109:5;5105:16;5070:65;:::i;:::-;5160:29;5182:6;5160:29;:::i;:::-;5155:3;5151:39;5144:46;;4911:285;4819:377;;;;:::o;5202:313::-;5315:4;5353:2;5342:9;5338:18;5330:26;;5402:9;5396:4;5392:20;5388:1;5377:9;5373:17;5366:47;5430:78;5503:4;5494:6;5430:78;:::i;:::-;5422:86;;5202:313;;;;:::o;5521:77::-;5558:7;5587:5;5576:16;;5521:77;;;:::o;5604:122::-;5677:24;5695:5;5677:24;:::i;:::-;5670:5;5667:35;5657:63;;5716:1;5713;5706:12;5657:63;5604:122;:::o;5732:139::-;5778:5;5816:6;5803:20;5794:29;;5832:33;5859:5;5832:33;:::i;:::-;5732:139;;;;:::o;5877:474::-;5945:6;5953;6002:2;5990:9;5981:7;5977:23;5973:32;5970:119;;;6008:79;;:::i;:::-;5970:119;6128:1;6153:53;6198:7;6189:6;6178:9;6174:22;6153:53;:::i;:::-;6143:63;;6099:117;6255:2;6281:53;6326:7;6317:6;6306:9;6302:22;6281:53;:::i;:::-;6271:63;;6226:118;5877:474;;;;;:::o;6357:109::-;6438:21;6453:5;6438:21;:::i;:::-;6433:3;6426:34;6357:109;;:::o;6472:210::-;6559:4;6597:2;6586:9;6582:18;6574:26;;6610:65;6672:1;6661:9;6657:17;6648:6;6610:65;:::i;:::-;6472:210;;;;:::o;6688:60::-;6716:3;6737:5;6730:12;;6688:60;;;:::o;6754:142::-;6804:9;6837:53;6855:34;6864:24;6882:5;6864:24;:::i;:::-;6855:34;:::i;:::-;6837:53;:::i;:::-;6824:66;;6754:142;;;:::o;6902:126::-;6952:9;6985:37;7016:5;6985:37;:::i;:::-;6972:50;;6902:126;;;:::o;7034:153::-;7111:9;7144:37;7175:5;7144:37;:::i;:::-;7131:50;;7034:153;;;:::o;7193:185::-;7307:64;7365:5;7307:64;:::i;:::-;7302:3;7295:77;7193:185;;:::o;7384:276::-;7504:4;7542:2;7531:9;7527:18;7519:26;;7555:98;7650:1;7639:9;7635:17;7626:6;7555:98;:::i;:::-;7384:276;;;;:::o;7666:118::-;7753:24;7771:5;7753:24;:::i;:::-;7748:3;7741:37;7666:118;;:::o;7790:222::-;7883:4;7921:2;7910:9;7906:18;7898:26;;7934:71;8002:1;7991:9;7987:17;7978:6;7934:71;:::i;:::-;7790:222;;;;:::o;8018:619::-;8095:6;8103;8111;8160:2;8148:9;8139:7;8135:23;8131:32;8128:119;;;8166:79;;:::i;:::-;8128:119;8286:1;8311:53;8356:7;8347:6;8336:9;8332:22;8311:53;:::i;:::-;8301:63;;8257:117;8413:2;8439:53;8484:7;8475:6;8464:9;8460:22;8439:53;:::i;:::-;8429:63;;8384:118;8541:2;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8512:118;8018:619;;;;;:::o;8643:118::-;8730:24;8748:5;8730:24;:::i;:::-;8725:3;8718:37;8643:118;;:::o;8767:222::-;8860:4;8898:2;8887:9;8883:18;8875:26;;8911:71;8979:1;8968:9;8964:17;8955:6;8911:71;:::i;:::-;8767:222;;;;:::o;8995:86::-;9030:7;9070:4;9063:5;9059:16;9048:27;;8995:86;;;:::o;9087:112::-;9170:22;9186:5;9170:22;:::i;:::-;9165:3;9158:35;9087:112;;:::o;9205:214::-;9294:4;9332:2;9321:9;9317:18;9309:26;;9345:67;9409:1;9398:9;9394:17;9385:6;9345:67;:::i;:::-;9205:214;;;;:::o;9425:329::-;9484:6;9533:2;9521:9;9512:7;9508:23;9504:32;9501:119;;;9539:79;;:::i;:::-;9501:119;9659:1;9684:53;9729:7;9720:6;9709:9;9705:22;9684:53;:::i;:::-;9674:63;;9630:117;9425:329;;;;:::o;9760:117::-;9869:1;9866;9859:12;9900:568;9973:8;9983:6;10033:3;10026:4;10018:6;10014:17;10010:27;10000:122;;10041:79;;:::i;:::-;10000:122;10154:6;10141:20;10131:30;;10184:18;10176:6;10173:30;10170:117;;;10206:79;;:::i;:::-;10170:117;10320:4;10312:6;10308:17;10296:29;;10374:3;10366:4;10358:6;10354:17;10344:8;10340:32;10337:41;10334:128;;;10381:79;;:::i;:::-;10334:128;9900:568;;;;;:::o;10474:698::-;10566:6;10574;10582;10631:2;10619:9;10610:7;10606:23;10602:32;10599:119;;;10637:79;;:::i;:::-;10599:119;10785:1;10774:9;10770:17;10757:31;10815:18;10807:6;10804:30;10801:117;;;10837:79;;:::i;:::-;10801:117;10950:80;11022:7;11013:6;11002:9;10998:22;10950:80;:::i;:::-;10932:98;;;;10728:312;11079:2;11105:50;11147:7;11138:6;11127:9;11123:22;11105:50;:::i;:::-;11095:60;;11050:115;10474:698;;;;;:::o;11178:474::-;11246:6;11254;11303:2;11291:9;11282:7;11278:23;11274:32;11271:119;;;11309:79;;:::i;:::-;11271:119;11429:1;11454:53;11499:7;11490:6;11479:9;11475:22;11454:53;:::i;:::-;11444:63;;11400:117;11556:2;11582:53;11627:7;11618:6;11607:9;11603:22;11582:53;:::i;:::-;11572:63;;11527:118;11178:474;;;;;:::o;11658:164::-;11798:16;11794:1;11786:6;11782:14;11775:40;11658:164;:::o;11828:366::-;11970:3;11991:67;12055:2;12050:3;11991:67;:::i;:::-;11984:74;;12067:93;12156:3;12067:93;:::i;:::-;12185:2;12180:3;12176:12;12169:19;;11828:366;;;:::o;12200:419::-;12366:4;12404:2;12393:9;12389:18;12381:26;;12453:9;12447:4;12443:20;12439:1;12428:9;12424:17;12417:47;12481:131;12607:4;12481:131;:::i;:::-;12473:139;;12200:419;;;:::o;12625:180::-;12673:77;12670:1;12663:88;12770:4;12767:1;12760:15;12794:4;12791:1;12784:15;12811:157;12951:9;12947:1;12939:6;12935:14;12928:33;12811:157;:::o;12974:365::-;13116:3;13137:66;13201:1;13196:3;13137:66;:::i;:::-;13130:73;;13212:93;13301:3;13212:93;:::i;:::-;13330:2;13325:3;13321:12;13314:19;;12974:365;;;:::o;13345:419::-;13511:4;13549:2;13538:9;13534:18;13526:26;;13598:9;13592:4;13588:20;13584:1;13573:9;13569:17;13562:47;13626:131;13752:4;13626:131;:::i;:::-;13618:139;;13345:419;;;:::o;13770:180::-;13818:77;13815:1;13808:88;13915:4;13912:1;13905:15;13939:4;13936:1;13929:15;13956:320;14000:6;14037:1;14031:4;14027:12;14017:22;;14084:1;14078:4;14074:12;14105:18;14095:81;;14161:4;14153:6;14149:17;14139:27;;14095:81;14223:2;14215:6;14212:14;14192:18;14189:38;14186:84;;14242:18;;:::i;:::-;14186:84;14007:269;13956:320;;;:::o;14282:173::-;14422:25;14418:1;14410:6;14406:14;14399:49;14282:173;:::o;14461:366::-;14603:3;14624:67;14688:2;14683:3;14624:67;:::i;:::-;14617:74;;14700:93;14789:3;14700:93;:::i;:::-;14818:2;14813:3;14809:12;14802:19;;14461:366;;;:::o;14833:419::-;14999:4;15037:2;15026:9;15022:18;15014:26;;15086:9;15080:4;15076:20;15072:1;15061:9;15057:17;15050:47;15114:131;15240:4;15114:131;:::i;:::-;15106:139;;14833:419;;;:::o;15258:180::-;15306:77;15303:1;15296:88;15403:4;15400:1;15393:15;15427:4;15424:1;15417:15;15444:191;15484:3;15503:20;15521:1;15503:20;:::i;:::-;15498:25;;15537:20;15555:1;15537:20;:::i;:::-;15532:25;;15580:1;15577;15573:9;15566:16;;15601:3;15598:1;15595:10;15592:36;;;15608:18;;:::i;:::-;15592:36;15444:191;;;;:::o;15641:153::-;15781:5;15777:1;15769:6;15765:14;15758:29;15641:153;:::o;15800:365::-;15942:3;15963:66;16027:1;16022:3;15963:66;:::i;:::-;15956:73;;16038:93;16127:3;16038:93;:::i;:::-;16156:2;16151:3;16147:12;16140:19;;15800:365;;;:::o;16171:419::-;16337:4;16375:2;16364:9;16360:18;16352:26;;16424:9;16418:4;16414:20;16410:1;16399:9;16395:17;16388:47;16452:131;16578:4;16452:131;:::i;:::-;16444:139;;16171:419;;;:::o;16596:224::-;16736:34;16732:1;16724:6;16720:14;16713:58;16805:7;16800:2;16792:6;16788:15;16781:32;16596:224;:::o;16826:366::-;16968:3;16989:67;17053:2;17048:3;16989:67;:::i;:::-;16982:74;;17065:93;17154:3;17065:93;:::i;:::-;17183:2;17178:3;17174:12;17167:19;;16826:366;;;:::o;17198:419::-;17364:4;17402:2;17391:9;17387:18;17379:26;;17451:9;17445:4;17441:20;17437:1;17426:9;17422:17;17415:47;17479:131;17605:4;17479:131;:::i;:::-;17471:139;;17198:419;;;:::o;17623:225::-;17763:34;17759:1;17751:6;17747:14;17740:58;17832:8;17827:2;17819:6;17815:15;17808:33;17623:225;:::o;17854:366::-;17996:3;18017:67;18081:2;18076:3;18017:67;:::i;:::-;18010:74;;18093:93;18182:3;18093:93;:::i;:::-;18211:2;18206:3;18202:12;18195:19;;17854:366;;;:::o;18226:419::-;18392:4;18430:2;18419:9;18415:18;18407:26;;18479:9;18473:4;18469:20;18465:1;18454:9;18450:17;18443:47;18507:131;18633:4;18507:131;:::i;:::-;18499:139;;18226:419;;;:::o;18651:223::-;18791:34;18787:1;18779:6;18775:14;18768:58;18860:6;18855:2;18847:6;18843:15;18836:31;18651:223;:::o;18880:366::-;19022:3;19043:67;19107:2;19102:3;19043:67;:::i;:::-;19036:74;;19119:93;19208:3;19119:93;:::i;:::-;19237:2;19232:3;19228:12;19221:19;;18880:366;;;:::o;19252:419::-;19418:4;19456:2;19445:9;19441:18;19433:26;;19505:9;19499:4;19495:20;19491:1;19480:9;19476:17;19469:47;19533:131;19659:4;19533:131;:::i;:::-;19525:139;;19252:419;;;:::o;19677:221::-;19817:34;19813:1;19805:6;19801:14;19794:58;19886:4;19881:2;19873:6;19869:15;19862:29;19677:221;:::o;19904:366::-;20046:3;20067:67;20131:2;20126:3;20067:67;:::i;:::-;20060:74;;20143:93;20232:3;20143:93;:::i;:::-;20261:2;20256:3;20252:12;20245:19;;19904:366;;;:::o;20276:419::-;20442:4;20480:2;20469:9;20465:18;20457:26;;20529:9;20523:4;20519:20;20515:1;20504:9;20500:17;20493:47;20557:131;20683:4;20557:131;:::i;:::-;20549:139;;20276:419;;;:::o;20701:182::-;20841:34;20837:1;20829:6;20825:14;20818:58;20701:182;:::o;20889:366::-;21031:3;21052:67;21116:2;21111:3;21052:67;:::i;:::-;21045:74;;21128:93;21217:3;21128:93;:::i;:::-;21246:2;21241:3;21237:12;21230:19;;20889:366;;;:::o;21261:419::-;21427:4;21465:2;21454:9;21450:18;21442:26;;21514:9;21508:4;21504:20;21500:1;21489:9;21485:17;21478:47;21542:131;21668:4;21542:131;:::i;:::-;21534:139;;21261:419;;;:::o;21686:179::-;21826:31;21822:1;21814:6;21810:14;21803:55;21686:179;:::o;21871:366::-;22013:3;22034:67;22098:2;22093:3;22034:67;:::i;:::-;22027:74;;22110:93;22199:3;22110:93;:::i;:::-;22228:2;22223:3;22219:12;22212:19;;21871:366;;;:::o;22243:419::-;22409:4;22447:2;22436:9;22432:18;22424:26;;22496:9;22490:4;22486:20;22482:1;22471:9;22467:17;22460:47;22524:131;22650:4;22524:131;:::i;:::-;22516:139;;22243:419;;;:::o;22668:224::-;22808:34;22804:1;22796:6;22792:14;22785:58;22877:7;22872:2;22864:6;22860:15;22853:32;22668:224;:::o;22898:366::-;23040:3;23061:67;23125:2;23120:3;23061:67;:::i;:::-;23054:74;;23137:93;23226:3;23137:93;:::i;:::-;23255:2;23250:3;23246:12;23239:19;;22898:366;;;:::o;23270:419::-;23436:4;23474:2;23463:9;23459:18;23451:26;;23523:9;23517:4;23513:20;23509:1;23498:9;23494:17;23487:47;23551:131;23677:4;23551:131;:::i;:::-;23543:139;;23270:419;;;:::o;23695:222::-;23835:34;23831:1;23823:6;23819:14;23812:58;23904:5;23899:2;23891:6;23887:15;23880:30;23695:222;:::o;23923:366::-;24065:3;24086:67;24150:2;24145:3;24086:67;:::i;:::-;24079:74;;24162:93;24251:3;24162:93;:::i;:::-;24280:2;24275:3;24271:12;24264:19;;23923:366;;;:::o;24295:419::-;24461:4;24499:2;24488:9;24484:18;24476:26;;24548:9;24542:4;24538:20;24534:1;24523:9;24519:17;24512:47;24576:131;24702:4;24576:131;:::i;:::-;24568:139;;24295:419;;;:::o;24720:169::-;24860:21;24856:1;24848:6;24844:14;24837:45;24720:169;:::o;24895:366::-;25037:3;25058:67;25122:2;25117:3;25058:67;:::i;:::-;25051:74;;25134:93;25223:3;25134:93;:::i;:::-;25252:2;25247:3;25243:12;25236:19;;24895:366;;;:::o;25267:419::-;25433:4;25471:2;25460:9;25456:18;25448:26;;25520:9;25514:4;25510:20;25506:1;25495:9;25491:17;25484:47;25548:131;25674:4;25548:131;:::i;:::-;25540:139;;25267:419;;;:::o;25692:160::-;25832:12;25828:1;25820:6;25816:14;25809:36;25692:160;:::o;25858:366::-;26000:3;26021:67;26085:2;26080:3;26021:67;:::i;:::-;26014:74;;26097:93;26186:3;26097:93;:::i;:::-;26215:2;26210:3;26206:12;26199:19;;25858:366;;;:::o;26230:419::-;26396:4;26434:2;26423:9;26419:18;26411:26;;26483:9;26477:4;26473:20;26469:1;26458:9;26454:17;26447:47;26511:131;26637:4;26511:131;:::i;:::-;26503:139;;26230:419;;;:::o;26655:174::-;26795:26;26791:1;26783:6;26779:14;26772:50;26655:174;:::o;26835:366::-;26977:3;26998:67;27062:2;27057:3;26998:67;:::i;:::-;26991:74;;27074:93;27163:3;27074:93;:::i;:::-;27192:2;27187:3;27183:12;27176:19;;26835:366;;;:::o;27207:419::-;27373:4;27411:2;27400:9;27396:18;27388:26;;27460:9;27454:4;27450:20;27446:1;27435:9;27431:17;27424:47;27488:131;27614:4;27488:131;:::i;:::-;27480:139;;27207:419;;;:::o;27632:410::-;27672:7;27695:20;27713:1;27695:20;:::i;:::-;27690:25;;27729:20;27747:1;27729:20;:::i;:::-;27724:25;;27784:1;27781;27777:9;27806:30;27824:11;27806:30;:::i;:::-;27795:41;;27985:1;27976:7;27972:15;27969:1;27966:22;27946:1;27939:9;27919:83;27896:139;;28015:18;;:::i;:::-;27896:139;27680:362;27632:410;;;;:::o;28048:180::-;28096:77;28093:1;28086:88;28193:4;28190:1;28183:15;28217:4;28214:1;28207:15;28234:185;28274:1;28291:20;28309:1;28291:20;:::i;:::-;28286:25;;28325:20;28343:1;28325:20;:::i;:::-;28320:25;;28364:1;28354:35;;28369:18;;:::i;:::-;28354:35;28411:1;28408;28404:9;28399:14;;28234:185;;;;:::o;28425:194::-;28465:4;28485:20;28503:1;28485:20;:::i;:::-;28480:25;;28519:20;28537:1;28519:20;:::i;:::-;28514:25;;28563:1;28560;28556:9;28548:17;;28587:1;28581:4;28578:11;28575:37;;;28592:18;;:::i;:::-;28575:37;28425:194;;;;:::o;28625:225::-;28765:34;28761:1;28753:6;28749:14;28742:58;28834:8;28829:2;28821:6;28817:15;28810:33;28625:225;:::o;28856:366::-;28998:3;29019:67;29083:2;29078:3;29019:67;:::i;:::-;29012:74;;29095:93;29184:3;29095:93;:::i;:::-;29213:2;29208:3;29204:12;29197:19;;28856:366;;;:::o;29228:419::-;29394:4;29432:2;29421:9;29417:18;29409:26;;29481:9;29475:4;29471:20;29467:1;29456:9;29452:17;29445:47;29509:131;29635:4;29509:131;:::i;:::-;29501:139;;29228:419;;;:::o;29653:442::-;29802:4;29840:2;29829:9;29825:18;29817:26;;29853:71;29921:1;29910:9;29906:17;29897:6;29853:71;:::i;:::-;29934:72;30002:2;29991:9;29987:18;29978:6;29934:72;:::i;:::-;30016;30084:2;30073:9;30069:18;30060:6;30016:72;:::i;:::-;29653:442;;;;;;:::o;30101:147::-;30202:11;30239:3;30224:18;;30101:147;;;;:::o;30254:114::-;;:::o;30374:398::-;30533:3;30554:83;30635:1;30630:3;30554:83;:::i;:::-;30547:90;;30646:93;30735:3;30646:93;:::i;:::-;30764:1;30759:3;30755:11;30748:18;;30374:398;;;:::o;30778:379::-;30962:3;30984:147;31127:3;30984:147;:::i;:::-;30977:154;;31148:3;31141:10;;30778:379;;;:::o;31163:143::-;31220:5;31251:6;31245:13;31236:22;;31267:33;31294:5;31267:33;:::i;:::-;31163:143;;;;:::o;31312:351::-;31382:6;31431:2;31419:9;31410:7;31406:23;31402:32;31399:119;;;31437:79;;:::i;:::-;31399:119;31557:1;31582:64;31638:7;31629:6;31618:9;31614:22;31582:64;:::i;:::-;31572:74;;31528:128;31312:351;;;;:::o;31669:85::-;31714:7;31743:5;31732:16;;31669:85;;;:::o;31760:158::-;31818:9;31851:61;31869:42;31878:32;31904:5;31878:32;:::i;:::-;31869:42;:::i;:::-;31851:61;:::i;:::-;31838:74;;31760:158;;;:::o;31924:147::-;32019:45;32058:5;32019:45;:::i;:::-;32014:3;32007:58;31924:147;;:::o;32077:114::-;32144:6;32178:5;32172:12;32162:22;;32077:114;;;:::o;32197:184::-;32296:11;32330:6;32325:3;32318:19;32370:4;32365:3;32361:14;32346:29;;32197:184;;;;:::o;32387:132::-;32454:4;32477:3;32469:11;;32507:4;32502:3;32498:14;32490:22;;32387:132;;;:::o;32525:108::-;32602:24;32620:5;32602:24;:::i;:::-;32597:3;32590:37;32525:108;;:::o;32639:179::-;32708:10;32729:46;32771:3;32763:6;32729:46;:::i;:::-;32807:4;32802:3;32798:14;32784:28;;32639:179;;;;:::o;32824:113::-;32894:4;32926;32921:3;32917:14;32909:22;;32824:113;;;:::o;32973:732::-;33092:3;33121:54;33169:5;33121:54;:::i;:::-;33191:86;33270:6;33265:3;33191:86;:::i;:::-;33184:93;;33301:56;33351:5;33301:56;:::i;:::-;33380:7;33411:1;33396:284;33421:6;33418:1;33415:13;33396:284;;;33497:6;33491:13;33524:63;33583:3;33568:13;33524:63;:::i;:::-;33517:70;;33610:60;33663:6;33610:60;:::i;:::-;33600:70;;33456:224;33443:1;33440;33436:9;33431:14;;33396:284;;;33400:14;33696:3;33689:10;;33097:608;;;32973:732;;;;:::o;33711:831::-;33974:4;34012:3;34001:9;33997:19;33989:27;;34026:71;34094:1;34083:9;34079:17;34070:6;34026:71;:::i;:::-;34107:80;34183:2;34172:9;34168:18;34159:6;34107:80;:::i;:::-;34234:9;34228:4;34224:20;34219:2;34208:9;34204:18;34197:48;34262:108;34365:4;34356:6;34262:108;:::i;:::-;34254:116;;34380:72;34448:2;34437:9;34433:18;34424:6;34380:72;:::i;:::-;34462:73;34530:3;34519:9;34515:19;34506:6;34462:73;:::i;:::-;33711:831;;;;;;;;:::o;34548:807::-;34797:4;34835:3;34824:9;34820:19;34812:27;;34849:71;34917:1;34906:9;34902:17;34893:6;34849:71;:::i;:::-;34930:72;34998:2;34987:9;34983:18;34974:6;34930:72;:::i;:::-;35012:80;35088:2;35077:9;35073:18;35064:6;35012:80;:::i;:::-;35102;35178:2;35167:9;35163:18;35154:6;35102:80;:::i;:::-;35192:73;35260:3;35249:9;35245:19;35236:6;35192:73;:::i;:::-;35275;35343:3;35332:9;35328:19;35319:6;35275:73;:::i;:::-;34548:807;;;;;;;;;:::o;35361:143::-;35418:5;35449:6;35443:13;35434:22;;35465:33;35492:5;35465:33;:::i;:::-;35361:143;;;;:::o;35510:663::-;35598:6;35606;35614;35663:2;35651:9;35642:7;35638:23;35634:32;35631:119;;;35669:79;;:::i;:::-;35631:119;35789:1;35814:64;35870:7;35861:6;35850:9;35846:22;35814:64;:::i;:::-;35804:74;;35760:128;35927:2;35953:64;36009:7;36000:6;35989:9;35985:22;35953:64;:::i;:::-;35943:74;;35898:129;36066:2;36092:64;36148:7;36139:6;36128:9;36124:22;36092:64;:::i;:::-;36082:74;;36037:129;35510:663;;;;;:::o
Swarm Source
ipfs://e6d118698e98f03839e1399dddba1b3781c95aa155afe4a79dd407268bd68132
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.