Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 SECZ
Holders
42
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,449,509.415837565961893071 SECZValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SECZ
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-10 */ // https://t.me/secz_coin // https://twitter.com/SECZ_COIN // https://secz.site // File: contracts/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: contracts/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: contracts/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ 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; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC20.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: contracts/SECZ.sol pragma solidity ^0.8.0; contract SECZ is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable router; address public immutable uniswapV2Pair; // addresses address public devWallet; address private marketingWallet; // limits uint256 private maxBuyAmount; uint256 private maxSellAmount; uint256 private maxWalletAmount; uint256 private thresholdSwapAmount; // status flags bool private isTrading = false; bool public swapEnabled = false; bool public isSwapping; struct Fees { uint8 buyTotalFees; uint8 buyMarketingFee; uint8 buyDevFee; uint8 buyLiquidityFee; uint8 sellTotalFees; uint8 sellMarketingFee; uint8 sellDevFee; uint8 sellLiquidityFee; } Fees public _fees = Fees({ buyTotalFees: 0, buyMarketingFee: 0, buyDevFee: 0, buyLiquidityFee: 0, sellTotalFees: 0, sellMarketingFee: 0, sellDevFee: 0, sellLiquidityFee: 0 }); uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; uint256 private taxTill; // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public _isExcludedMaxWalletAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public marketPair; mapping(address => bool) public _isBlacklisted; event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived); constructor() ERC20("SECZ", "SECZ") { router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); _isExcludedMaxTransactionAmount[address(router)] = true; _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true; _isExcludedMaxTransactionAmount[owner()] = true; _isExcludedMaxTransactionAmount[address(this)] = true; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedMaxWalletAmount[owner()] = true; _isExcludedMaxWalletAmount[address(this)] = true; _isExcludedMaxWalletAmount[address(uniswapV2Pair)] = true; marketPair[address(uniswapV2Pair)] = true; approve(address(router), type(uint256).max); uint256 totalSupply = 1e8 * 1e18; maxBuyAmount = totalSupply * 1 / 100; // 1% max buy transaction amount tx maxSellAmount = totalSupply * 1 / 100; // 1% max sell transaction amount tx maxWalletAmount = totalSupply * 1 / 100; // 1% max wallet thresholdSwapAmount = totalSupply * 1 / 1000; // 0.01% swap wallet _fees.buyMarketingFee = 0; _fees.buyLiquidityFee = 0; _fees.buyDevFee = 0; _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevFee; _fees.sellMarketingFee = 0; _fees.sellLiquidityFee = 0; _fees.sellDevFee = 0; _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevFee; marketingWallet = address(0x14D8af43e26ED4DCD0f18937B2f9f16c8163c3E8); devWallet = address(0x14D8af43e26ED4DCD0f18937B2f9f16c8163c3E8); _mint(msg.sender, totalSupply); } receive() external payable {} function startSwap() external onlyOwner { isTrading = true; swapEnabled = true; taxTill = block.number + 1; } function updateThresholdSwapAmount(uint256 newAmount) external onlyOwner returns (bool) { thresholdSwapAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newMaxBuy, uint256 newMaxSell) external onlyOwner { require(((totalSupply() * newMaxBuy) / 1000) >= (totalSupply() / 100), "maxBuyAmount must be higher than 1%"); require(((totalSupply() * newMaxSell) / 1000) >= (totalSupply() / 100), "maxSellAmount must be higher than 1%"); maxBuyAmount = (totalSupply() * newMaxBuy) / 1000; maxSellAmount = (totalSupply() * newMaxSell) / 1000; } function updateMaxWalletAmount(uint256 newPercentage) external onlyOwner { require(((totalSupply() * newPercentage) / 1000) >= (totalSupply() / 100), "Cannot set maxWallet lower than 1%"); maxWalletAmount = (totalSupply() * newPercentage) / 1000; } function toggleSwapEnabled(bool enabled) external onlyOwner() { swapEnabled = enabled; } function blacklistAddress(address account, bool value) external onlyOwner { _isBlacklisted[account] = value; } function updateFees( uint8 _marketingFeeBuy, uint8 _liquidityFeeBuy, uint8 _devFeeBuy, uint8 _marketingFeeSell, uint8 _liquidityFeeSell, uint8 _devFeeSell ) external onlyOwner { _fees.buyMarketingFee = _marketingFeeBuy; _fees.buyLiquidityFee = _liquidityFeeBuy; _fees.buyDevFee = _devFeeBuy; _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevFee; _fees.sellMarketingFee = _marketingFeeSell; _fees.sellLiquidityFee = _liquidityFeeSell; _fees.sellDevFee = _devFeeSell; _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevFee; require(_fees.buyTotalFees <= 30, "Must keep fees at 30% or less"); require(_fees.sellTotalFees <= 30, "Must keep fees at 30% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; } function excludeFromWalletLimit(address account, bool excluded) public onlyOwner { _isExcludedMaxWalletAmount[account] = excluded; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function setMarketPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "Must keep uniswapV2Pair"); marketPair[pair] = value; } function setWallets(address _marketingWallet, address _devWallet) external onlyOwner { marketingWallet = _marketingWallet; devWallet = _devWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address sender, address recipient, uint256 amount ) internal override { if (amount == 0) { super._transfer(sender, recipient, 0); return; } if ( sender != owner() && recipient != owner() && !isSwapping ) { if (!isTrading) { require(_isExcludedFromFees[sender] || _isExcludedFromFees[recipient], "Trading is not active."); } if (marketPair[sender] && !_isExcludedMaxTransactionAmount[recipient]) { require(amount <= maxBuyAmount, "buy transfer over max amount"); } else if (marketPair[recipient] && !_isExcludedMaxTransactionAmount[sender]) { require(amount <= maxSellAmount, "Sell transfer over max amount"); } if (!_isExcludedMaxWalletAmount[recipient]) { require(amount + balanceOf(recipient) <= maxWalletAmount, "Max wallet exceeded"); } require(!_isBlacklisted[sender] && !_isBlacklisted[recipient], "Blacklisted address"); } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= thresholdSwapAmount; if ( canSwap && swapEnabled && !isSwapping && marketPair[recipient] && !_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient] ) { isSwapping = true; swapBack(); isSwapping = false; } bool takeFee = !isSwapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) { takeFee = false; } // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { uint256 fees = 0; if (block.number < taxTill) { fees = amount.mul(99).div(100); tokensForMarketing += (fees * 94) / 99; tokensForDev += (fees * 5) / 99; } else if (marketPair[recipient] && _fees.sellTotalFees > 0) { fees = amount.mul(_fees.sellTotalFees).div(100); tokensForLiquidity += fees * _fees.sellLiquidityFee / _fees.sellTotalFees; tokensForMarketing += fees * _fees.sellMarketingFee / _fees.sellTotalFees; tokensForDev += fees * _fees.sellDevFee / _fees.sellTotalFees; } // on buy else if (marketPair[sender] && _fees.buyTotalFees > 0) { fees = amount.mul(_fees.buyTotalFees).div(100); tokensForLiquidity += fees * _fees.buyLiquidityFee / _fees.buyTotalFees; tokensForMarketing += fees * _fees.buyMarketingFee / _fees.buyTotalFees; tokensForDev += fees * _fees.buyDevFee / _fees.buyTotalFees; } if (fees > 0) { super._transfer(sender, address(this), fees); } amount -= fees; } super._transfer(sender, recipient, amount); } function swapTokensForEth(uint256 tAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tAmount); // make the swap router.swapExactTokensForETHSupportingFeeOnTransferTokens( tAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(router), tAmount); // add the liquidity router.addLiquidityETH{value: ethAmount}( address(this), tAmount, 0, 0, address(this), block.timestamp ); } function swapBack() private { uint256 contractTokenBalance = balanceOf(address(this)); uint256 toSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractTokenBalance == 0 || toSwap == 0) { return; } if (contractTokenBalance > thresholdSwapAmount * 20) { contractTokenBalance = thresholdSwapAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractTokenBalance * tokensForLiquidity / toSwap / 2; uint256 amountToSwapForETH = contractTokenBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 newBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = newBalance.mul(tokensForMarketing).div(toSwap); uint256 ethForDev = newBalance.mul(tokensForDev).div(toSwap); uint256 ethForLiquidity = newBalance - (ethForMarketing + ethForDev); tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity); } (success, ) = address(devWallet).call{value: (address(this).balance - ethForMarketing)}(""); (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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","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"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint8","name":"buyTotalFees","type":"uint8"},{"internalType":"uint8","name":"buyMarketingFee","type":"uint8"},{"internalType":"uint8","name":"buyDevFee","type":"uint8"},{"internalType":"uint8","name":"buyLiquidityFee","type":"uint8"},{"internalType":"uint8","name":"sellTotalFees","type":"uint8"},{"internalType":"uint8","name":"sellMarketingFee","type":"uint8"},{"internalType":"uint8","name":"sellDevFee","type":"uint8"},{"internalType":"uint8","name":"sellLiquidityFee","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_marketingFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_liquidityFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_devFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_marketingFeeSell","type":"uint8"},{"internalType":"uint8","name":"_liquidityFeeSell","type":"uint8"},{"internalType":"uint8","name":"_devFeeSell","type":"uint8"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"},{"internalType":"uint256","name":"newMaxSell","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateThresholdSwapAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040525f600c5f6101000a81548160ff0219169083151502179055505f600c60016101000a81548160ff0219169083151502179055506040518061010001604052805f60ff1681526020015f60ff1681526020015f60ff1681526020015f60ff1681526020015f60ff1681526020015f60ff1681526020015f60ff1681526020015f60ff16815250600d5f820151815f015f6101000a81548160ff021916908360ff1602179055506020820151815f0160016101000a81548160ff021916908360ff1602179055506040820151815f0160026101000a81548160ff021916908360ff1602179055506060820151815f0160036101000a81548160ff021916908360ff1602179055506080820151815f0160046101000a81548160ff021916908360ff16021790555060a0820151815f0160056101000a81548160ff021916908360ff16021790555060c0820151815f0160066101000a81548160ff021916908360ff16021790555060e0820151815f0160076101000a81548160ff021916908360ff160217905550505034801562000197575f80fd5b506040518060400160405280600481526020017f5345435a000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5345435a00000000000000000000000000000000000000000000000000000000815250816003908162000215919062001183565b50806004908162000227919062001183565b5050506200024a6200023e62000ac160201b60201c565b62000ac860201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002de573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003049190620012cc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200036c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003929190620012cc565b6040518363ffffffff1660e01b8152600401620003b19291906200130d565b6020604051808303815f875af1158015620003ce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003f49190620012cc565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050600160135f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160135f60a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160135f620004ea62000b8b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160135f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f620005a362000b8b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f6200065c62000b8b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f60a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160155f60a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620007e26080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000bb360201b60201c565b505f6a52b7d2dcc80cd2e40000009050606460018262000803919062001365565b6200080f9190620013dc565b600881905550606460018262000826919062001365565b620008329190620013dc565b600981905550606460018262000849919062001365565b620008559190620013dc565b600a819055506103e86001826200086d919062001365565b620008799190620013dc565b600b819055505f600d5f0160016101000a81548160ff021916908360ff1602179055505f600d5f0160036101000a81548160ff021916908360ff1602179055505f600d5f0160026101000a81548160ff021916908360ff160217905550600d5f0160029054906101000a900460ff16600d5f0160039054906101000a900460ff16600d5f0160019054906101000a900460ff166200091891906200141f565b6200092491906200141f565b600d5f015f6101000a81548160ff021916908360ff1602179055505f600d5f0160056101000a81548160ff021916908360ff1602179055505f600d5f0160076101000a81548160ff021916908360ff1602179055505f600d5f0160066101000a81548160ff021916908360ff160217905550600d5f0160069054906101000a900460ff16600d5f0160079054906101000a900460ff16600d5f0160059054906101000a900460ff16620009d891906200141f565b620009e491906200141f565b600d5f0160046101000a81548160ff021916908360ff1602179055507314d8af43e26ed4dcd0f18937b2f9f16c8163c3e860075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507314d8af43e26ed4dcd0f18937b2f9f16c8163c3e860065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000aba338262000be560201b60201c565b5062001666565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f8062000bc562000ac160201b60201c565b905062000bda81858562000d4a60201b60201c565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000c56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c4d90620014b8565b60405180910390fd5b62000c695f838362000f1560201b60201c565b8060025f82825462000c7c9190620014d8565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000d2b919062001523565b60405180910390a362000d465f838362000f1a60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000dbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000db290620015b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000e2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e239062001646565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000f08919062001523565b60405180910390a3505050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000f9b57607f821691505b60208210810362000fb15762000fb062000f56565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620010157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000fd8565b62001021868362000fd8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200106b620010656200105f8462001039565b62001042565b62001039565b9050919050565b5f819050919050565b62001086836200104b565b6200109e620010958262001072565b84845462000fe4565b825550505050565b5f90565b620010b4620010a6565b620010c18184846200107b565b505050565b5b81811015620010e857620010dc5f82620010aa565b600181019050620010c7565b5050565b601f8211156200113757620011018162000fb7565b6200110c8462000fc9565b810160208510156200111c578190505b620011346200112b8562000fc9565b830182620010c6565b50505b505050565b5f82821c905092915050565b5f620011595f19846008026200113c565b1980831691505092915050565b5f62001173838362001148565b9150826002028217905092915050565b6200118e8262000f1f565b67ffffffffffffffff811115620011aa57620011a962000f29565b5b620011b6825462000f83565b620011c3828285620010ec565b5f60209050601f831160018114620011f9575f8415620011e4578287015190505b620011f0858262001166565b8655506200125f565b601f198416620012098662000fb7565b5f5b8281101562001232578489015182556001820191506020850194506020810190506200120b565b868310156200125257848901516200124e601f89168262001148565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62001296826200126b565b9050919050565b620012a8816200128a565b8114620012b3575f80fd5b50565b5f81519050620012c6816200129d565b92915050565b5f60208284031215620012e457620012e362001267565b5b5f620012f384828501620012b6565b91505092915050565b62001307816200128a565b82525050565b5f604082019050620013225f830185620012fc565b620013316020830184620012fc565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620013718262001039565b91506200137e8362001039565b92508282026200138e8162001039565b91508282048414831517620013a857620013a762001338565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620013e88262001039565b9150620013f58362001039565b925082620014085762001407620013af565b5b828204905092915050565b5f60ff82169050919050565b5f6200142b8262001413565b9150620014388362001413565b9250828201905060ff81111562001454576200145362001338565b5b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620014a0601f836200145a565b9150620014ad826200146a565b602082019050919050565b5f6020820190508181035f830152620014d18162001492565b9050919050565b5f620014e48262001039565b9150620014f18362001039565b92508282019050808211156200150c576200150b62001338565b5b92915050565b6200151d8162001039565b82525050565b5f602082019050620015385f83018462001512565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6200159a6024836200145a565b9150620015a7826200153e565b604082019050919050565b5f6020820190508181035f830152620015cb816200158c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200162e6022836200145a565b91506200163b82620015d2565b604082019050919050565b5f6020820190508181035f8301526200165f8162001620565b9050919050565b60805160a051614252620016b25f395f8181610efa015261126601525f81816116e601528181612c2501528181612d0401528181612d2b01528181612dc10152612de801526142525ff3fe60806040526004361061023e575f3560e01c80637571336a1161012d578063c16dd4a4116100aa578063dd62ed3e1161006e578063dd62ed3e1461089a578063e16830a8146108d6578063f2fde38b146108fe578063f5b3c3bf14610926578063f887ea401461096257610245565b8063c16dd4a4146107db578063c18bc19514610803578063c992b5b21461082b578063d212a69a14610841578063d3f6a1571461087257610245565b80639fccce32116100f15780639fccce32146106e7578063a457c2d714610711578063a9059cbb1461074d578063b886311514610789578063c0246668146107b357610245565b80637571336a146106055780638da5cb5b1461062d5780638ea5220f1461065757806395d89b411461068157806396880b17146106ab57610245565b8063313ce567116101bb5780634fbee1931161017f5780634fbee19314610511578063555467a11461054d5780636ddd17131461058957806370a08231146105b3578063715018a6146105ef57610245565b8063313ce567146104315780633265e8461461045b5780633950935114610483578063455a4396146104bf57806349bd5a5e146104e757610245565b80631a8145bb116102025780631a8145bb1461033d5780631c6e8a75146103675780631cdd3be31461038f5780631f3fed8f146103cb57806323b872dd146103f557610245565b806306fdde0314610249578063095ea7b31461027357806310d5de53146102af57806311a582c3146102eb57806318160ddd1461031357610245565b3661024557005b5f80fd5b348015610254575f80fd5b5061025d61098c565b60405161026a9190612f1c565b60405180910390f35b34801561027e575f80fd5b5061029960048036038101906102949190612fcd565b610a1c565b6040516102a69190613025565b60405180910390f35b3480156102ba575f80fd5b506102d560048036038101906102d0919061303e565b610a3e565b6040516102e29190613025565b60405180910390f35b3480156102f6575f80fd5b50610311600480360381019061030c9190613069565b610a5b565b005b34801561031e575f80fd5b50610327610b9d565b60405161033491906130b6565b60405180910390f35b348015610348575f80fd5b50610351610ba6565b60405161035e91906130b6565b60405180910390f35b348015610372575f80fd5b5061038d600480360381019061038891906130f9565b610bac565b005b34801561039a575f80fd5b506103b560048036038101906103b0919061303e565b610bd1565b6040516103c29190613025565b60405180910390f35b3480156103d6575f80fd5b506103df610bee565b6040516103ec91906130b6565b60405180910390f35b348015610400575f80fd5b5061041b60048036038101906104169190613124565b610bf4565b6040516104289190613025565b60405180910390f35b34801561043c575f80fd5b50610445610c22565b604051610452919061318f565b60405180910390f35b348015610466575f80fd5b50610481600480360381019061047c91906131d2565b610c2a565b005b34801561048e575f80fd5b506104a960048036038101906104a49190612fcd565b610e62565b6040516104b69190613025565b60405180910390f35b3480156104ca575f80fd5b506104e560048036038101906104e0919061325b565b610e98565b005b3480156104f2575f80fd5b506104fb610ef8565b60405161050891906132a8565b60405180910390f35b34801561051c575f80fd5b506105376004803603810190610532919061303e565b610f1c565b6040516105449190613025565b60405180910390f35b348015610558575f80fd5b50610573600480360381019061056e91906132c1565b610f6e565b6040516105809190613025565b60405180910390f35b348015610594575f80fd5b5061059d610f87565b6040516105aa9190613025565b60405180910390f35b3480156105be575f80fd5b506105d960048036038101906105d4919061303e565b610f9a565b6040516105e691906130b6565b60405180910390f35b3480156105fa575f80fd5b50610603610fdf565b005b348015610610575f80fd5b5061062b6004803603810190610626919061325b565b610ff2565b005b348015610638575f80fd5b50610641611052565b60405161064e91906132a8565b60405180910390f35b348015610662575f80fd5b5061066b61107a565b60405161067891906132a8565b60405180910390f35b34801561068c575f80fd5b5061069561109f565b6040516106a29190612f1c565b60405180910390f35b3480156106b6575f80fd5b506106d160048036038101906106cc919061303e565b61112f565b6040516106de9190613025565b60405180910390f35b3480156106f2575f80fd5b506106fb61114c565b60405161070891906130b6565b60405180910390f35b34801561071c575f80fd5b5061073760048036038101906107329190612fcd565b611152565b6040516107449190613025565b60405180910390f35b348015610758575f80fd5b50610773600480360381019061076e9190612fcd565b6111c7565b6040516107809190613025565b60405180910390f35b348015610794575f80fd5b5061079d6111e9565b6040516107aa9190613025565b60405180910390f35b3480156107be575f80fd5b506107d960048036038101906107d4919061325b565b6111fc565b005b3480156107e6575f80fd5b5061080160048036038101906107fc919061325b565b61125c565b005b34801561080e575f80fd5b50610829600480360381019061082491906132c1565b61134a565b005b348015610836575f80fd5b5061083f6113f0565b005b34801561084c575f80fd5b50610855611442565b6040516108699897969594939291906132ec565b60405180910390f35b34801561087d575f80fd5b5061089860048036038101906108939190613368565b6114d7565b005b3480156108a5575f80fd5b506108c060048036038101906108bb9190613368565b611563565b6040516108cd91906130b6565b60405180910390f35b3480156108e1575f80fd5b506108fc60048036038101906108f7919061325b565b6115e5565b005b348015610909575f80fd5b50610924600480360381019061091f919061303e565b611645565b005b348015610931575f80fd5b5061094c6004803603810190610947919061303e565b6116c7565b6040516109599190613025565b60405180910390f35b34801561096d575f80fd5b506109766116e4565b6040516109839190613401565b60405180910390f35b60606003805461099b90613447565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790613447565b8015610a125780601f106109e957610100808354040283529160200191610a12565b820191905f5260205f20905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b5f80610a26611708565b9050610a3381858561170f565b600191505092915050565b6013602052805f5260405f205f915054906101000a900460ff1681565b610a636118d2565b6064610a6d610b9d565b610a7791906134d1565b6103e883610a83610b9d565b610a8d9190613501565b610a9791906134d1565b1015610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf906135b2565b60405180910390fd5b6064610ae2610b9d565b610aec91906134d1565b6103e882610af8610b9d565b610b029190613501565b610b0c91906134d1565b1015610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490613640565b60405180910390fd5b6103e882610b59610b9d565b610b639190613501565b610b6d91906134d1565b6008819055506103e881610b7f610b9d565b610b899190613501565b610b9391906134d1565b6009819055505050565b5f600254905090565b600f5481565b610bb46118d2565b80600c60016101000a81548160ff02191690831515021790555050565b6016602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b5f80610bfe611708565b9050610c0b858285611950565b610c168585856119db565b60019150509392505050565b5f6012905090565b610c326118d2565b85600d5f0160016101000a81548160ff021916908360ff16021790555084600d5f0160036101000a81548160ff021916908360ff16021790555083600d5f0160026101000a81548160ff021916908360ff160217905550600d5f0160029054906101000a900460ff16600d5f0160039054906101000a900460ff16600d5f0160019054906101000a900460ff16610cc9919061365e565b610cd3919061365e565b600d5f015f6101000a81548160ff021916908360ff16021790555082600d5f0160056101000a81548160ff021916908360ff16021790555081600d5f0160076101000a81548160ff021916908360ff16021790555080600d5f0160066101000a81548160ff021916908360ff160217905550600d5f0160069054906101000a900460ff16600d5f0160079054906101000a900460ff16600d5f0160059054906101000a900460ff16610d85919061365e565b610d8f919061365e565b600d5f0160046101000a81548160ff021916908360ff160217905550601e600d5f015f9054906101000a900460ff1660ff161115610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906136dc565b60405180910390fd5b601e600d5f0160049054906101000a900460ff1660ff161115610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e51906136dc565b60405180910390fd5b505050505050565b5f80610e6c611708565b9050610e8d818585610e7e8589611563565b610e8891906136fa565b61170f565b600191505092915050565b610ea06118d2565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f610f776118d2565b81600b8190555060019050919050565b600c60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fe76118d2565b610ff05f61253a565b565b610ffa6118d2565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546110ae90613447565b80601f01602080910402602001604051908101604052809291908181526020018280546110da90613447565b80156111255780601f106110fc57610100808354040283529160200191611125565b820191905f5260205f20905b81548152906001019060200180831161110857829003601f168201915b5050505050905090565b6014602052805f5260405f205f915054906101000a900460ff1681565b60105481565b5f8061115c611708565b90505f6111698286611563565b9050838110156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061379d565b60405180910390fd5b6111bb828686840361170f565b60019250505092915050565b5f806111d1611708565b90506111de8185856119db565b600191505092915050565b600c60029054906101000a900460ff1681565b6112046118d2565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6112646118d2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990613805565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6113526118d2565b606461135c610b9d565b61136691906134d1565b6103e882611372610b9d565b61137c9190613501565b61138691906134d1565b10156113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613893565b60405180910390fd5b6103e8816113d3610b9d565b6113dd9190613501565b6113e791906134d1565b600a8190555050565b6113f86118d2565b6001600c5f6101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff02191690831515021790555060014361143a91906136fa565b601181905550565b600d805f015f9054906101000a900460ff1690805f0160019054906101000a900460ff1690805f0160029054906101000a900460ff1690805f0160039054906101000a900460ff1690805f0160049054906101000a900460ff1690805f0160059054906101000a900460ff1690805f0160069054906101000a900460ff1690805f0160079054906101000a900460ff16905088565b6114df6118d2565b8160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6115ed6118d2565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61164d6118d2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b290613921565b60405180910390fd5b6116c48161253a565b50565b6015602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361177d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611774906139af565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e290613a3d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118c591906130b6565b60405180910390a3505050565b6118da611708565b73ffffffffffffffffffffffffffffffffffffffff166118f8611052565b73ffffffffffffffffffffffffffffffffffffffff161461194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590613aa5565b60405180910390fd5b565b5f61195b8484611563565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119d557818110156119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90613b0d565b60405180910390fd5b6119d4848484840361170f565b5b50505050565b5f81036119f2576119ed83835f6125fd565b612535565b6119fa611052565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a685750611a38611052565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a815750600c60029054906101000a900460ff16155b15611ece57600c5f9054906101000a900460ff16611b745760125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611b34575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90613b75565b60405180910390fd5b5b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c11575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611c6057600854811115611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5290613bdd565b60405180910390fd5b611d49565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cfd575060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d4857600954811115611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90613c45565b60405180910390fd5b5b5b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611df057600a54611da383610f9a565b82611dae91906136fa565b1115611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690613cad565b60405180910390fd5b5b60165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611e8e575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490613d15565b60405180910390fd5b5b5f611ed830610f9a565b90505f600b548210159050808015611efc5750600c60019054906101000a900460ff165b8015611f155750600c60029054906101000a900460ff16155b8015611f67575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611fba575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561200d575060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612050576001600c60026101000a81548160ff021916908315150217905550612035612869565b5f600c60026101000a81548160ff0219169083151502179055505b5f600c60029054906101000a900460ff1615905060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120ff575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612108575f90505b8015612526575f6011544310156121a7576121406064612132606388612b3f90919063ffffffff16565b612b5490919063ffffffff16565b90506063605e826121519190613501565b61215b91906134d1565b600e5f82825461216b91906136fa565b9250508190555060636005826121819190613501565b61218b91906134d1565b60105f82825461219b91906136fa565b92505081905550612502565b60155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561221057505f600d5f0160049054906101000a900460ff1660ff16115b156123585761224f6064612241600d5f0160049054906101000a900460ff1660ff1688612b3f90919063ffffffff16565b612b5490919063ffffffff16565b9050600d5f0160049054906101000a900460ff1660ff16600d5f0160079054906101000a900460ff1660ff16826122869190613501565b61229091906134d1565b600f5f8282546122a091906136fa565b92505081905550600d5f0160049054906101000a900460ff1660ff16600d5f0160059054906101000a900460ff1660ff16826122dc9190613501565b6122e691906134d1565b600e5f8282546122f691906136fa565b92505081905550600d5f0160049054906101000a900460ff1660ff16600d5f0160069054906101000a900460ff1660ff16826123329190613501565b61233c91906134d1565b60105f82825461234c91906136fa565b92505081905550612501565b60155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156123c057505f600d5f015f9054906101000a900460ff1660ff16115b15612500576123fe60646123f0600d5f015f9054906101000a900460ff1660ff1688612b3f90919063ffffffff16565b612b5490919063ffffffff16565b9050600d5f015f9054906101000a900460ff1660ff16600d5f0160039054906101000a900460ff1660ff16826124349190613501565b61243e91906134d1565b600f5f82825461244e91906136fa565b92505081905550600d5f015f9054906101000a900460ff1660ff16600d5f0160019054906101000a900460ff1660ff16826124899190613501565b61249391906134d1565b600e5f8282546124a391906136fa565b92505081905550600d5f015f9054906101000a900460ff1660ff16600d5f0160029054906101000a900460ff1660ff16826124de9190613501565b6124e891906134d1565b60105f8282546124f891906136fa565b925050819055505b5b5b5f811115612516576125158730836125fd565b5b80856125229190613d33565b9450505b6125318686866125fd565b5050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266290613dd6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090613e64565b60405180910390fd5b6126e4838383612b69565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90613ef2565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161285091906130b6565b60405180910390a3612863848484612b6e565b50505050565b5f61287330610f9a565b90505f601054600e54600f5461288991906136fa565b61289391906136fa565b90505f808314806128a357505f82145b156128b057505050612b3d565b6014600b546128bf9190613501565b8311156128d8576014600b546128d59190613501565b92505b5f600283600f54866128ea9190613501565b6128f491906134d1565b6128fe91906134d1565b90505f6129148286612b7390919063ffffffff16565b90505f47905061292382612b88565b5f6129378247612b7390919063ffffffff16565b90505f61296187612953600e5485612b3f90919063ffffffff16565b612b5490919063ffffffff16565b90505f61298b8861297d60105486612b3f90919063ffffffff16565b612b5490919063ffffffff16565b90505f818361299a91906136fa565b846129a59190613d33565b90505f600f819055505f600e819055505f6010819055505f871180156129ca57505f81115b15612a13576129d98782612dbb565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868682604051612a0a929190613f10565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168347612a579190613d33565b604051612a6390613f64565b5f6040518083038185875af1925050503d805f8114612a9d576040519150601f19603f3d011682016040523d82523d5f602084013e612aa2565b606091505b50508098505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612aed90613f64565b5f6040518083038185875af1925050503d805f8114612b27576040519150601f19603f3d011682016040523d82523d5f602084013e612b2c565b606091505b505080985050505050505050505050505b565b5f8183612b4c9190613501565b905092915050565b5f8183612b6191906134d1565b905092915050565b505050565b505050565b5f8183612b809190613d33565b905092915050565b5f600267ffffffffffffffff811115612ba457612ba3613f78565b5b604051908082528060200260200182016040528015612bd25781602001602082028036833780820191505090505b50905030815f81518110612be957612be8613fa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cb09190613fe6565b81600181518110612cc457612cc3613fa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d29307f00000000000000000000000000000000000000000000000000000000000000008461170f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612d8a959493929190614101565b5f604051808303815f87803b158015612da1575f80fd5b505af1158015612db3573d5f803e3d5ffd5b505050505050565b612de6307f00000000000000000000000000000000000000000000000000000000000000008461170f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8030426040518863ffffffff1660e01b8152600401612e4a96959493929190614159565b60606040518083038185885af1158015612e66573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612e8b91906141cc565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612ec9578082015181840152602081019050612eae565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612eee82612e92565b612ef88185612e9c565b9350612f08818560208601612eac565b612f1181612ed4565b840191505092915050565b5f6020820190508181035f830152612f348184612ee4565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f6982612f40565b9050919050565b612f7981612f5f565b8114612f83575f80fd5b50565b5f81359050612f9481612f70565b92915050565b5f819050919050565b612fac81612f9a565b8114612fb6575f80fd5b50565b5f81359050612fc781612fa3565b92915050565b5f8060408385031215612fe357612fe2612f3c565b5b5f612ff085828601612f86565b925050602061300185828601612fb9565b9150509250929050565b5f8115159050919050565b61301f8161300b565b82525050565b5f6020820190506130385f830184613016565b92915050565b5f6020828403121561305357613052612f3c565b5b5f61306084828501612f86565b91505092915050565b5f806040838503121561307f5761307e612f3c565b5b5f61308c85828601612fb9565b925050602061309d85828601612fb9565b9150509250929050565b6130b081612f9a565b82525050565b5f6020820190506130c95f8301846130a7565b92915050565b6130d88161300b565b81146130e2575f80fd5b50565b5f813590506130f3816130cf565b92915050565b5f6020828403121561310e5761310d612f3c565b5b5f61311b848285016130e5565b91505092915050565b5f805f6060848603121561313b5761313a612f3c565b5b5f61314886828701612f86565b935050602061315986828701612f86565b925050604061316a86828701612fb9565b9150509250925092565b5f60ff82169050919050565b61318981613174565b82525050565b5f6020820190506131a25f830184613180565b92915050565b6131b181613174565b81146131bb575f80fd5b50565b5f813590506131cc816131a8565b92915050565b5f805f805f8060c087890312156131ec576131eb612f3c565b5b5f6131f989828a016131be565b965050602061320a89828a016131be565b955050604061321b89828a016131be565b945050606061322c89828a016131be565b935050608061323d89828a016131be565b92505060a061324e89828a016131be565b9150509295509295509295565b5f806040838503121561327157613270612f3c565b5b5f61327e85828601612f86565b925050602061328f858286016130e5565b9150509250929050565b6132a281612f5f565b82525050565b5f6020820190506132bb5f830184613299565b92915050565b5f602082840312156132d6576132d5612f3c565b5b5f6132e384828501612fb9565b91505092915050565b5f610100820190506133005f83018b613180565b61330d602083018a613180565b61331a6040830189613180565b6133276060830188613180565b6133346080830187613180565b61334160a0830186613180565b61334e60c0830185613180565b61335b60e0830184613180565b9998505050505050505050565b5f806040838503121561337e5761337d612f3c565b5b5f61338b85828601612f86565b925050602061339c85828601612f86565b9150509250929050565b5f819050919050565b5f6133c96133c46133bf84612f40565b6133a6565b612f40565b9050919050565b5f6133da826133af565b9050919050565b5f6133eb826133d0565b9050919050565b6133fb816133e1565b82525050565b5f6020820190506134145f8301846133f2565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061345e57607f821691505b6020821081036134715761347061341a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6134db82612f9a565b91506134e683612f9a565b9250826134f6576134f5613477565b5b828204905092915050565b5f61350b82612f9a565b915061351683612f9a565b925082820261352481612f9a565b9150828204841483151761353b5761353a6134a4565b5b5092915050565b7f6d6178427579416d6f756e74206d75737420626520686967686572207468616e5f8201527f2031250000000000000000000000000000000000000000000000000000000000602082015250565b5f61359c602383612e9c565b91506135a782613542565b604082019050919050565b5f6020820190508181035f8301526135c981613590565b9050919050565b7f6d617853656c6c416d6f756e74206d75737420626520686967686572207468615f8201527f6e20312500000000000000000000000000000000000000000000000000000000602082015250565b5f61362a602483612e9c565b9150613635826135d0565b604082019050919050565b5f6020820190508181035f8301526136578161361e565b9050919050565b5f61366882613174565b915061367383613174565b9250828201905060ff81111561368c5761368b6134a4565b5b92915050565b7f4d757374206b656570206665657320617420333025206f72206c6573730000005f82015250565b5f6136c6601d83612e9c565b91506136d182613692565b602082019050919050565b5f6020820190508181035f8301526136f3816136ba565b9050919050565b5f61370482612f9a565b915061370f83612f9a565b9250828201905080821115613727576137266134a4565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613787602583612e9c565b91506137928261372d565b604082019050919050565b5f6020820190508181035f8301526137b48161377b565b9050919050565b7f4d757374206b65657020756e69737761705632506169720000000000000000005f82015250565b5f6137ef601783612e9c565b91506137fa826137bb565b602082019050919050565b5f6020820190508181035f83015261381c816137e3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b5f61387d602283612e9c565b915061388882613823565b604082019050919050565b5f6020820190508181035f8301526138aa81613871565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61390b602683612e9c565b9150613916826138b1565b604082019050919050565b5f6020820190508181035f830152613938816138ff565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613999602483612e9c565b91506139a48261393f565b604082019050919050565b5f6020820190508181035f8301526139c68161398d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a27602283612e9c565b9150613a32826139cd565b604082019050919050565b5f6020820190508181035f830152613a5481613a1b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613a8f602083612e9c565b9150613a9a82613a5b565b602082019050919050565b5f6020820190508181035f830152613abc81613a83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613af7601d83612e9c565b9150613b0282613ac3565b602082019050919050565b5f6020820190508181035f830152613b2481613aeb565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613b5f601683612e9c565b9150613b6a82613b2b565b602082019050919050565b5f6020820190508181035f830152613b8c81613b53565b9050919050565b7f627579207472616e73666572206f766572206d617820616d6f756e74000000005f82015250565b5f613bc7601c83612e9c565b9150613bd282613b93565b602082019050919050565b5f6020820190508181035f830152613bf481613bbb565b9050919050565b7f53656c6c207472616e73666572206f766572206d617820616d6f756e740000005f82015250565b5f613c2f601d83612e9c565b9150613c3a82613bfb565b602082019050919050565b5f6020820190508181035f830152613c5c81613c23565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613c97601383612e9c565b9150613ca282613c63565b602082019050919050565b5f6020820190508181035f830152613cc481613c8b565b9050919050565b7f426c61636b6c69737465642061646472657373000000000000000000000000005f82015250565b5f613cff601383612e9c565b9150613d0a82613ccb565b602082019050919050565b5f6020820190508181035f830152613d2c81613cf3565b9050919050565b5f613d3d82612f9a565b9150613d4883612f9a565b9250828203905081811115613d6057613d5f6134a4565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613dc0602583612e9c565b9150613dcb82613d66565b604082019050919050565b5f6020820190508181035f830152613ded81613db4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613e4e602383612e9c565b9150613e5982613df4565b604082019050919050565b5f6020820190508181035f830152613e7b81613e42565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613edc602683612e9c565b9150613ee782613e82565b604082019050919050565b5f6020820190508181035f830152613f0981613ed0565b9050919050565b5f604082019050613f235f8301856130a7565b613f3060208301846130a7565b9392505050565b5f81905092915050565b50565b5f613f4f5f83613f37565b9150613f5a82613f41565b5f82019050919050565b5f613f6e82613f44565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613fe081612f70565b92915050565b5f60208284031215613ffb57613ffa612f3c565b5b5f61400884828501613fd2565b91505092915050565b5f819050919050565b5f61403461402f61402a84614011565b6133a6565b612f9a565b9050919050565b6140448161401a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61407c81612f5f565b82525050565b5f61408d8383614073565b60208301905092915050565b5f602082019050919050565b5f6140af8261404a565b6140b98185614054565b93506140c483614064565b805f5b838110156140f45781516140db8882614082565b97506140e683614099565b9250506001810190506140c7565b5085935050505092915050565b5f60a0820190506141145f8301886130a7565b614121602083018761403b565b818103604083015261413381866140a5565b90506141426060830185613299565b61414f60808301846130a7565b9695505050505050565b5f60c08201905061416c5f830189613299565b61417960208301886130a7565b614186604083018761403b565b614193606083018661403b565b6141a06080830185613299565b6141ad60a08301846130a7565b979650505050505050565b5f815190506141c681612fa3565b92915050565b5f805f606084860312156141e3576141e2612f3c565b5b5f6141f0868287016141b8565b9350506020614201868287016141b8565b9250506040614212868287016141b8565b915050925092509256fea2646970667358221220566b38be1b175c09d1ee24afebba6194d3757f2f0700cf3a050fe7114af83c7564736f6c63430008140033
Deployed Bytecode
0x60806040526004361061023e575f3560e01c80637571336a1161012d578063c16dd4a4116100aa578063dd62ed3e1161006e578063dd62ed3e1461089a578063e16830a8146108d6578063f2fde38b146108fe578063f5b3c3bf14610926578063f887ea401461096257610245565b8063c16dd4a4146107db578063c18bc19514610803578063c992b5b21461082b578063d212a69a14610841578063d3f6a1571461087257610245565b80639fccce32116100f15780639fccce32146106e7578063a457c2d714610711578063a9059cbb1461074d578063b886311514610789578063c0246668146107b357610245565b80637571336a146106055780638da5cb5b1461062d5780638ea5220f1461065757806395d89b411461068157806396880b17146106ab57610245565b8063313ce567116101bb5780634fbee1931161017f5780634fbee19314610511578063555467a11461054d5780636ddd17131461058957806370a08231146105b3578063715018a6146105ef57610245565b8063313ce567146104315780633265e8461461045b5780633950935114610483578063455a4396146104bf57806349bd5a5e146104e757610245565b80631a8145bb116102025780631a8145bb1461033d5780631c6e8a75146103675780631cdd3be31461038f5780631f3fed8f146103cb57806323b872dd146103f557610245565b806306fdde0314610249578063095ea7b31461027357806310d5de53146102af57806311a582c3146102eb57806318160ddd1461031357610245565b3661024557005b5f80fd5b348015610254575f80fd5b5061025d61098c565b60405161026a9190612f1c565b60405180910390f35b34801561027e575f80fd5b5061029960048036038101906102949190612fcd565b610a1c565b6040516102a69190613025565b60405180910390f35b3480156102ba575f80fd5b506102d560048036038101906102d0919061303e565b610a3e565b6040516102e29190613025565b60405180910390f35b3480156102f6575f80fd5b50610311600480360381019061030c9190613069565b610a5b565b005b34801561031e575f80fd5b50610327610b9d565b60405161033491906130b6565b60405180910390f35b348015610348575f80fd5b50610351610ba6565b60405161035e91906130b6565b60405180910390f35b348015610372575f80fd5b5061038d600480360381019061038891906130f9565b610bac565b005b34801561039a575f80fd5b506103b560048036038101906103b0919061303e565b610bd1565b6040516103c29190613025565b60405180910390f35b3480156103d6575f80fd5b506103df610bee565b6040516103ec91906130b6565b60405180910390f35b348015610400575f80fd5b5061041b60048036038101906104169190613124565b610bf4565b6040516104289190613025565b60405180910390f35b34801561043c575f80fd5b50610445610c22565b604051610452919061318f565b60405180910390f35b348015610466575f80fd5b50610481600480360381019061047c91906131d2565b610c2a565b005b34801561048e575f80fd5b506104a960048036038101906104a49190612fcd565b610e62565b6040516104b69190613025565b60405180910390f35b3480156104ca575f80fd5b506104e560048036038101906104e0919061325b565b610e98565b005b3480156104f2575f80fd5b506104fb610ef8565b60405161050891906132a8565b60405180910390f35b34801561051c575f80fd5b506105376004803603810190610532919061303e565b610f1c565b6040516105449190613025565b60405180910390f35b348015610558575f80fd5b50610573600480360381019061056e91906132c1565b610f6e565b6040516105809190613025565b60405180910390f35b348015610594575f80fd5b5061059d610f87565b6040516105aa9190613025565b60405180910390f35b3480156105be575f80fd5b506105d960048036038101906105d4919061303e565b610f9a565b6040516105e691906130b6565b60405180910390f35b3480156105fa575f80fd5b50610603610fdf565b005b348015610610575f80fd5b5061062b6004803603810190610626919061325b565b610ff2565b005b348015610638575f80fd5b50610641611052565b60405161064e91906132a8565b60405180910390f35b348015610662575f80fd5b5061066b61107a565b60405161067891906132a8565b60405180910390f35b34801561068c575f80fd5b5061069561109f565b6040516106a29190612f1c565b60405180910390f35b3480156106b6575f80fd5b506106d160048036038101906106cc919061303e565b61112f565b6040516106de9190613025565b60405180910390f35b3480156106f2575f80fd5b506106fb61114c565b60405161070891906130b6565b60405180910390f35b34801561071c575f80fd5b5061073760048036038101906107329190612fcd565b611152565b6040516107449190613025565b60405180910390f35b348015610758575f80fd5b50610773600480360381019061076e9190612fcd565b6111c7565b6040516107809190613025565b60405180910390f35b348015610794575f80fd5b5061079d6111e9565b6040516107aa9190613025565b60405180910390f35b3480156107be575f80fd5b506107d960048036038101906107d4919061325b565b6111fc565b005b3480156107e6575f80fd5b5061080160048036038101906107fc919061325b565b61125c565b005b34801561080e575f80fd5b50610829600480360381019061082491906132c1565b61134a565b005b348015610836575f80fd5b5061083f6113f0565b005b34801561084c575f80fd5b50610855611442565b6040516108699897969594939291906132ec565b60405180910390f35b34801561087d575f80fd5b5061089860048036038101906108939190613368565b6114d7565b005b3480156108a5575f80fd5b506108c060048036038101906108bb9190613368565b611563565b6040516108cd91906130b6565b60405180910390f35b3480156108e1575f80fd5b506108fc60048036038101906108f7919061325b565b6115e5565b005b348015610909575f80fd5b50610924600480360381019061091f919061303e565b611645565b005b348015610931575f80fd5b5061094c6004803603810190610947919061303e565b6116c7565b6040516109599190613025565b60405180910390f35b34801561096d575f80fd5b506109766116e4565b6040516109839190613401565b60405180910390f35b60606003805461099b90613447565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790613447565b8015610a125780601f106109e957610100808354040283529160200191610a12565b820191905f5260205f20905b8154815290600101906020018083116109f557829003601f168201915b5050505050905090565b5f80610a26611708565b9050610a3381858561170f565b600191505092915050565b6013602052805f5260405f205f915054906101000a900460ff1681565b610a636118d2565b6064610a6d610b9d565b610a7791906134d1565b6103e883610a83610b9d565b610a8d9190613501565b610a9791906134d1565b1015610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf906135b2565b60405180910390fd5b6064610ae2610b9d565b610aec91906134d1565b6103e882610af8610b9d565b610b029190613501565b610b0c91906134d1565b1015610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490613640565b60405180910390fd5b6103e882610b59610b9d565b610b639190613501565b610b6d91906134d1565b6008819055506103e881610b7f610b9d565b610b899190613501565b610b9391906134d1565b6009819055505050565b5f600254905090565b600f5481565b610bb46118d2565b80600c60016101000a81548160ff02191690831515021790555050565b6016602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b5f80610bfe611708565b9050610c0b858285611950565b610c168585856119db565b60019150509392505050565b5f6012905090565b610c326118d2565b85600d5f0160016101000a81548160ff021916908360ff16021790555084600d5f0160036101000a81548160ff021916908360ff16021790555083600d5f0160026101000a81548160ff021916908360ff160217905550600d5f0160029054906101000a900460ff16600d5f0160039054906101000a900460ff16600d5f0160019054906101000a900460ff16610cc9919061365e565b610cd3919061365e565b600d5f015f6101000a81548160ff021916908360ff16021790555082600d5f0160056101000a81548160ff021916908360ff16021790555081600d5f0160076101000a81548160ff021916908360ff16021790555080600d5f0160066101000a81548160ff021916908360ff160217905550600d5f0160069054906101000a900460ff16600d5f0160079054906101000a900460ff16600d5f0160059054906101000a900460ff16610d85919061365e565b610d8f919061365e565b600d5f0160046101000a81548160ff021916908360ff160217905550601e600d5f015f9054906101000a900460ff1660ff161115610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906136dc565b60405180910390fd5b601e600d5f0160049054906101000a900460ff1660ff161115610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e51906136dc565b60405180910390fd5b505050505050565b5f80610e6c611708565b9050610e8d818585610e7e8589611563565b610e8891906136fa565b61170f565b600191505092915050565b610ea06118d2565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000b91bd5327477f44656e8652912698df337b4cb4381565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f610f776118d2565b81600b8190555060019050919050565b600c60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fe76118d2565b610ff05f61253a565b565b610ffa6118d2565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546110ae90613447565b80601f01602080910402602001604051908101604052809291908181526020018280546110da90613447565b80156111255780601f106110fc57610100808354040283529160200191611125565b820191905f5260205f20905b81548152906001019060200180831161110857829003601f168201915b5050505050905090565b6014602052805f5260405f205f915054906101000a900460ff1681565b60105481565b5f8061115c611708565b90505f6111698286611563565b9050838110156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061379d565b60405180910390fd5b6111bb828686840361170f565b60019250505092915050565b5f806111d1611708565b90506111de8185856119db565b600191505092915050565b600c60029054906101000a900460ff1681565b6112046118d2565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6112646118d2565b7f000000000000000000000000b91bd5327477f44656e8652912698df337b4cb4373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990613805565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6113526118d2565b606461135c610b9d565b61136691906134d1565b6103e882611372610b9d565b61137c9190613501565b61138691906134d1565b10156113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613893565b60405180910390fd5b6103e8816113d3610b9d565b6113dd9190613501565b6113e791906134d1565b600a8190555050565b6113f86118d2565b6001600c5f6101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff02191690831515021790555060014361143a91906136fa565b601181905550565b600d805f015f9054906101000a900460ff1690805f0160019054906101000a900460ff1690805f0160029054906101000a900460ff1690805f0160039054906101000a900460ff1690805f0160049054906101000a900460ff1690805f0160059054906101000a900460ff1690805f0160069054906101000a900460ff1690805f0160079054906101000a900460ff16905088565b6114df6118d2565b8160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6115ed6118d2565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61164d6118d2565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b290613921565b60405180910390fd5b6116c48161253a565b50565b6015602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361177d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611774906139af565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e290613a3d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118c591906130b6565b60405180910390a3505050565b6118da611708565b73ffffffffffffffffffffffffffffffffffffffff166118f8611052565b73ffffffffffffffffffffffffffffffffffffffff161461194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590613aa5565b60405180910390fd5b565b5f61195b8484611563565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119d557818110156119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90613b0d565b60405180910390fd5b6119d4848484840361170f565b5b50505050565b5f81036119f2576119ed83835f6125fd565b612535565b6119fa611052565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a685750611a38611052565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611a815750600c60029054906101000a900460ff16155b15611ece57600c5f9054906101000a900460ff16611b745760125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611b34575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90613b75565b60405180910390fd5b5b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c11575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611c6057600854811115611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5290613bdd565b60405180910390fd5b611d49565b60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cfd575060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d4857600954811115611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90613c45565b60405180910390fd5b5b5b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611df057600a54611da383610f9a565b82611dae91906136fa565b1115611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690613cad565b60405180910390fd5b5b60165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611e8e575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490613d15565b60405180910390fd5b5b5f611ed830610f9a565b90505f600b548210159050808015611efc5750600c60019054906101000a900460ff165b8015611f155750600c60029054906101000a900460ff16155b8015611f67575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611fba575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561200d575060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612050576001600c60026101000a81548160ff021916908315150217905550612035612869565b5f600c60026101000a81548160ff0219169083151502179055505b5f600c60029054906101000a900460ff1615905060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120ff575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612108575f90505b8015612526575f6011544310156121a7576121406064612132606388612b3f90919063ffffffff16565b612b5490919063ffffffff16565b90506063605e826121519190613501565b61215b91906134d1565b600e5f82825461216b91906136fa565b9250508190555060636005826121819190613501565b61218b91906134d1565b60105f82825461219b91906136fa565b92505081905550612502565b60155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561221057505f600d5f0160049054906101000a900460ff1660ff16115b156123585761224f6064612241600d5f0160049054906101000a900460ff1660ff1688612b3f90919063ffffffff16565b612b5490919063ffffffff16565b9050600d5f0160049054906101000a900460ff1660ff16600d5f0160079054906101000a900460ff1660ff16826122869190613501565b61229091906134d1565b600f5f8282546122a091906136fa565b92505081905550600d5f0160049054906101000a900460ff1660ff16600d5f0160059054906101000a900460ff1660ff16826122dc9190613501565b6122e691906134d1565b600e5f8282546122f691906136fa565b92505081905550600d5f0160049054906101000a900460ff1660ff16600d5f0160069054906101000a900460ff1660ff16826123329190613501565b61233c91906134d1565b60105f82825461234c91906136fa565b92505081905550612501565b60155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156123c057505f600d5f015f9054906101000a900460ff1660ff16115b15612500576123fe60646123f0600d5f015f9054906101000a900460ff1660ff1688612b3f90919063ffffffff16565b612b5490919063ffffffff16565b9050600d5f015f9054906101000a900460ff1660ff16600d5f0160039054906101000a900460ff1660ff16826124349190613501565b61243e91906134d1565b600f5f82825461244e91906136fa565b92505081905550600d5f015f9054906101000a900460ff1660ff16600d5f0160019054906101000a900460ff1660ff16826124899190613501565b61249391906134d1565b600e5f8282546124a391906136fa565b92505081905550600d5f015f9054906101000a900460ff1660ff16600d5f0160029054906101000a900460ff1660ff16826124de9190613501565b6124e891906134d1565b60105f8282546124f891906136fa565b925050819055505b5b5b5f811115612516576125158730836125fd565b5b80856125229190613d33565b9450505b6125318686866125fd565b5050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266290613dd6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090613e64565b60405180910390fd5b6126e4838383612b69565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90613ef2565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161285091906130b6565b60405180910390a3612863848484612b6e565b50505050565b5f61287330610f9a565b90505f601054600e54600f5461288991906136fa565b61289391906136fa565b90505f808314806128a357505f82145b156128b057505050612b3d565b6014600b546128bf9190613501565b8311156128d8576014600b546128d59190613501565b92505b5f600283600f54866128ea9190613501565b6128f491906134d1565b6128fe91906134d1565b90505f6129148286612b7390919063ffffffff16565b90505f47905061292382612b88565b5f6129378247612b7390919063ffffffff16565b90505f61296187612953600e5485612b3f90919063ffffffff16565b612b5490919063ffffffff16565b90505f61298b8861297d60105486612b3f90919063ffffffff16565b612b5490919063ffffffff16565b90505f818361299a91906136fa565b846129a59190613d33565b90505f600f819055505f600e819055505f6010819055505f871180156129ca57505f81115b15612a13576129d98782612dbb565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868682604051612a0a929190613f10565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168347612a579190613d33565b604051612a6390613f64565b5f6040518083038185875af1925050503d805f8114612a9d576040519150601f19603f3d011682016040523d82523d5f602084013e612aa2565b606091505b50508098505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612aed90613f64565b5f6040518083038185875af1925050503d805f8114612b27576040519150601f19603f3d011682016040523d82523d5f602084013e612b2c565b606091505b505080985050505050505050505050505b565b5f8183612b4c9190613501565b905092915050565b5f8183612b6191906134d1565b905092915050565b505050565b505050565b5f8183612b809190613d33565b905092915050565b5f600267ffffffffffffffff811115612ba457612ba3613f78565b5b604051908082528060200260200182016040528015612bd25781602001602082028036833780820191505090505b50905030815f81518110612be957612be8613fa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cb09190613fe6565b81600181518110612cc457612cc3613fa5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d29307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461170f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612d8a959493929190614101565b5f604051808303815f87803b158015612da1575f80fd5b505af1158015612db3573d5f803e3d5ffd5b505050505050565b612de6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461170f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8030426040518863ffffffff1660e01b8152600401612e4a96959493929190614159565b60606040518083038185885af1158015612e66573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612e8b91906141cc565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612ec9578082015181840152602081019050612eae565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612eee82612e92565b612ef88185612e9c565b9350612f08818560208601612eac565b612f1181612ed4565b840191505092915050565b5f6020820190508181035f830152612f348184612ee4565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f6982612f40565b9050919050565b612f7981612f5f565b8114612f83575f80fd5b50565b5f81359050612f9481612f70565b92915050565b5f819050919050565b612fac81612f9a565b8114612fb6575f80fd5b50565b5f81359050612fc781612fa3565b92915050565b5f8060408385031215612fe357612fe2612f3c565b5b5f612ff085828601612f86565b925050602061300185828601612fb9565b9150509250929050565b5f8115159050919050565b61301f8161300b565b82525050565b5f6020820190506130385f830184613016565b92915050565b5f6020828403121561305357613052612f3c565b5b5f61306084828501612f86565b91505092915050565b5f806040838503121561307f5761307e612f3c565b5b5f61308c85828601612fb9565b925050602061309d85828601612fb9565b9150509250929050565b6130b081612f9a565b82525050565b5f6020820190506130c95f8301846130a7565b92915050565b6130d88161300b565b81146130e2575f80fd5b50565b5f813590506130f3816130cf565b92915050565b5f6020828403121561310e5761310d612f3c565b5b5f61311b848285016130e5565b91505092915050565b5f805f6060848603121561313b5761313a612f3c565b5b5f61314886828701612f86565b935050602061315986828701612f86565b925050604061316a86828701612fb9565b9150509250925092565b5f60ff82169050919050565b61318981613174565b82525050565b5f6020820190506131a25f830184613180565b92915050565b6131b181613174565b81146131bb575f80fd5b50565b5f813590506131cc816131a8565b92915050565b5f805f805f8060c087890312156131ec576131eb612f3c565b5b5f6131f989828a016131be565b965050602061320a89828a016131be565b955050604061321b89828a016131be565b945050606061322c89828a016131be565b935050608061323d89828a016131be565b92505060a061324e89828a016131be565b9150509295509295509295565b5f806040838503121561327157613270612f3c565b5b5f61327e85828601612f86565b925050602061328f858286016130e5565b9150509250929050565b6132a281612f5f565b82525050565b5f6020820190506132bb5f830184613299565b92915050565b5f602082840312156132d6576132d5612f3c565b5b5f6132e384828501612fb9565b91505092915050565b5f610100820190506133005f83018b613180565b61330d602083018a613180565b61331a6040830189613180565b6133276060830188613180565b6133346080830187613180565b61334160a0830186613180565b61334e60c0830185613180565b61335b60e0830184613180565b9998505050505050505050565b5f806040838503121561337e5761337d612f3c565b5b5f61338b85828601612f86565b925050602061339c85828601612f86565b9150509250929050565b5f819050919050565b5f6133c96133c46133bf84612f40565b6133a6565b612f40565b9050919050565b5f6133da826133af565b9050919050565b5f6133eb826133d0565b9050919050565b6133fb816133e1565b82525050565b5f6020820190506134145f8301846133f2565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061345e57607f821691505b6020821081036134715761347061341a565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6134db82612f9a565b91506134e683612f9a565b9250826134f6576134f5613477565b5b828204905092915050565b5f61350b82612f9a565b915061351683612f9a565b925082820261352481612f9a565b9150828204841483151761353b5761353a6134a4565b5b5092915050565b7f6d6178427579416d6f756e74206d75737420626520686967686572207468616e5f8201527f2031250000000000000000000000000000000000000000000000000000000000602082015250565b5f61359c602383612e9c565b91506135a782613542565b604082019050919050565b5f6020820190508181035f8301526135c981613590565b9050919050565b7f6d617853656c6c416d6f756e74206d75737420626520686967686572207468615f8201527f6e20312500000000000000000000000000000000000000000000000000000000602082015250565b5f61362a602483612e9c565b9150613635826135d0565b604082019050919050565b5f6020820190508181035f8301526136578161361e565b9050919050565b5f61366882613174565b915061367383613174565b9250828201905060ff81111561368c5761368b6134a4565b5b92915050565b7f4d757374206b656570206665657320617420333025206f72206c6573730000005f82015250565b5f6136c6601d83612e9c565b91506136d182613692565b602082019050919050565b5f6020820190508181035f8301526136f3816136ba565b9050919050565b5f61370482612f9a565b915061370f83612f9a565b9250828201905080821115613727576137266134a4565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613787602583612e9c565b91506137928261372d565b604082019050919050565b5f6020820190508181035f8301526137b48161377b565b9050919050565b7f4d757374206b65657020756e69737761705632506169720000000000000000005f82015250565b5f6137ef601783612e9c565b91506137fa826137bb565b602082019050919050565b5f6020820190508181035f83015261381c816137e3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b5f61387d602283612e9c565b915061388882613823565b604082019050919050565b5f6020820190508181035f8301526138aa81613871565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61390b602683612e9c565b9150613916826138b1565b604082019050919050565b5f6020820190508181035f830152613938816138ff565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613999602483612e9c565b91506139a48261393f565b604082019050919050565b5f6020820190508181035f8301526139c68161398d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a27602283612e9c565b9150613a32826139cd565b604082019050919050565b5f6020820190508181035f830152613a5481613a1b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613a8f602083612e9c565b9150613a9a82613a5b565b602082019050919050565b5f6020820190508181035f830152613abc81613a83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613af7601d83612e9c565b9150613b0282613ac3565b602082019050919050565b5f6020820190508181035f830152613b2481613aeb565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613b5f601683612e9c565b9150613b6a82613b2b565b602082019050919050565b5f6020820190508181035f830152613b8c81613b53565b9050919050565b7f627579207472616e73666572206f766572206d617820616d6f756e74000000005f82015250565b5f613bc7601c83612e9c565b9150613bd282613b93565b602082019050919050565b5f6020820190508181035f830152613bf481613bbb565b9050919050565b7f53656c6c207472616e73666572206f766572206d617820616d6f756e740000005f82015250565b5f613c2f601d83612e9c565b9150613c3a82613bfb565b602082019050919050565b5f6020820190508181035f830152613c5c81613c23565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613c97601383612e9c565b9150613ca282613c63565b602082019050919050565b5f6020820190508181035f830152613cc481613c8b565b9050919050565b7f426c61636b6c69737465642061646472657373000000000000000000000000005f82015250565b5f613cff601383612e9c565b9150613d0a82613ccb565b602082019050919050565b5f6020820190508181035f830152613d2c81613cf3565b9050919050565b5f613d3d82612f9a565b9150613d4883612f9a565b9250828203905081811115613d6057613d5f6134a4565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613dc0602583612e9c565b9150613dcb82613d66565b604082019050919050565b5f6020820190508181035f830152613ded81613db4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613e4e602383612e9c565b9150613e5982613df4565b604082019050919050565b5f6020820190508181035f830152613e7b81613e42565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613edc602683612e9c565b9150613ee782613e82565b604082019050919050565b5f6020820190508181035f830152613f0981613ed0565b9050919050565b5f604082019050613f235f8301856130a7565b613f3060208301846130a7565b9392505050565b5f81905092915050565b50565b5f613f4f5f83613f37565b9150613f5a82613f41565b5f82019050919050565b5f613f6e82613f44565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613fe081612f70565b92915050565b5f60208284031215613ffb57613ffa612f3c565b5b5f61400884828501613fd2565b91505092915050565b5f819050919050565b5f61403461402f61402a84614011565b6133a6565b612f9a565b9050919050565b6140448161401a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61407c81612f5f565b82525050565b5f61408d8383614073565b60208301905092915050565b5f602082019050919050565b5f6140af8261404a565b6140b98185614054565b93506140c483614064565b805f5b838110156140f45781516140db8882614082565b97506140e683614099565b9250506001810190506140c7565b5085935050505092915050565b5f60a0820190506141145f8301886130a7565b614121602083018761403b565b818103604083015261413381866140a5565b90506141426060830185613299565b61414f60808301846130a7565b9695505050505050565b5f60c08201905061416c5f830189613299565b61417960208301886130a7565b614186604083018761403b565b614193606083018661403b565b6141a06080830185613299565b6141ad60a08301846130a7565b979650505050505050565b5f815190506141c681612fa3565b92915050565b5f805f606084860312156141e3576141e2612f3c565b5b5f6141f0868287016141b8565b9350506020614201868287016141b8565b9250506040614212868287016141b8565b915050925092509256fea2646970667358221220566b38be1b175c09d1ee24afebba6194d3757f2f0700cf3a050fe7114af83c7564736f6c63430008140033
Deployed Bytecode Sourcemap
33287:12709:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22220:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24580:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34633:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37304:458;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23349:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34417:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38049:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34968:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34377:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25361:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23191:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38291:882;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26031:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38159:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33410:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39991:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37136:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33774:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23520:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15526:103;;;;;;;;;;;;;:::i;:::-;;39475:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14885:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33475:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22439:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34703:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34457:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26772:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23853:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33812:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39181:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39627:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37770:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36987:141;;;;;;;;;;;;;:::i;:::-;;34115:253;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;39812:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24109:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39321:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15784:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34919:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33361;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22220:100;22274:13;22307:5;22300:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22220:100;:::o;24580:201::-;24663:4;24680:13;24696:12;:10;:12::i;:::-;24680:28;;24719:32;24728:5;24735:7;24744:6;24719:8;:32::i;:::-;24769:4;24762:11;;;24580:201;;;;:::o;34633:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;37304:458::-;14771:13;:11;:13::i;:::-;37466:3:::1;37450:13;:11;:13::i;:::-;:19;;;;:::i;:::-;37440:4;37427:9;37411:13;:11;:13::i;:::-;:25;;;;:::i;:::-;37410:34;;;;:::i;:::-;37409:61;;37401:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;37587:3;37571:13;:11;:13::i;:::-;:19;;;;:::i;:::-;37561:4;37547:10;37531:13;:11;:13::i;:::-;:26;;;;:::i;:::-;37530:35;;;;:::i;:::-;37529:62;;37521:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;37688:4;37675:9;37659:13;:11;:13::i;:::-;:25;;;;:::i;:::-;37658:34;;;;:::i;:::-;37643:12;:49;;;;37750:4;37736:10;37720:13;:11;:13::i;:::-;:26;;;;:::i;:::-;37719:35;;;;:::i;:::-;37703:13;:51;;;;37304:458:::0;;:::o;23349:108::-;23410:7;23437:12;;23430:19;;23349:108;:::o;34417:33::-;;;;:::o;38049:102::-;14771:13;:11;:13::i;:::-;38136:7:::1;38122:11;;:21;;;;;;;;;;;;;;;;;;38049:102:::0;:::o;34968:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;34377:33::-;;;;:::o;25361:261::-;25458:4;25475:15;25493:12;:10;:12::i;:::-;25475:30;;25516:38;25532:4;25538:7;25547:6;25516:15;:38::i;:::-;25565:27;25575:4;25581:2;25585:6;25565:9;:27::i;:::-;25610:4;25603:11;;;25361:261;;;;;:::o;23191:93::-;23249:5;23274:2;23267:9;;23191:93;:::o;38291:882::-;14771:13;:11;:13::i;:::-;38561:16:::1;38537:5;:21;;;:40;;;;;;;;;;;;;;;;;;38612:16;38588:5;:21;;;:40;;;;;;;;;;;;;;;;;;38657:10;38639:5;:15;;;:28;;;;;;;;;;;;;;;;;;38747:5;:15;;;;;;;;;;;;38723:5;:21;;;;;;;;;;;;38699:5;:21;;;;;;;;;;;;:45;;;;:::i;:::-;:63;;;;:::i;:::-;38678:5;:18;;;:84;;;;;;;;;;;;;;;;;;38800:17;38775:5;:22;;;:42;;;;;;;;;;;;;;;;;;38853:17;38828:5;:22;;;:42;;;;;;;;;;;;;;;;;;38900:11;38881:5;:16;;;:30;;;;;;;;;;;;;;;;;;38994:5;:16;;;;;;;;;;;;38969:5;:22;;;;;;;;;;;;38944:5;:22;;;;;;;;;;;;:47;;;;:::i;:::-;:66;;;;:::i;:::-;38922:5;:19;;;:88;;;;;;;;;;;;;;;;;;39051:2;39029:5;:18;;;;;;;;;;;;:24;;;;39021:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39129:2;39106:5;:19;;;;;;;;;;;;:25;;;;39098:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38291:882:::0;;;;;;:::o;26031:238::-;26119:4;26136:13;26152:12;:10;:12::i;:::-;26136:28;;26175:64;26184:5;26191:7;26228:10;26200:25;26210:5;26217:7;26200:9;:25::i;:::-;:38;;;;:::i;:::-;26175:8;:64::i;:::-;26257:4;26250:11;;;26031:238;;;;:::o;38159:124::-;14771:13;:11;:13::i;:::-;38270:5:::1;38244:14;:23;38259:7;38244:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;38159:124:::0;;:::o;33410:38::-;;;:::o;39991:126::-;40057:4;40081:19;:28;40101:7;40081:28;;;;;;;;;;;;;;;;;;;;;;;;;40074:35;;39991:126;;;:::o;37136:160::-;37218:4;14771:13;:11;:13::i;:::-;37257:9:::1;37235:19;:31;;;;37284:4;37277:11;;37136:160:::0;;;:::o;33774:31::-;;;;;;;;;;;;;:::o;23520:127::-;23594:7;23621:9;:18;23631:7;23621:18;;;;;;;;;;;;;;;;23614:25;;23520:127;;;:::o;15526:103::-;14771:13;:11;:13::i;:::-;15591:30:::1;15618:1;15591:18;:30::i;:::-;15526:103::o:0;39475:144::-;14771:13;:11;:13::i;:::-;39607:4:::1;39565:31;:39;39597:6;39565:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39475:144:::0;;:::o;14885:87::-;14931:7;14958:6;;;;;;;;;;;14951:13;;14885:87;:::o;33475:24::-;;;;;;;;;;;;;:::o;22439:104::-;22495:13;22528:7;22521:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22439:104;:::o;34703:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;34457:27::-;;;;:::o;26772:436::-;26865:4;26882:13;26898:12;:10;:12::i;:::-;26882:28;;26921:24;26948:25;26958:5;26965:7;26948:9;:25::i;:::-;26921:52;;27012:15;26992:16;:35;;26984:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;27105:60;27114:5;27121:7;27149:15;27130:16;:34;27105:8;:60::i;:::-;27196:4;27189:11;;;;26772:436;;;;:::o;23853:193::-;23932:4;23949:13;23965:12;:10;:12::i;:::-;23949:28;;23988;23998:5;24005:2;24009:6;23988:9;:28::i;:::-;24034:4;24027:11;;;23853:193;;;;:::o;33812:22::-;;;;;;;;;;;;;:::o;39181:132::-;14771:13;:11;:13::i;:::-;39297:8:::1;39266:19;:28;39286:7;39266:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39181:132:::0;;:::o;39627:177::-;14771:13;:11;:13::i;:::-;39720::::1;39712:21;;:4;:21;;::::0;39704:57:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39791:5;39772:10;:16;39783:4;39772:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;39627:177:::0;;:::o;37770:271::-;14771:13;:11;:13::i;:::-;37923:3:::1;37907:13;:11;:13::i;:::-;:19;;;;:::i;:::-;37897:4;37880:13;37864;:11;:13::i;:::-;:29;;;;:::i;:::-;37863:38;;;;:::i;:::-;37862:65;;37854:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;38029:4;38012:13;37996;:11;:13::i;:::-;:29;;;;:::i;:::-;37995:38;;;;:::i;:::-;37977:15;:56;;;;37770:271:::0;:::o;36987:141::-;14771:13;:11;:13::i;:::-;37050:4:::1;37038:9;;:16;;;;;;;;;;;;;;;;;;37079:4;37065:11;;:18;;;;;;;;;;;;;;;;;;37119:1;37104:12;:16;;;;:::i;:::-;37094:7;:26;;;;36987:141::o:0;34115:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39812:171::-;14771:13;:11;:13::i;:::-;39926:16:::1;39908:15;;:34;;;;;;;;;;;;;;;;;;39965:10;39953:9;;:22;;;;;;;;;;;;;;;;;;39812:171:::0;;:::o;24109:151::-;24198:7;24225:11;:18;24237:5;24225:18;;;;;;;;;;;;;;;:27;24244:7;24225:27;;;;;;;;;;;;;;;;24218:34;;24109:151;;;;:::o;39321:146::-;14771:13;:11;:13::i;:::-;39451:8:::1;39413:26;:35;39440:7;39413:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39321:146:::0;;:::o;15784:201::-;14771:13;:11;:13::i;:::-;15893:1:::1;15873:22;;:8;:22;;::::0;15865:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15949:28;15968:8;15949:18;:28::i;:::-;15784:201:::0;:::o;34919:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;33361:::-;;;:::o;13436:98::-;13489:7;13516:10;13509:17;;13436:98;:::o;30765:346::-;30884:1;30867:19;;:5;:19;;;30859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30965:1;30946:21;;:7;:21;;;30938:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31049:6;31019:11;:18;31031:5;31019:18;;;;;;;;;;;;;;;:27;31038:7;31019:27;;;;;;;;;;;;;;;:36;;;;31087:7;31071:32;;31080:5;31071:32;;;31096:6;31071:32;;;;;;:::i;:::-;;;;;;;;30765:346;;;:::o;15050:132::-;15125:12;:10;:12::i;:::-;15114:23;;:7;:5;:7::i;:::-;:23;;;15106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15050:132::o;31402:419::-;31503:24;31530:25;31540:5;31547:7;31530:9;:25::i;:::-;31503:52;;31590:17;31570:16;:37;31566:248;;31652:6;31632:16;:26;;31624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31736:51;31745:5;31752:7;31780:6;31761:16;:25;31736:8;:51::i;:::-;31566:248;31492:329;31402:419;;;:::o;40125:3284::-;40272:1;40262:6;:11;40258:102;;40290:37;40306:6;40314:9;40325:1;40290:15;:37::i;:::-;40342:7;;40258:102;40400:7;:5;:7::i;:::-;40390:17;;:6;:17;;;;:54;;;;;40437:7;:5;:7::i;:::-;40424:20;;:9;:20;;;;40390:54;:82;;;;;40462:10;;;;;;;;;;;40461:11;40390:82;40372:920;;;40504:9;;;;;;;;;;;40499:147;;40542:19;:27;40562:6;40542:27;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;40573:19;:30;40593:9;40573:30;;;;;;;;;;;;;;;;;;;;;;;;;40542:61;40534:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;40499:147;40664:10;:18;40675:6;40664:18;;;;;;;;;;;;;;;;;;;;;;;;;:65;;;;;40687:31;:42;40719:9;40687:42;;;;;;;;;;;;;;;;;;;;;;;;;40686:43;40664:65;40660:346;;;40768:12;;40758:6;:22;;40750:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40660:346;;;40839:10;:21;40850:9;40839:21;;;;;;;;;;;;;;;;;;;;;;;;;:65;;;;;40865:31;:39;40897:6;40865:39;;;;;;;;;;;;;;;;;;;;;;;;;40864:40;40839:65;40835:171;;;40943:13;;40933:6;:23;;40925:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40835:171;40660:346;41027:26;:37;41054:9;41027:37;;;;;;;;;;;;;;;;;;;;;;;;;41022:159;;41126:15;;41102:20;41112:9;41102;:20::i;:::-;41093:6;:29;;;;:::i;:::-;:48;;41085:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;41022:159;41204:14;:22;41219:6;41204:22;;;;;;;;;;;;;;;;;;;;;;;;;41203:23;:53;;;;;41231:14;:25;41246:9;41231:25;;;;;;;;;;;;;;;;;;;;;;;;;41230:26;41203:53;41195:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40372:920;41304:28;41335:24;41353:4;41335:9;:24::i;:::-;41304:55;;41372:12;41411:19;;41387:20;:43;;41372:58;;41461:7;:35;;;;;41485:11;;;;;;;;;;;41461:35;:63;;;;;41514:10;;;;;;;;;;;41513:11;41461:63;:101;;;;;41541:10;:21;41552:9;41541:21;;;;;;;;;;;;;;;;;;;;;;;;;41461:101;:146;;;;;41580:19;:27;41600:6;41580:27;;;;;;;;;;;;;;;;;;;;;;;;;41579:28;41461:146;:194;;;;;41625:19;:30;41645:9;41625:30;;;;;;;;;;;;;;;;;;;;;;;;;41624:31;41461:194;41443:326;;;41695:4;41682:10;;:17;;;;;;;;;;;;;;;;;;41714:10;:8;:10::i;:::-;41752:5;41739:10;;:18;;;;;;;;;;;;;;;;;;41443:326;41781:12;41797:10;;;;;;;;;;;41796:11;41781:26;;41909:19;:27;41929:6;41909:27;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;41940:19;:30;41960:9;41940:30;;;;;;;;;;;;;;;;;;;;;;;;;41909:61;41905:109;;;41997:5;41987:15;;41905:109;42104:7;42100:1247;;;42128:12;42178:7;;42163:12;:22;42159:1037;;;42213:23;42232:3;42213:14;42224:2;42213:6;:10;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;42206:30;;42291:2;42285;42278:4;:9;;;;:::i;:::-;42277:16;;;;:::i;:::-;42255:18;;:38;;;;;;;:::i;:::-;;;;;;;;42341:2;42336:1;42329:4;:8;;;;:::i;:::-;42328:15;;;;:::i;:::-;42312:12;;:31;;;;;;;:::i;:::-;;;;;;;;42159:1037;;;42369:10;:21;42380:9;42369:21;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;;42416:1;42394:5;:19;;;;;;;;;;;;:23;;;42369:48;42365:831;;;42445:40;42481:3;42445:31;42456:5;:19;;;;;;;;;;;;42445:31;;:6;:10;;:31;;;;:::i;:::-;:35;;:40;;;;:::i;:::-;42438:47;;42558:5;:19;;;;;;;;;;;;42526:51;;42533:5;:22;;;;;;;;;;;;42526:29;;:4;:29;;;;:::i;:::-;:51;;;;:::i;:::-;42504:18;;:73;;;;;;;:::i;:::-;;;;;;;;42650:5;:19;;;;;;;;;;;;42618:51;;42625:5;:22;;;;;;;;;;;;42618:29;;:4;:29;;;;:::i;:::-;:51;;;;:::i;:::-;42596:18;;:73;;;;;;;:::i;:::-;;;;;;;;42730:5;:19;;;;;;;;;;;;42704:45;;42711:5;:16;;;;;;;;;;;;42704:23;;:4;:23;;;;:::i;:::-;:45;;;;:::i;:::-;42688:12;;:61;;;;;;;:::i;:::-;;;;;;;;42365:831;;;42811:10;:18;42822:6;42811:18;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;;42854:1;42833:5;:18;;;;;;;;;;;;:22;;;42811:44;42807:389;;;42883:39;42918:3;42883:30;42894:5;:18;;;;;;;;;;;;42883:30;;:6;:10;;:30;;;;:::i;:::-;:34;;:39;;;;:::i;:::-;42876:46;;42994:5;:18;;;;;;;;;;;;42963:49;;42970:5;:21;;;;;;;;;;;;42963:28;;:4;:28;;;;:::i;:::-;:49;;;;:::i;:::-;42941:18;;:71;;;;;;;:::i;:::-;;;;;;;;43084:5;:18;;;;;;;;;;;;43053:49;;43060:5;:21;;;;;;;;;;;;43053:28;;:4;:28;;;;:::i;:::-;:49;;;;:::i;:::-;43031:18;;:71;;;;;;;:::i;:::-;;;;;;;;43162:5;:18;;;;;;;;;;;;43137:43;;43144:5;:15;;;;;;;;;;;;43137:22;;:4;:22;;;;:::i;:::-;:43;;;;:::i;:::-;43121:12;;:59;;;;;;;:::i;:::-;;;;;;;;42807:389;42365:831;42159:1037;43223:1;43216:4;:8;43212:93;;;43245:44;43261:6;43277:4;43284;43245:15;:44::i;:::-;43212:93;43331:4;43321:14;;;;;:::i;:::-;;;42113:1234;42100:1247;43359:42;43375:6;43383:9;43394:6;43359:15;:42::i;:::-;40247:3162;;;40125:3284;;;;:::o;16145:191::-;16219:16;16238:6;;;;;;;;;;;16219:25;;16264:8;16255:6;;:17;;;;;;;;;;;;;;;;;;16319:8;16288:40;;16309:8;16288:40;;;;;;;;;;;;16208:128;16145:191;:::o;27678:806::-;27791:1;27775:18;;:4;:18;;;27767:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27868:1;27854:16;;:2;:16;;;27846:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27923:38;27944:4;27950:2;27954:6;27923:20;:38::i;:::-;27974:19;27996:9;:15;28006:4;27996:15;;;;;;;;;;;;;;;;27974:37;;28045:6;28030:11;:21;;28022:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;28162:6;28148:11;:20;28130:9;:15;28140:4;28130:15;;;;;;;;;;;;;;;:38;;;;28365:6;28348:9;:13;28358:2;28348:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;28415:2;28400:26;;28409:4;28400:26;;;28419:6;28400:26;;;;;;:::i;:::-;;;;;;;;28439:37;28459:4;28465:2;28469:6;28439:19;:37::i;:::-;27756:728;27678:806;;;:::o;44418:1575::-;44457:28;44488:24;44506:4;44488:9;:24::i;:::-;44457:55;;44523:14;44582:12;;44561:18;;44540;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;44523:71;;44605:12;44658:1;44634:20;:25;:40;;;;44673:1;44663:6;:11;44634:40;44630:79;;;44691:7;;;;;44630:79;44770:2;44748:19;;:24;;;;:::i;:::-;44725:20;:47;44721:127;;;44834:2;44812:19;;:24;;;;:::i;:::-;44789:47;;44721:127;44909:23;44988:1;44979:6;44958:18;;44935:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;44909:80;;45000:26;45029:41;45054:15;45029:20;:24;;:41;;;;:::i;:::-;45000:70;;45083:25;45111:21;45083:49;;45145:36;45162:18;45145:16;:36::i;:::-;45194:18;45215:44;45241:17;45215:21;:25;;:44;;;;:::i;:::-;45194:65;;45272:23;45298:46;45337:6;45298:34;45313:18;;45298:10;:14;;:34;;;;:::i;:::-;:38;;:46;;;;:::i;:::-;45272:72;;45355:17;45375:40;45408:6;45375:28;45390:12;;45375:10;:14;;:28;;;;:::i;:::-;:32;;:40;;;;:::i;:::-;45355:60;;45426:23;45484:9;45466:15;:27;;;;:::i;:::-;45452:10;:42;;;;:::i;:::-;45426:68;;45528:1;45507:18;:22;;;;45561:1;45540:18;:22;;;;45588:1;45573:12;:16;;;;45624:1;45606:15;:19;:42;;;;;45647:1;45629:15;:19;45606:42;45602:192;;;45665:46;45678:15;45695;45665:12;:46::i;:::-;45731:51;45746:18;45766:15;45731:51;;;;;;;:::i;:::-;;;;;;;;45602:192;45828:9;;;;;;;;;;;45820:23;;45876:15;45852:21;:39;;;;:::i;:::-;45820:77;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45806:91;;;;;45930:15;;;;;;;;;;;45922:29;;45959:21;45922:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45908:77;;;;;44446:1547;;;;;;;;;;44418:1575;:::o;9432:98::-;9490:7;9521:1;9517;:5;;;;:::i;:::-;9510:12;;9432:98;;;;:::o;9831:::-;9889:7;9920:1;9916;:5;;;;:::i;:::-;9909:12;;9831:98;;;;:::o;32421:91::-;;;;:::o;33116:90::-;;;;:::o;9075:98::-;9133:7;9164:1;9160;:5;;;;:::i;:::-;9153:12;;9075:98;;;;:::o;43417:550::-;43539:21;43577:1;43563:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43539:40;;43608:4;43590;43595:1;43590:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43634:6;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43624:4;43629:1;43624:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43660:49;43677:4;43692:6;43701:7;43660:8;:49::i;:::-;43748:6;:57;;;43820:7;43842:1;43886:4;43913;43933:15;43748:211;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43468:499;43417:550;:::o;43975:435::-;44119:49;44136:4;44151:6;44160:7;44119:8;:49::i;:::-;44211:6;:22;;;44241:9;44274:4;44294:7;44316:1;44332;44356:4;44376:15;44211:191;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43975:435;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:474::-;3849:6;3857;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;4159:2;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4130:118;3781:474;;;;;:::o;4261:118::-;4348:24;4366:5;4348:24;:::i;:::-;4343:3;4336:37;4261:118;;:::o;4385:222::-;4478:4;4516:2;4505:9;4501:18;4493:26;;4529:71;4597:1;4586:9;4582:17;4573:6;4529:71;:::i;:::-;4385:222;;;;:::o;4613:116::-;4683:21;4698:5;4683:21;:::i;:::-;4676:5;4673:32;4663:60;;4719:1;4716;4709:12;4663:60;4613:116;:::o;4735:133::-;4778:5;4816:6;4803:20;4794:29;;4832:30;4856:5;4832:30;:::i;:::-;4735:133;;;;:::o;4874:323::-;4930:6;4979:2;4967:9;4958:7;4954:23;4950:32;4947:119;;;4985:79;;:::i;:::-;4947:119;5105:1;5130:50;5172:7;5163:6;5152:9;5148:22;5130:50;:::i;:::-;5120:60;;5076:114;4874:323;;;;:::o;5203:619::-;5280:6;5288;5296;5345:2;5333:9;5324:7;5320:23;5316:32;5313:119;;;5351:79;;:::i;:::-;5313:119;5471:1;5496:53;5541:7;5532:6;5521:9;5517:22;5496:53;:::i;:::-;5486:63;;5442:117;5598:2;5624:53;5669:7;5660:6;5649:9;5645:22;5624:53;:::i;:::-;5614:63;;5569:118;5726:2;5752:53;5797:7;5788:6;5777:9;5773:22;5752:53;:::i;:::-;5742:63;;5697:118;5203:619;;;;;:::o;5828:86::-;5863:7;5903:4;5896:5;5892:16;5881:27;;5828:86;;;:::o;5920:112::-;6003:22;6019:5;6003:22;:::i;:::-;5998:3;5991:35;5920:112;;:::o;6038:214::-;6127:4;6165:2;6154:9;6150:18;6142:26;;6178:67;6242:1;6231:9;6227:17;6218:6;6178:67;:::i;:::-;6038:214;;;;:::o;6258:118::-;6329:22;6345:5;6329:22;:::i;:::-;6322:5;6319:33;6309:61;;6366:1;6363;6356:12;6309:61;6258:118;:::o;6382:135::-;6426:5;6464:6;6451:20;6442:29;;6480:31;6505:5;6480:31;:::i;:::-;6382:135;;;;:::o;6523:1033::-;6615:6;6623;6631;6639;6647;6655;6704:3;6692:9;6683:7;6679:23;6675:33;6672:120;;;6711:79;;:::i;:::-;6672:120;6831:1;6856:51;6899:7;6890:6;6879:9;6875:22;6856:51;:::i;:::-;6846:61;;6802:115;6956:2;6982:51;7025:7;7016:6;7005:9;7001:22;6982:51;:::i;:::-;6972:61;;6927:116;7082:2;7108:51;7151:7;7142:6;7131:9;7127:22;7108:51;:::i;:::-;7098:61;;7053:116;7208:2;7234:51;7277:7;7268:6;7257:9;7253:22;7234:51;:::i;:::-;7224:61;;7179:116;7334:3;7361:51;7404:7;7395:6;7384:9;7380:22;7361:51;:::i;:::-;7351:61;;7305:117;7461:3;7488:51;7531:7;7522:6;7511:9;7507:22;7488:51;:::i;:::-;7478:61;;7432:117;6523:1033;;;;;;;;:::o;7562:468::-;7627:6;7635;7684:2;7672:9;7663:7;7659:23;7655:32;7652:119;;;7690:79;;:::i;:::-;7652:119;7810:1;7835:53;7880:7;7871:6;7860:9;7856:22;7835:53;:::i;:::-;7825:63;;7781:117;7937:2;7963:50;8005:7;7996:6;7985:9;7981:22;7963:50;:::i;:::-;7953:60;;7908:115;7562:468;;;;;:::o;8036:118::-;8123:24;8141:5;8123:24;:::i;:::-;8118:3;8111:37;8036:118;;:::o;8160:222::-;8253:4;8291:2;8280:9;8276:18;8268:26;;8304:71;8372:1;8361:9;8357:17;8348:6;8304:71;:::i;:::-;8160:222;;;;:::o;8388:329::-;8447:6;8496:2;8484:9;8475:7;8471:23;8467:32;8464:119;;;8502:79;;:::i;:::-;8464:119;8622:1;8647:53;8692:7;8683:6;8672:9;8668:22;8647:53;:::i;:::-;8637:63;;8593:117;8388:329;;;;:::o;8723:933::-;8980:4;9018:3;9007:9;9003:19;8995:27;;9032:67;9096:1;9085:9;9081:17;9072:6;9032:67;:::i;:::-;9109:68;9173:2;9162:9;9158:18;9149:6;9109:68;:::i;:::-;9187;9251:2;9240:9;9236:18;9227:6;9187:68;:::i;:::-;9265;9329:2;9318:9;9314:18;9305:6;9265:68;:::i;:::-;9343:69;9407:3;9396:9;9392:19;9383:6;9343:69;:::i;:::-;9422;9486:3;9475:9;9471:19;9462:6;9422:69;:::i;:::-;9501;9565:3;9554:9;9550:19;9541:6;9501:69;:::i;:::-;9580;9644:3;9633:9;9629:19;9620:6;9580:69;:::i;:::-;8723:933;;;;;;;;;;;:::o;9662:474::-;9730:6;9738;9787:2;9775:9;9766:7;9762:23;9758:32;9755:119;;;9793:79;;:::i;:::-;9755:119;9913:1;9938:53;9983:7;9974:6;9963:9;9959:22;9938:53;:::i;:::-;9928:63;;9884:117;10040:2;10066:53;10111:7;10102:6;10091:9;10087:22;10066:53;:::i;:::-;10056:63;;10011:118;9662:474;;;;;:::o;10142:60::-;10170:3;10191:5;10184:12;;10142:60;;;:::o;10208:142::-;10258:9;10291:53;10309:34;10318:24;10336:5;10318:24;:::i;:::-;10309:34;:::i;:::-;10291:53;:::i;:::-;10278:66;;10208:142;;;:::o;10356:126::-;10406:9;10439:37;10470:5;10439:37;:::i;:::-;10426:50;;10356:126;;;:::o;10488:152::-;10564:9;10597:37;10628:5;10597:37;:::i;:::-;10584:50;;10488:152;;;:::o;10646:183::-;10759:63;10816:5;10759:63;:::i;:::-;10754:3;10747:76;10646:183;;:::o;10835:274::-;10954:4;10992:2;10981:9;10977:18;10969:26;;11005:97;11099:1;11088:9;11084:17;11075:6;11005:97;:::i;:::-;10835:274;;;;:::o;11115:180::-;11163:77;11160:1;11153:88;11260:4;11257:1;11250:15;11284:4;11281:1;11274:15;11301:320;11345:6;11382:1;11376:4;11372:12;11362:22;;11429:1;11423:4;11419:12;11450:18;11440:81;;11506:4;11498:6;11494:17;11484:27;;11440:81;11568:2;11560:6;11557:14;11537:18;11534:38;11531:84;;11587:18;;:::i;:::-;11531:84;11352:269;11301:320;;;:::o;11627:180::-;11675:77;11672:1;11665:88;11772:4;11769:1;11762:15;11796:4;11793:1;11786:15;11813:180;11861:77;11858:1;11851:88;11958:4;11955:1;11948:15;11982:4;11979:1;11972:15;11999:185;12039:1;12056:20;12074:1;12056:20;:::i;:::-;12051:25;;12090:20;12108:1;12090:20;:::i;:::-;12085:25;;12129:1;12119:35;;12134:18;;:::i;:::-;12119:35;12176:1;12173;12169:9;12164:14;;11999:185;;;;:::o;12190:410::-;12230:7;12253:20;12271:1;12253:20;:::i;:::-;12248:25;;12287:20;12305:1;12287:20;:::i;:::-;12282:25;;12342:1;12339;12335:9;12364:30;12382:11;12364:30;:::i;:::-;12353:41;;12543:1;12534:7;12530:15;12527:1;12524:22;12504:1;12497:9;12477:83;12454:139;;12573:18;;:::i;:::-;12454:139;12238:362;12190:410;;;;:::o;12606:222::-;12746:34;12742:1;12734:6;12730:14;12723:58;12815:5;12810:2;12802:6;12798:15;12791:30;12606:222;:::o;12834:366::-;12976:3;12997:67;13061:2;13056:3;12997:67;:::i;:::-;12990:74;;13073:93;13162:3;13073:93;:::i;:::-;13191:2;13186:3;13182:12;13175:19;;12834:366;;;:::o;13206:419::-;13372:4;13410:2;13399:9;13395:18;13387:26;;13459:9;13453:4;13449:20;13445:1;13434:9;13430:17;13423:47;13487:131;13613:4;13487:131;:::i;:::-;13479:139;;13206:419;;;:::o;13631:223::-;13771:34;13767:1;13759:6;13755:14;13748:58;13840:6;13835:2;13827:6;13823:15;13816:31;13631:223;:::o;13860:366::-;14002:3;14023:67;14087:2;14082:3;14023:67;:::i;:::-;14016:74;;14099:93;14188:3;14099:93;:::i;:::-;14217:2;14212:3;14208:12;14201:19;;13860:366;;;:::o;14232:419::-;14398:4;14436:2;14425:9;14421:18;14413:26;;14485:9;14479:4;14475:20;14471:1;14460:9;14456:17;14449:47;14513:131;14639:4;14513:131;:::i;:::-;14505:139;;14232:419;;;:::o;14657:188::-;14695:3;14714:18;14730:1;14714:18;:::i;:::-;14709:23;;14746:18;14762:1;14746:18;:::i;:::-;14741:23;;14787:1;14784;14780:9;14773:16;;14810:4;14805:3;14802:13;14799:39;;;14818:18;;:::i;:::-;14799:39;14657:188;;;;:::o;14851:179::-;14991:31;14987:1;14979:6;14975:14;14968:55;14851:179;:::o;15036:366::-;15178:3;15199:67;15263:2;15258:3;15199:67;:::i;:::-;15192:74;;15275:93;15364:3;15275:93;:::i;:::-;15393:2;15388:3;15384:12;15377:19;;15036:366;;;:::o;15408:419::-;15574:4;15612:2;15601:9;15597:18;15589:26;;15661:9;15655:4;15651:20;15647:1;15636:9;15632:17;15625:47;15689:131;15815:4;15689:131;:::i;:::-;15681:139;;15408:419;;;:::o;15833:191::-;15873:3;15892:20;15910:1;15892:20;:::i;:::-;15887:25;;15926:20;15944:1;15926:20;:::i;:::-;15921:25;;15969:1;15966;15962:9;15955:16;;15990:3;15987:1;15984:10;15981:36;;;15997:18;;:::i;:::-;15981:36;15833:191;;;;:::o;16030:224::-;16170:34;16166:1;16158:6;16154:14;16147:58;16239:7;16234:2;16226:6;16222:15;16215:32;16030:224;:::o;16260:366::-;16402:3;16423:67;16487:2;16482:3;16423:67;:::i;:::-;16416:74;;16499:93;16588:3;16499:93;:::i;:::-;16617:2;16612:3;16608:12;16601:19;;16260:366;;;:::o;16632:419::-;16798:4;16836:2;16825:9;16821:18;16813:26;;16885:9;16879:4;16875:20;16871:1;16860:9;16856:17;16849:47;16913:131;17039:4;16913:131;:::i;:::-;16905:139;;16632:419;;;:::o;17057:173::-;17197:25;17193:1;17185:6;17181:14;17174:49;17057:173;:::o;17236:366::-;17378:3;17399:67;17463:2;17458:3;17399:67;:::i;:::-;17392:74;;17475:93;17564:3;17475:93;:::i;:::-;17593:2;17588:3;17584:12;17577:19;;17236:366;;;:::o;17608:419::-;17774:4;17812:2;17801:9;17797:18;17789:26;;17861:9;17855:4;17851:20;17847:1;17836:9;17832:17;17825:47;17889:131;18015:4;17889:131;:::i;:::-;17881:139;;17608:419;;;:::o;18033:221::-;18173:34;18169:1;18161:6;18157:14;18150:58;18242:4;18237:2;18229:6;18225:15;18218:29;18033:221;:::o;18260:366::-;18402:3;18423:67;18487:2;18482:3;18423:67;:::i;:::-;18416:74;;18499:93;18588:3;18499:93;:::i;:::-;18617:2;18612:3;18608:12;18601:19;;18260:366;;;:::o;18632:419::-;18798:4;18836:2;18825:9;18821:18;18813:26;;18885:9;18879:4;18875:20;18871:1;18860:9;18856:17;18849:47;18913:131;19039:4;18913:131;:::i;:::-;18905:139;;18632:419;;;:::o;19057:225::-;19197:34;19193:1;19185:6;19181:14;19174:58;19266:8;19261:2;19253:6;19249:15;19242:33;19057:225;:::o;19288:366::-;19430:3;19451:67;19515:2;19510:3;19451:67;:::i;:::-;19444:74;;19527:93;19616:3;19527:93;:::i;:::-;19645:2;19640:3;19636:12;19629:19;;19288:366;;;:::o;19660:419::-;19826:4;19864:2;19853:9;19849:18;19841:26;;19913:9;19907:4;19903:20;19899:1;19888:9;19884:17;19877:47;19941:131;20067:4;19941:131;:::i;:::-;19933:139;;19660:419;;;:::o;20085:223::-;20225:34;20221:1;20213:6;20209:14;20202:58;20294:6;20289:2;20281:6;20277:15;20270:31;20085:223;:::o;20314:366::-;20456:3;20477:67;20541:2;20536:3;20477:67;:::i;:::-;20470:74;;20553:93;20642:3;20553:93;:::i;:::-;20671:2;20666:3;20662:12;20655:19;;20314:366;;;:::o;20686:419::-;20852:4;20890:2;20879:9;20875:18;20867:26;;20939:9;20933:4;20929:20;20925:1;20914:9;20910:17;20903:47;20967:131;21093:4;20967:131;:::i;:::-;20959:139;;20686:419;;;:::o;21111:221::-;21251:34;21247:1;21239:6;21235:14;21228:58;21320:4;21315:2;21307:6;21303:15;21296:29;21111:221;:::o;21338:366::-;21480:3;21501:67;21565:2;21560:3;21501:67;:::i;:::-;21494:74;;21577:93;21666:3;21577:93;:::i;:::-;21695:2;21690:3;21686:12;21679:19;;21338:366;;;:::o;21710:419::-;21876:4;21914:2;21903:9;21899:18;21891:26;;21963:9;21957:4;21953:20;21949:1;21938:9;21934:17;21927:47;21991:131;22117:4;21991:131;:::i;:::-;21983:139;;21710:419;;;:::o;22135:182::-;22275:34;22271:1;22263:6;22259:14;22252:58;22135:182;:::o;22323:366::-;22465:3;22486:67;22550:2;22545:3;22486:67;:::i;:::-;22479:74;;22562:93;22651:3;22562:93;:::i;:::-;22680:2;22675:3;22671:12;22664:19;;22323:366;;;:::o;22695:419::-;22861:4;22899:2;22888:9;22884:18;22876:26;;22948:9;22942:4;22938:20;22934:1;22923:9;22919:17;22912:47;22976:131;23102:4;22976:131;:::i;:::-;22968:139;;22695:419;;;:::o;23120:179::-;23260:31;23256:1;23248:6;23244:14;23237:55;23120:179;:::o;23305:366::-;23447:3;23468:67;23532:2;23527:3;23468:67;:::i;:::-;23461:74;;23544:93;23633:3;23544:93;:::i;:::-;23662:2;23657:3;23653:12;23646:19;;23305:366;;;:::o;23677:419::-;23843:4;23881:2;23870:9;23866:18;23858:26;;23930:9;23924:4;23920:20;23916:1;23905:9;23901:17;23894:47;23958:131;24084:4;23958:131;:::i;:::-;23950:139;;23677:419;;;:::o;24102:172::-;24242:24;24238:1;24230:6;24226:14;24219:48;24102:172;:::o;24280:366::-;24422:3;24443:67;24507:2;24502:3;24443:67;:::i;:::-;24436:74;;24519:93;24608:3;24519:93;:::i;:::-;24637:2;24632:3;24628:12;24621:19;;24280:366;;;:::o;24652:419::-;24818:4;24856:2;24845:9;24841:18;24833:26;;24905:9;24899:4;24895:20;24891:1;24880:9;24876:17;24869:47;24933:131;25059:4;24933:131;:::i;:::-;24925:139;;24652:419;;;:::o;25077:178::-;25217:30;25213:1;25205:6;25201:14;25194:54;25077:178;:::o;25261:366::-;25403:3;25424:67;25488:2;25483:3;25424:67;:::i;:::-;25417:74;;25500:93;25589:3;25500:93;:::i;:::-;25618:2;25613:3;25609:12;25602:19;;25261:366;;;:::o;25633:419::-;25799:4;25837:2;25826:9;25822:18;25814:26;;25886:9;25880:4;25876:20;25872:1;25861:9;25857:17;25850:47;25914:131;26040:4;25914:131;:::i;:::-;25906:139;;25633:419;;;:::o;26058:179::-;26198:31;26194:1;26186:6;26182:14;26175:55;26058:179;:::o;26243:366::-;26385:3;26406:67;26470:2;26465:3;26406:67;:::i;:::-;26399:74;;26482:93;26571:3;26482:93;:::i;:::-;26600:2;26595:3;26591:12;26584:19;;26243:366;;;:::o;26615:419::-;26781:4;26819:2;26808:9;26804:18;26796:26;;26868:9;26862:4;26858:20;26854:1;26843:9;26839:17;26832:47;26896:131;27022:4;26896:131;:::i;:::-;26888:139;;26615:419;;;:::o;27040:169::-;27180:21;27176:1;27168:6;27164:14;27157:45;27040:169;:::o;27215:366::-;27357:3;27378:67;27442:2;27437:3;27378:67;:::i;:::-;27371:74;;27454:93;27543:3;27454:93;:::i;:::-;27572:2;27567:3;27563:12;27556:19;;27215:366;;;:::o;27587:419::-;27753:4;27791:2;27780:9;27776:18;27768:26;;27840:9;27834:4;27830:20;27826:1;27815:9;27811:17;27804:47;27868:131;27994:4;27868:131;:::i;:::-;27860:139;;27587:419;;;:::o;28012:169::-;28152:21;28148:1;28140:6;28136:14;28129:45;28012:169;:::o;28187:366::-;28329:3;28350:67;28414:2;28409:3;28350:67;:::i;:::-;28343:74;;28426:93;28515:3;28426:93;:::i;:::-;28544:2;28539:3;28535:12;28528:19;;28187:366;;;:::o;28559:419::-;28725:4;28763:2;28752:9;28748:18;28740:26;;28812:9;28806:4;28802:20;28798:1;28787:9;28783:17;28776:47;28840:131;28966:4;28840:131;:::i;:::-;28832:139;;28559:419;;;:::o;28984:194::-;29024:4;29044:20;29062:1;29044:20;:::i;:::-;29039:25;;29078:20;29096:1;29078:20;:::i;:::-;29073:25;;29122:1;29119;29115:9;29107:17;;29146:1;29140:4;29137:11;29134:37;;;29151:18;;:::i;:::-;29134:37;28984:194;;;;:::o;29184:224::-;29324:34;29320:1;29312:6;29308:14;29301:58;29393:7;29388:2;29380:6;29376:15;29369:32;29184:224;:::o;29414:366::-;29556:3;29577:67;29641:2;29636:3;29577:67;:::i;:::-;29570:74;;29653:93;29742:3;29653:93;:::i;:::-;29771:2;29766:3;29762:12;29755:19;;29414:366;;;:::o;29786:419::-;29952:4;29990:2;29979:9;29975:18;29967:26;;30039:9;30033:4;30029:20;30025:1;30014:9;30010:17;30003:47;30067:131;30193:4;30067:131;:::i;:::-;30059:139;;29786:419;;;:::o;30211:222::-;30351:34;30347:1;30339:6;30335:14;30328:58;30420:5;30415:2;30407:6;30403:15;30396:30;30211:222;:::o;30439:366::-;30581:3;30602:67;30666:2;30661:3;30602:67;:::i;:::-;30595:74;;30678:93;30767:3;30678:93;:::i;:::-;30796:2;30791:3;30787:12;30780:19;;30439:366;;;:::o;30811:419::-;30977:4;31015:2;31004:9;31000:18;30992:26;;31064:9;31058:4;31054:20;31050:1;31039:9;31035:17;31028:47;31092:131;31218:4;31092:131;:::i;:::-;31084:139;;30811:419;;;:::o;31236:225::-;31376:34;31372:1;31364:6;31360:14;31353:58;31445:8;31440:2;31432:6;31428:15;31421:33;31236:225;:::o;31467:366::-;31609:3;31630:67;31694:2;31689:3;31630:67;:::i;:::-;31623:74;;31706:93;31795:3;31706:93;:::i;:::-;31824:2;31819:3;31815:12;31808:19;;31467:366;;;:::o;31839:419::-;32005:4;32043:2;32032:9;32028:18;32020:26;;32092:9;32086:4;32082:20;32078:1;32067:9;32063:17;32056:47;32120:131;32246:4;32120:131;:::i;:::-;32112:139;;31839:419;;;:::o;32264:332::-;32385:4;32423:2;32412:9;32408:18;32400:26;;32436:71;32504:1;32493:9;32489:17;32480:6;32436:71;:::i;:::-;32517:72;32585:2;32574:9;32570:18;32561:6;32517:72;:::i;:::-;32264:332;;;;;:::o;32602:147::-;32703:11;32740:3;32725:18;;32602:147;;;;:::o;32755:114::-;;:::o;32875:398::-;33034:3;33055:83;33136:1;33131:3;33055:83;:::i;:::-;33048:90;;33147:93;33236:3;33147:93;:::i;:::-;33265:1;33260:3;33256:11;33249:18;;32875:398;;;:::o;33279:379::-;33463:3;33485:147;33628:3;33485:147;:::i;:::-;33478:154;;33649:3;33642:10;;33279:379;;;:::o;33664:180::-;33712:77;33709:1;33702:88;33809:4;33806:1;33799:15;33833:4;33830:1;33823:15;33850:180;33898:77;33895:1;33888:88;33995:4;33992:1;33985:15;34019:4;34016:1;34009:15;34036:143;34093:5;34124:6;34118:13;34109:22;;34140:33;34167:5;34140:33;:::i;:::-;34036:143;;;;:::o;34185:351::-;34255:6;34304:2;34292:9;34283:7;34279:23;34275:32;34272:119;;;34310:79;;:::i;:::-;34272:119;34430:1;34455:64;34511:7;34502:6;34491:9;34487:22;34455:64;:::i;:::-;34445:74;;34401:128;34185:351;;;;:::o;34542:85::-;34587:7;34616:5;34605:16;;34542:85;;;:::o;34633:158::-;34691:9;34724:61;34742:42;34751:32;34777:5;34751:32;:::i;:::-;34742:42;:::i;:::-;34724:61;:::i;:::-;34711:74;;34633:158;;;:::o;34797:147::-;34892:45;34931:5;34892:45;:::i;:::-;34887:3;34880:58;34797:147;;:::o;34950:114::-;35017:6;35051:5;35045:12;35035:22;;34950:114;;;:::o;35070:184::-;35169:11;35203:6;35198:3;35191:19;35243:4;35238:3;35234:14;35219:29;;35070:184;;;;:::o;35260:132::-;35327:4;35350:3;35342:11;;35380:4;35375:3;35371:14;35363:22;;35260:132;;;:::o;35398:108::-;35475:24;35493:5;35475:24;:::i;:::-;35470:3;35463:37;35398:108;;:::o;35512:179::-;35581:10;35602:46;35644:3;35636:6;35602:46;:::i;:::-;35680:4;35675:3;35671:14;35657:28;;35512:179;;;;:::o;35697:113::-;35767:4;35799;35794:3;35790:14;35782:22;;35697:113;;;:::o;35846:732::-;35965:3;35994:54;36042:5;35994:54;:::i;:::-;36064:86;36143:6;36138:3;36064:86;:::i;:::-;36057:93;;36174:56;36224:5;36174:56;:::i;:::-;36253:7;36284:1;36269:284;36294:6;36291:1;36288:13;36269:284;;;36370:6;36364:13;36397:63;36456:3;36441:13;36397:63;:::i;:::-;36390:70;;36483:60;36536:6;36483:60;:::i;:::-;36473:70;;36329:224;36316:1;36313;36309:9;36304:14;;36269:284;;;36273:14;36569:3;36562:10;;35970:608;;;35846:732;;;;:::o;36584:831::-;36847:4;36885:3;36874:9;36870:19;36862:27;;36899:71;36967:1;36956:9;36952:17;36943:6;36899:71;:::i;:::-;36980:80;37056:2;37045:9;37041:18;37032:6;36980:80;:::i;:::-;37107:9;37101:4;37097:20;37092:2;37081:9;37077:18;37070:48;37135:108;37238:4;37229:6;37135:108;:::i;:::-;37127:116;;37253:72;37321:2;37310:9;37306:18;37297:6;37253:72;:::i;:::-;37335:73;37403:3;37392:9;37388:19;37379:6;37335:73;:::i;:::-;36584:831;;;;;;;;:::o;37421:807::-;37670:4;37708:3;37697:9;37693:19;37685:27;;37722:71;37790:1;37779:9;37775:17;37766:6;37722:71;:::i;:::-;37803:72;37871:2;37860:9;37856:18;37847:6;37803:72;:::i;:::-;37885:80;37961:2;37950:9;37946:18;37937:6;37885:80;:::i;:::-;37975;38051:2;38040:9;38036:18;38027:6;37975:80;:::i;:::-;38065:73;38133:3;38122:9;38118:19;38109:6;38065:73;:::i;:::-;38148;38216:3;38205:9;38201:19;38192:6;38148:73;:::i;:::-;37421:807;;;;;;;;;:::o;38234:143::-;38291:5;38322:6;38316:13;38307:22;;38338:33;38365:5;38338:33;:::i;:::-;38234:143;;;;:::o;38383:663::-;38471:6;38479;38487;38536:2;38524:9;38515:7;38511:23;38507:32;38504:119;;;38542:79;;:::i;:::-;38504:119;38662:1;38687:64;38743:7;38734:6;38723:9;38719:22;38687:64;:::i;:::-;38677:74;;38633:128;38800:2;38826:64;38882:7;38873:6;38862:9;38858:22;38826:64;:::i;:::-;38816:74;;38771:129;38939:2;38965:64;39021:7;39012:6;39001:9;38997:22;38965:64;:::i;:::-;38955:74;;38910:129;38383:663;;;;;:::o
Swarm Source
ipfs://566b38be1b175c09d1ee24afebba6194d3757f2f0700cf3a050fe7114af83c75
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.